mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
138 lines
3.6 KiB
Dart
138 lines
3.6 KiB
Dart
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/http/member.dart';
|
|
import 'package:PiliPlus/models/common/member/archive_order_type_app.dart';
|
|
import 'package:PiliPlus/models/member/info.dart';
|
|
import 'package:PiliPlus/models_new/space/space_archive/data.dart';
|
|
import 'package:PiliPlus/models_new/space/space_archive/item.dart';
|
|
import 'package:PiliPlus/pages/common/common_list_controller.dart';
|
|
import 'package:PiliPlus/utils/accounts.dart';
|
|
import 'package:PiliPlus/utils/extension/scroll_controller_ext.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class HorizontalMemberPageController
|
|
extends CommonListController<SpaceArchiveData, SpaceArchiveItem> {
|
|
HorizontalMemberPageController({this.mid, required this.currAid});
|
|
|
|
dynamic mid;
|
|
|
|
final Rx<LoadingState<MemberInfoModel>> userState =
|
|
LoadingState<MemberInfoModel>.loading().obs;
|
|
final RxMap userStat = {}.obs;
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
getUserInfo();
|
|
queryData();
|
|
}
|
|
|
|
Future<void> getUserInfo() async {
|
|
final res = await MemberHttp.memberInfo(mid: mid);
|
|
userState.value = res;
|
|
if (res.isSuccess) {
|
|
getMemberStat();
|
|
getMemberView();
|
|
}
|
|
}
|
|
|
|
Future<void> getMemberStat() async {
|
|
final res = await MemberHttp.memberStat(mid: mid);
|
|
if (res case Success(:final response)) {
|
|
userStat.addAll(response);
|
|
}
|
|
}
|
|
|
|
Future<void> getMemberView() async {
|
|
if (!Accounts.main.isLogin) {
|
|
return;
|
|
}
|
|
final res = await MemberHttp.memberView(mid: mid);
|
|
if (res case Success(:final response)) {
|
|
userStat.addAll(response);
|
|
}
|
|
}
|
|
|
|
@override
|
|
bool customHandleResponse(bool isRefresh, Success response) {
|
|
SpaceArchiveData data = response.response;
|
|
count = data.count;
|
|
if (isRefresh) {
|
|
if (isLoadPrevious) {
|
|
hasPrev = data.hasPrev ?? false;
|
|
} else {
|
|
hasNext = data.hasNext ?? false;
|
|
}
|
|
}
|
|
if (isLoadPrevious) {
|
|
if (loadingState.value case Success(:final response)) {
|
|
(data.item ??= <SpaceArchiveItem>[]).addAll(response!);
|
|
}
|
|
} else if (!isRefresh) {
|
|
if (loadingState.value case Success(:final response)) {
|
|
(data.item ??= <SpaceArchiveItem>[]).insertAll(0, response!);
|
|
}
|
|
}
|
|
firstAid = data.item?.firstOrNull?.param;
|
|
lastAid = data.item?.lastOrNull?.param;
|
|
loadingState.value = Success(data.item);
|
|
isLoadPrevious = false;
|
|
page++;
|
|
return true;
|
|
}
|
|
|
|
String? currAid;
|
|
String? firstAid;
|
|
String? lastAid;
|
|
ArchiveOrderTypeApp order = .pubdate;
|
|
int? count;
|
|
bool isLoadPrevious = false;
|
|
bool hasPrev = true;
|
|
bool hasNext = true;
|
|
|
|
@override
|
|
Future<LoadingState<SpaceArchiveData>> customGetData() =>
|
|
MemberHttp.spaceArchive(
|
|
type: .video,
|
|
mid: mid,
|
|
aid: page == 1
|
|
? currAid
|
|
: isLoadPrevious
|
|
? firstAid
|
|
: lastAid,
|
|
order: order,
|
|
sort: page != 1 && isLoadPrevious ? .asc : null,
|
|
pn: null,
|
|
next: null,
|
|
seasonId: null,
|
|
seriesId: null,
|
|
includeCursor: page == 1 ? true : null,
|
|
);
|
|
|
|
@override
|
|
Future<void> onRefresh() {
|
|
if (!hasPrev) {
|
|
return Future.syncValue(null);
|
|
}
|
|
isLoadPrevious = true;
|
|
return queryData();
|
|
}
|
|
|
|
@override
|
|
Future<void> onReload() {
|
|
firstAid = null;
|
|
lastAid = null;
|
|
hasNext = true;
|
|
hasPrev = true;
|
|
isEnd = false;
|
|
page = 1;
|
|
scrollController.jumpToTop();
|
|
return super.onReload();
|
|
}
|
|
|
|
void queryBySort() {
|
|
if (isLoading) return;
|
|
order = order == .pubdate ? .click : .pubdate;
|
|
onReload();
|
|
}
|
|
}
|