Solian/lib/controllers/post_list_controller.dart

129 lines
3.3 KiB
Dart
Raw Normal View History

2024-07-25 06:42:50 +00:00
import 'package:get/get.dart';
import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart';
import 'package:solian/models/pagination.dart';
import 'package:solian/models/post.dart';
2024-07-25 08:08:46 +00:00
import 'package:solian/providers/content/posts.dart';
2024-07-25 06:42:50 +00:00
2024-07-25 08:08:46 +00:00
class PostListController extends GetxController {
2024-07-25 06:42:50 +00:00
/// The polling source modifier.
/// - `0`: default recommendations
/// - `1`: shuffle mode
RxInt mode = 0.obs;
/// The paging controller for infinite loading.
/// Only available when mode is `0`.
PagingController<int, Post> pagingController =
PagingController(firstPageKey: 0);
PostListController() {
_initPagingController();
}
/// Initialize a compatibility layer to paging controller
void _initPagingController() {
pagingController.addPageRequestListener(_onPagingControllerRequest);
}
Future<void> _onPagingControllerRequest(int pageKey) async {
try {
final result = await loadMore();
if (result != null && hasMore.value) {
pagingController.appendPage(result, nextPageKey.value);
} else if (result != null) {
pagingController.appendLastPage(result);
}
} catch (e) {
pagingController.error = e;
}
}
void _resetPagingController() {
pagingController.removePageRequestListener(_onPagingControllerRequest);
pagingController.nextPageKey = nextPageKey.value;
pagingController.itemList?.clear();
}
RxBool isBusy = false.obs;
2024-07-25 08:08:46 +00:00
RxBool isPreparing = false.obs;
RxInt focusCursor = 0.obs;
Post get focusPost => postList[focusCursor.value];
2024-07-25 06:42:50 +00:00
2024-07-25 08:08:46 +00:00
RxInt postTotal = 0.obs;
2024-07-25 06:42:50 +00:00
RxList<Post> postList = RxList.empty(growable: true);
2024-07-25 08:08:46 +00:00
2024-07-25 06:42:50 +00:00
RxInt nextPageKey = 0.obs;
RxBool hasMore = true.obs;
Future<void> reloadAllOver() async {
2024-07-25 08:08:46 +00:00
isPreparing.value = true;
focusCursor.value = 0;
2024-07-25 06:42:50 +00:00
nextPageKey.value = 0;
2024-07-25 08:08:46 +00:00
postList.clear();
2024-07-25 06:42:50 +00:00
hasMore.value = true;
2024-07-25 08:08:46 +00:00
2024-07-25 06:42:50 +00:00
_resetPagingController();
final result = await loadMore();
if (result != null && hasMore.value) {
pagingController.appendPage(result, nextPageKey.value);
} else if (result != null) {
pagingController.appendLastPage(result);
}
_initPagingController();
2024-07-25 08:08:46 +00:00
isPreparing.value = false;
2024-07-25 06:42:50 +00:00
}
Future<List<Post>?> loadMore() async {
final result = await _loadPosts(nextPageKey.value);
if (result != null && result.length >= 10) {
2024-07-25 08:08:46 +00:00
postList.addAll(result);
nextPageKey.value += result.length;
2024-07-25 06:42:50 +00:00
hasMore.value = true;
} else if (result != null) {
2024-07-25 08:08:46 +00:00
postList.addAll(result);
nextPageKey.value += result.length;
2024-07-25 06:42:50 +00:00
hasMore.value = false;
}
2024-07-25 08:08:46 +00:00
final idx = <dynamic>{};
postList.retainWhere((x) => idx.add(x.id));
2024-07-25 06:42:50 +00:00
return result;
}
Future<List<Post>?> _loadPosts(int pageKey) async {
isBusy.value = true;
final PostProvider provider = Get.find();
Response resp;
try {
resp = await provider.listRecommendations(
pageKey,
channel: mode.value == 0 ? null : 'shuffle',
);
} catch (e) {
rethrow;
} finally {
isBusy.value = false;
}
final PaginationResult result = PaginationResult.fromJson(resp.body);
final out = result.data?.map((e) => Post.fromJson(e)).toList();
2024-07-25 08:08:46 +00:00
postTotal.value = result.count;
2024-07-25 06:42:50 +00:00
return out;
}
2024-07-25 08:08:46 +00:00
@override
2024-07-25 06:42:50 +00:00
void dispose() {
pagingController.dispose();
2024-07-25 08:08:46 +00:00
super.dispose();
2024-07-25 06:42:50 +00:00
}
}