mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
refactor: zone
This commit is contained in:
@@ -1,48 +1,19 @@
|
||||
import 'package:PiliPalaX/utils/extension.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:PiliPalaX/http/loading_state.dart';
|
||||
import 'package:PiliPalaX/pages/common/common_controller.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:PiliPalaX/http/video.dart';
|
||||
import 'package:PiliPalaX/models/model_hot_video_item.dart';
|
||||
|
||||
class ZoneController extends GetxController {
|
||||
final ScrollController scrollController = ScrollController();
|
||||
RxList<HotVideoItemModel> videoList = <HotVideoItemModel>[].obs;
|
||||
bool isLoadingMore = false;
|
||||
bool flag = false;
|
||||
class ZoneController extends CommonController {
|
||||
ZoneController({required this.zoneID});
|
||||
List<OverlayEntry?> popupDialog = <OverlayEntry?>[];
|
||||
int zoneID = 0;
|
||||
int zoneID;
|
||||
|
||||
// 获取推荐
|
||||
Future queryRankFeed(type, rid) async {
|
||||
zoneID = rid;
|
||||
var res = await VideoHttp.getRankVideoList(zoneID);
|
||||
if (res['status']) {
|
||||
if (type == 'init') {
|
||||
videoList.value = res['data'];
|
||||
} else if (type == 'onRefresh') {
|
||||
videoList.clear();
|
||||
videoList.addAll(res['data']);
|
||||
} else if (type == 'onLoad') {
|
||||
videoList.clear();
|
||||
videoList.addAll(res['data']);
|
||||
}
|
||||
}
|
||||
isLoadingMore = false;
|
||||
return res;
|
||||
@override
|
||||
void onInit() {
|
||||
super.onInit();
|
||||
queryData();
|
||||
}
|
||||
|
||||
// 下拉刷新
|
||||
Future onRefresh() async {
|
||||
queryRankFeed('onRefresh', zoneID);
|
||||
}
|
||||
|
||||
// 上拉加载
|
||||
Future onLoad() async {
|
||||
queryRankFeed('onLoad', zoneID);
|
||||
}
|
||||
|
||||
// 返回顶部并刷新
|
||||
void animateToTop() {
|
||||
scrollController.animToTop();
|
||||
}
|
||||
@override
|
||||
Future<LoadingState> customGetData() => VideoHttp.getRankVideoList(zoneID);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user