Solian/lib/controllers/post_list_controller.dart

172 lines
4.3 KiB
Dart
Raw Normal View History

2024-09-02 15:11:40 +00:00
import 'dart:math';
2024-07-25 06:42:50 +00:00
import 'package:get/get.dart';
import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart';
2024-09-02 15:11:40 +00:00
import 'package:shared_preferences/shared_preferences.dart';
2024-07-25 06:42:50 +00:00
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-09-02 15:11:40 +00:00
late final SharedPreferences _prefs;
2024-07-26 08:53:05 +00:00
String? author;
2024-07-25 06:42:50 +00:00
/// The polling source modifier.
/// - `0`: default recommendations
/// - `1`: friend mode
/// - `2`: shuffle mode
2024-07-25 06:42:50 +00:00
RxInt mode = 0.obs;
/// The paging controller for infinite loading.
/// Only available when mode is `0` or `1`.
2024-07-25 06:42:50 +00:00
PagingController<int, Post> pagingController =
2024-07-26 08:53:05 +00:00
PagingController(firstPageKey: 0);
2024-07-25 06:42:50 +00:00
2024-07-26 08:53:05 +00:00
PostListController({this.author}) {
2024-09-02 15:11:40 +00:00
_initPreferences();
2024-07-25 06:42:50 +00:00
_initPagingController();
}
2024-09-02 15:11:40 +00:00
void _initPreferences() {
SharedPreferences.getInstance().then((prefs) {
_prefs = prefs;
});
}
2024-07-25 06:42:50 +00:00
/// 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;
2024-07-26 08:53:05 +00:00
2024-07-25 08:08:46 +00:00
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-09-02 15:11:40 +00:00
var lastId = postList.map((x) => x.id).reduce(max);
if (_prefs.containsKey('feed_last_read_at')) {
final storedId = _prefs.getInt('feed_last_read_at') ?? 0;
lastId = max(storedId, lastId);
}
_prefs.setInt('feed_last_read_at', lastId);
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 {
2024-07-26 08:53:05 +00:00
if (author != null) {
resp = await provider.listPost(
pageKey,
author: author,
);
} else {
switch (mode.value) {
case 2:
resp = await provider.listRecommendations(
pageKey,
channel: 'shuffle',
);
break;
case 1:
resp = await provider.listRecommendations(
pageKey,
channel: 'friends',
);
break;
default:
resp = await provider.listRecommendations(pageKey);
break;
}
2024-07-26 08:53:05 +00:00
}
2024-07-25 06:42:50 +00:00
} catch (e) {
rethrow;
} finally {
isBusy.value = false;
}
2024-07-26 08:53:05 +00:00
final result = PaginationResult.fromJson(resp.body);
2024-07-25 06:42:50 +00:00
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
}
}