mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
72 lines
1.9 KiB
Dart
72 lines
1.9 KiB
Dart
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/pages/common/common_controller.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
abstract class CommonListController<R, T> extends CommonController<R, T> {
|
|
int page = 1;
|
|
bool isEnd = false;
|
|
bool? hasFooter;
|
|
|
|
@override
|
|
Rx<LoadingState<List<T>?>> loadingState =
|
|
LoadingState<List<T>?>.loading().obs;
|
|
|
|
void handleListResponse(List<T> dataList) {}
|
|
|
|
List<T>? getDataList(R response) {
|
|
return response as List<T>?;
|
|
}
|
|
|
|
void checkIsEnd(int length) {}
|
|
|
|
@override
|
|
Future<void> queryData([bool isRefresh = true]) async {
|
|
if (isLoading || (!isRefresh && isEnd)) return;
|
|
isLoading = true;
|
|
final LoadingState<R> res = await customGetData();
|
|
if (res case Success(:final response)) {
|
|
if (!customHandleResponse(isRefresh, res)) {
|
|
final dataList = getDataList(response);
|
|
if (dataList == null || dataList.isEmpty) {
|
|
isEnd = true;
|
|
if (isRefresh) {
|
|
loadingState.value = Success(dataList);
|
|
} else if (hasFooter == true) {
|
|
loadingState.refresh();
|
|
}
|
|
isLoading = false;
|
|
return;
|
|
}
|
|
handleListResponse(dataList);
|
|
if (isRefresh) {
|
|
checkIsEnd(dataList.length);
|
|
loadingState.value = Success(dataList);
|
|
} else if (loadingState.value case Success(:final response)) {
|
|
response!.addAll(dataList);
|
|
checkIsEnd(response.length);
|
|
loadingState.refresh();
|
|
}
|
|
}
|
|
page++;
|
|
} else {
|
|
if (isRefresh && !handleError(res is Error ? res.errMsg : null)) {
|
|
loadingState.value = res as Error;
|
|
}
|
|
}
|
|
isLoading = false;
|
|
}
|
|
|
|
@override
|
|
Future<void> onRefresh() {
|
|
page = 1;
|
|
isEnd = false;
|
|
return super.onRefresh();
|
|
}
|
|
|
|
@override
|
|
Future<void> onReload() {
|
|
loadingState.value = LoadingState<List<T>?>.loading();
|
|
return super.onReload();
|
|
}
|
|
}
|