Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-23 16:47:11 +08:00
parent 148e0872b4
commit 418a1e8d39
821 changed files with 29467 additions and 25520 deletions

View File

@@ -45,11 +45,15 @@ class _PgcIndexPageState extends State<PgcIndexPage>
}
Widget _buildBody(
ThemeData theme, LoadingState<PgcIndexConditionData> loadingState) {
ThemeData theme,
LoadingState<PgcIndexConditionData> loadingState,
) {
return switch (loadingState) {
Loading() => loadingWidget,
Success(:var response) => Builder(builder: (context) {
int count = (response.order?.isNotEmpty == true ? 1 : 0) +
Success(:var response) => Builder(
builder: (context) {
int count =
(response.order?.isNotEmpty == true ? 1 : 0) +
(response.filter?.length ?? 0);
if (count == 0) return const SizedBox.shrink();
return SafeArea(
@@ -81,155 +85,158 @@ class _PgcIndexPageState extends State<PgcIndexPage>
],
),
);
}),
},
),
Error(:var errMsg) => scrollErrorWidget(
errMsg: errMsg,
onReload: () => _ctr
..conditionState.value = LoadingState.loading()
..getPgcIndexCondition(),
),
errMsg: errMsg,
onReload: () => _ctr
..conditionState.value = LoadingState.loading()
..getPgcIndexCondition(),
),
};
}
Widget _buildSortWidget(ThemeData theme, count, data) => Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
...List.generate(
count > 5
? _ctr.isExpand.value
? count
: count ~/ 2
: count,
(index) {
List? item = data.order?.isNotEmpty == true
? index == 0
? data.order
: data.filter![index - 1].values
: data.filter![index].values;
return item?.isNotEmpty == true
? Padding(
padding: EdgeInsets.only(
top: index == 0 ? 0 : 10,
),
child: SelfSizedHorizontalList(
gapSize: 12,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
...List.generate(
count > 5
? _ctr.isExpand.value
? count
: count ~/ 2
: count,
(index) {
List? item = data.order?.isNotEmpty == true
? index == 0
? data.order
: data.filter![index - 1].values
: data.filter![index].values;
return item?.isNotEmpty == true
? Padding(
padding: EdgeInsets.only(
top: index == 0 ? 0 : 10,
),
child: SelfSizedHorizontalList(
gapSize: 12,
padding: const EdgeInsets.symmetric(
horizontal: 12,
),
childBuilder: (childIndex) => Obx(
() => SearchText(
bgColor:
(item[childIndex] is PgcConditionOrder
? _ctr.indexParams['order']
: _ctr.indexParams[data
.filter![data.order?.isNotEmpty ==
true
? index - 1
: index]
.field]) ==
(item[childIndex] is PgcConditionOrder
? item[childIndex].field
: item[childIndex].keyword)
? theme.colorScheme.secondaryContainer
: Colors.transparent,
textColor:
(item[childIndex] is PgcConditionOrder
? _ctr.indexParams['order']
: _ctr.indexParams[data
.filter![data.order?.isNotEmpty ==
true
? index - 1
: index]
.field]) ==
(item[childIndex] is PgcConditionOrder
? item[childIndex].field
: item[childIndex].keyword)
? theme.colorScheme.onSecondaryContainer
: theme.colorScheme.onSurfaceVariant,
text: item[childIndex].name,
padding: const EdgeInsets.symmetric(
horizontal: 12,
horizontal: 6,
vertical: 3,
),
childBuilder: (childIndex) => Obx(
() => SearchText(
bgColor: (item[childIndex] is PgcConditionOrder
? _ctr.indexParams['order']
: _ctr.indexParams[data
.filter![
data.order?.isNotEmpty == true
? index - 1
: index]
.field]) ==
(item[childIndex] is PgcConditionOrder
? item[childIndex].field
: item[childIndex].keyword)
? theme.colorScheme.secondaryContainer
: Colors.transparent,
textColor: (item[childIndex] is PgcConditionOrder
? _ctr.indexParams['order']
: _ctr.indexParams[data
.filter![
data.order?.isNotEmpty == true
? index - 1
: index]
.field]) ==
(item[childIndex] is PgcConditionOrder
? item[childIndex].field
: item[childIndex].keyword)
? theme.colorScheme.onSecondaryContainer
: theme.colorScheme.onSurfaceVariant,
text: item[childIndex].name,
padding: const EdgeInsets.symmetric(
horizontal: 6,
vertical: 3,
),
onTap: (_) {
String name = item[childIndex]
is PgcConditionOrder
? 'order'
: data
.filter![data.order?.isNotEmpty == true
? index - 1
: index]
.field!;
_ctr.indexParams[name] =
(item[childIndex] is PgcConditionOrder
? item[childIndex].field
: item[childIndex].keyword);
_ctr.onReload();
},
),
),
itemCount: item!.length,
),
)
: const SizedBox.shrink();
},
),
if (count > 5) ...[
const SizedBox(height: 8),
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () => _ctr.isExpand.value = !_ctr.isExpand.value,
child: Container(
alignment: Alignment.center,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
_ctr.isExpand.value ? '收起' : '展开',
style: TextStyle(
color: theme.colorScheme.outline,
onTap: (_) {
String name = item[childIndex] is PgcConditionOrder
? 'order'
: data
.filter![data.order?.isNotEmpty == true
? index - 1
: index]
.field!;
_ctr.indexParams[name] =
(item[childIndex] is PgcConditionOrder
? item[childIndex].field
: item[childIndex].keyword);
_ctr.onReload();
},
),
),
Icon(
_ctr.isExpand.value
? Icons.keyboard_arrow_up
: Icons.keyboard_arrow_down,
color: theme.colorScheme.outline,
),
],
itemCount: item!.length,
),
)
: const SizedBox.shrink();
},
),
if (count > 5) ...[
const SizedBox(height: 8),
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () => _ctr.isExpand.value = !_ctr.isExpand.value,
child: Container(
alignment: Alignment.center,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
_ctr.isExpand.value ? '收起' : '展开',
style: TextStyle(
color: theme.colorScheme.outline,
),
),
),
Icon(
_ctr.isExpand.value
? Icons.keyboard_arrow_up
: Icons.keyboard_arrow_down,
color: theme.colorScheme.outline,
),
],
),
],
],
);
),
),
],
],
);
Widget _buildList(LoadingState<List<PgcIndexItem>?> loadingState) {
return switch (loadingState) {
Loading() => linearLoading,
Success(:var response) => response?.isNotEmpty == true
? SliverGrid(
gridDelegate: SliverGridDelegateWithExtentAndRatio(
mainAxisSpacing: StyleString.cardSpace,
crossAxisSpacing: StyleString.cardSpace,
maxCrossAxisExtent: Grid.smallCardWidth / 3 * 2,
childAspectRatio: 0.75,
mainAxisExtent: MediaQuery.textScalerOf(context).scale(50),
),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
if (index == response.length - 1) {
_ctr.onLoadMore();
}
return PgcCardVPgcIndex(item: response[index]);
},
childCount: response!.length,
),
)
: HttpError(onReload: _ctr.onReload),
Success(:var response) =>
response?.isNotEmpty == true
? SliverGrid(
gridDelegate: SliverGridDelegateWithExtentAndRatio(
mainAxisSpacing: StyleString.cardSpace,
crossAxisSpacing: StyleString.cardSpace,
maxCrossAxisExtent: Grid.smallCardWidth / 3 * 2,
childAspectRatio: 0.75,
mainAxisExtent: MediaQuery.textScalerOf(context).scale(50),
),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
if (index == response.length - 1) {
_ctr.onLoadMore();
}
return PgcCardVPgcIndex(item: response[index]);
},
childCount: response!.length,
),
)
: HttpError(onReload: _ctr.onReload),
Error(:var errMsg) => HttpError(
errMsg: errMsg,
onReload: _ctr.onReload,
),
errMsg: errMsg,
onReload: _ctr.onReload,
),
};
}
}