mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
141 lines
4.7 KiB
Dart
141 lines
4.7 KiB
Dart
import 'package:PiliPlus/pages/search/controller.dart';
|
|
import 'package:PiliPlus/utils/extension.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:PiliPlus/models/common/search_type.dart';
|
|
import 'package:PiliPlus/pages/search_panel/index.dart';
|
|
import 'controller.dart';
|
|
import 'package:PiliPlus/common/widgets/spring_physics.dart';
|
|
|
|
class SearchResultPage extends StatefulWidget {
|
|
const SearchResultPage({super.key});
|
|
|
|
@override
|
|
State<SearchResultPage> createState() => _SearchResultPageState();
|
|
}
|
|
|
|
class _SearchResultPageState extends State<SearchResultPage>
|
|
with TickerProviderStateMixin {
|
|
late SearchResultController _searchResultController;
|
|
late TabController _tabController;
|
|
final String _tag = DateTime.now().millisecondsSinceEpoch.toString();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_searchResultController = Get.put(
|
|
SearchResultController(),
|
|
tag: _tag,
|
|
);
|
|
|
|
_tabController = TabController(
|
|
vsync: this,
|
|
initialIndex: Get.arguments is int ? Get.arguments : 0,
|
|
length: SearchType.values.length,
|
|
)..addListener(() {
|
|
if (Get.isRegistered<SSearchController>()) {
|
|
Get.find<SSearchController>().initIndex = _tabController.index;
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_tabController.removeListener(() {});
|
|
_tabController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
shape: Border(
|
|
bottom: BorderSide(
|
|
color: Theme.of(context).dividerColor.withOpacity(0.08),
|
|
width: 1,
|
|
),
|
|
),
|
|
title: GestureDetector(
|
|
onTap: Get.back,
|
|
child: SizedBox(
|
|
width: double.infinity,
|
|
child: Text(
|
|
_searchResultController.keyword,
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
body: Column(
|
|
children: [
|
|
const SizedBox(height: 4),
|
|
Container(
|
|
width: double.infinity,
|
|
color: Theme.of(context).colorScheme.surface,
|
|
child: Theme(
|
|
data: ThemeData(
|
|
splashColor: Colors.transparent, // 点击时的水波纹颜色设置为透明
|
|
highlightColor: Colors.transparent, // 点击时的背景高亮颜色设置为透明
|
|
),
|
|
child: TabBar(
|
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
|
controller: _tabController,
|
|
tabs: SearchType.values
|
|
.map(
|
|
(item) => Obx(
|
|
() {
|
|
int count = _searchResultController.count[item.index];
|
|
return Tab(
|
|
text:
|
|
'${item.label}${count != -1 ? ' ${count > 99 ? '99+' : count}' : ''}');
|
|
},
|
|
),
|
|
)
|
|
.toList(),
|
|
isScrollable: true,
|
|
indicatorWeight: 0,
|
|
indicatorPadding:
|
|
const EdgeInsets.symmetric(horizontal: 3, vertical: 8),
|
|
indicator: BoxDecoration(
|
|
color: Theme.of(context).colorScheme.secondaryContainer,
|
|
borderRadius: const BorderRadius.all(Radius.circular(20)),
|
|
),
|
|
indicatorSize: TabBarIndicatorSize.tab,
|
|
labelColor: Theme.of(context).colorScheme.onSecondaryContainer,
|
|
labelStyle: const TextStyle(fontSize: 13),
|
|
dividerColor: Colors.transparent,
|
|
unselectedLabelColor: Theme.of(context).colorScheme.outline,
|
|
tabAlignment: TabAlignment.start,
|
|
onTap: (index) {
|
|
if (_tabController.indexIsChanging.not) {
|
|
Get.find<SearchPanelController>(
|
|
tag: SearchType.values[index].name +
|
|
_searchResultController.keyword)
|
|
.animateToTop();
|
|
}
|
|
},
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: TabBarView(
|
|
physics: customTabBarViewScrollPhysics,
|
|
controller: _tabController,
|
|
children: SearchType.values
|
|
.map(
|
|
(item) => SearchPanel(
|
|
keyword: _searchResultController.keyword,
|
|
searchType: item,
|
|
tag: _tag,
|
|
),
|
|
)
|
|
.toList(),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|