Files
PiliPlus/lib/pages/history/view.dart
bggRGjQaUbCoE 104d295389 opt multi del
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-08-05 18:15:06 +08:00

319 lines
10 KiB
Dart

import 'package:PiliPlus/common/constants.dart';
import 'package:PiliPlus/common/skeleton/video_card_h.dart';
import 'package:PiliPlus/common/widgets/appbar/appbar.dart';
import 'package:PiliPlus/common/widgets/keep_alive_wrapper.dart';
import 'package:PiliPlus/common/widgets/loading_widget/http_error.dart';
import 'package:PiliPlus/common/widgets/refresh_indicator.dart';
import 'package:PiliPlus/common/widgets/scroll_physics.dart';
import 'package:PiliPlus/http/loading_state.dart';
import 'package:PiliPlus/models_new/history/list.dart';
import 'package:PiliPlus/pages/history/base_controller.dart';
import 'package:PiliPlus/pages/history/controller.dart';
import 'package:PiliPlus/pages/history/widgets/item.dart';
import 'package:PiliPlus/utils/extension.dart';
import 'package:PiliPlus/utils/grid.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
class HistoryPage extends StatefulWidget {
const HistoryPage({super.key, this.type});
final String? type;
@override
State<HistoryPage> createState() => _HistoryPageState();
}
class _HistoryPageState extends State<HistoryPage>
with AutomaticKeepAliveClientMixin {
late final _historyController = Get.put(
HistoryController(widget.type),
tag: widget.type ?? 'all',
);
HistoryController currCtr([int? index]) {
try {
index ??= _historyController.tabController!.index;
if (index != 0) {
return Get.find<HistoryController>(
tag: _historyController.tabs[index - 1].type,
);
}
} catch (_) {}
return _historyController;
}
@override
void dispose() {
Get.delete<HistoryBaseController>();
super.dispose();
}
@override
Widget build(BuildContext context) {
super.build(context);
Widget child = refreshIndicator(
onRefresh: _historyController.onRefresh,
child: CustomScrollView(
physics: const AlwaysScrollableScrollPhysics(),
controller: _historyController.scrollController,
slivers: [
SliverPadding(
padding: EdgeInsets.only(
top: StyleString.safeSpace - 5,
bottom: MediaQuery.paddingOf(context).bottom + 80,
),
sliver: Obx(
() => _buildBody(_historyController.loadingState.value),
),
),
],
),
);
if (widget.type != null) {
return child;
}
return Obx(
() {
final enableMultiSelect =
_historyController.baseCtr.enableMultiSelect.value;
return PopScope(
canPop: !enableMultiSelect,
onPopInvokedWithResult: (didPop, result) {
if (enableMultiSelect) {
currCtr().handleSelect();
}
},
child: Scaffold(
appBar: MultiSelectAppBarWidget(
visible: enableMultiSelect,
ctr: currCtr(),
child: _buildAppBar,
),
body: Obx(() {
if (_historyController.tabs.isEmpty) {
return SafeArea(
top: false,
bottom: false,
child: child,
);
}
return SafeArea(
top: false,
bottom: false,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TabBar(
controller: _historyController.tabController,
onTap: (index) {
if (!_historyController
.tabController!
.indexIsChanging) {
currCtr().scrollController.animToTop();
} else {
if (enableMultiSelect) {
currCtr(
_historyController.tabController!.previousIndex,
).handleSelect();
}
}
},
tabs: [
const Tab(text: '全部'),
..._historyController.tabs.map(
(item) => Tab(text: item.name),
),
],
),
Expanded(
child: TabBarView(
physics: enableMultiSelect
? const NeverScrollableScrollPhysics()
: const CustomTabBarViewScrollPhysics(),
controller: _historyController.tabController,
children: [
KeepAliveWrapper(builder: (context) => child),
..._historyController.tabs.map(
(item) => HistoryPage(type: item.type),
),
],
),
),
],
),
);
}),
),
);
},
);
}
AppBar get _buildAppBar => AppBar(
title: const Text('观看记录'),
bottom: _buildPauseTip,
actions: [
IconButton(
tooltip: '搜索',
onPressed: () => Get.toNamed('/historySearch'),
icon: const Icon(Icons.search_outlined),
),
PopupMenuButton<String>(
onSelected: (String type) {
switch (type) {
case 'pause':
_historyController.baseCtr.onPauseHistory(
context,
);
break;
case 'clear':
_historyController.baseCtr.onClearHistory(
context,
() {
_historyController.loadingState.value = const Success(
null,
);
if (_historyController.tabController != null) {
for (final item in _historyController.tabs) {
try {
Get.find<HistoryController>(
tag: item.type,
).loadingState.value = const Success(
null,
);
} catch (_) {}
}
}
},
);
break;
case 'viewed':
currCtr().onDelViewedHistory();
break;
case 'multiple':
_historyController.baseCtr.enableMultiSelect.value = true;
break;
}
},
itemBuilder: (BuildContext context) => <PopupMenuEntry<String>>[
PopupMenuItem<String>(
value: 'pause',
child: Text(
!_historyController.baseCtr.pauseStatus.value
? '暂停观看记录'
: '恢复观看记录',
),
),
const PopupMenuItem<String>(
value: 'clear',
child: Text('清空观看记录'),
),
const PopupMenuItem<String>(
value: 'viewed',
child: Text('删除已看记录'),
),
const PopupMenuItem<String>(
value: 'multiple',
child: Text('多选删除'),
),
],
),
const SizedBox(width: 6),
],
);
Widget _buildBody(LoadingState<List<HistoryItemModel>?> loadingState) {
return switch (loadingState) {
Loading() => SliverGrid(
gridDelegate: Grid.videoCardHDelegate(context),
delegate: SliverChildBuilderDelegate(
(context, index) {
return const VideoCardHSkeleton();
},
childCount: 10,
),
),
Success(:var response) =>
response?.isNotEmpty == true
? SliverGrid(
gridDelegate: Grid.videoCardHDelegate(context),
delegate: SliverChildBuilderDelegate(
(context, index) {
if (index == response.length - 1) {
_historyController.onLoadMore();
}
final item = response[index];
return HistoryItem(
item: item,
ctr: _historyController,
onDelete: (kid, business) =>
_historyController.delHistory(item),
);
},
childCount: response!.length,
),
)
: HttpError(onReload: _historyController.onReload),
Error(:var errMsg) => HttpError(
errMsg: errMsg,
onReload: _historyController.onReload,
),
};
}
PreferredSizeWidget? get _buildPauseTip {
if (_historyController.baseCtr.pauseStatus.value) {
final theme = Theme.of(context).colorScheme;
return PreferredSize(
preferredSize: const Size.fromHeight(38),
child: Container(
height: 38,
color: theme.secondaryContainer.withValues(alpha: 0.8),
padding: const EdgeInsets.only(left: 16, right: 6),
child: Row(
children: [
Icon(
Icons.info_outline,
size: 18,
color: theme.onSecondaryContainer,
),
const SizedBox(width: 4),
Expanded(
child: Text(
'历史记录功能已关闭',
strutStyle: const StrutStyle(height: 1, leading: 0),
style: TextStyle(
height: 1,
color: theme.onSecondaryContainer,
),
),
),
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () => _historyController.baseCtr.onPauseHistory(context),
child: Padding(
padding: const EdgeInsets.symmetric(
vertical: 6,
horizontal: 10,
),
child: Text(
'点击开启',
strutStyle: const StrutStyle(height: 1, leading: 0),
style: TextStyle(height: 1, color: theme.primary),
),
),
),
],
),
),
);
}
return null;
}
@override
bool get wantKeepAlive => widget.type != null;
}