mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
41 lines
1.0 KiB
Dart
41 lines
1.0 KiB
Dart
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/http/video.dart';
|
|
import 'package:PiliPlus/models/model_hot_video_item.dart';
|
|
import 'package:PiliPlus/pages/common/common_list_controller.dart';
|
|
import 'package:PiliPlus/utils/storage.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class HotController
|
|
extends CommonListController<List<HotVideoItemModel>, HotVideoItemModel> {
|
|
// int idx = 0;
|
|
|
|
late RxBool showHotRcmd = GStorage.showHotRcmd.obs;
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
queryData();
|
|
}
|
|
|
|
// @override
|
|
// Future onRefresh() {
|
|
// idx = 0;
|
|
// return super.onRefresh();
|
|
// }
|
|
|
|
@override
|
|
Future<LoadingState<List<HotVideoItemModel>>> customGetData() =>
|
|
VideoHttp.hotVideoList(
|
|
pn: currentPage,
|
|
ps: 20,
|
|
);
|
|
|
|
// @override
|
|
// void handleSuccess(List currentList, List dataList) {
|
|
// idx = (dataList.last as Card?)?.smallCoverV5.base.idx.toInt() ?? 0;
|
|
// }
|
|
|
|
// @override
|
|
// Future<LoadingState> customGetData() => VideoHttp.hotVideoListGrpc(idx: idx);
|
|
}
|