88 lines
2.6 KiB
Dart
88 lines
2.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:pilipala/http/reply.dart';
|
|
import 'package:pilipala/models/common/reply_type.dart';
|
|
import 'package:pilipala/models/video/reply/item.dart';
|
|
|
|
class VideoReplyReplyController extends GetxController {
|
|
VideoReplyReplyController(this.aid, this.rpid, this.replyType);
|
|
final ScrollController scrollController = ScrollController();
|
|
// 视频aid 请求时使用的oid
|
|
int? aid;
|
|
// rpid 请求楼中楼回复
|
|
String? rpid;
|
|
ReplyType replyType = ReplyType.video;
|
|
RxList<ReplyItemModel> replyList = [ReplyItemModel()].obs;
|
|
// 当前页
|
|
int currentPage = 0;
|
|
bool isLoadingMore = false;
|
|
RxString noMore = ''.obs;
|
|
// 当前回复的回复
|
|
ReplyItemModel? currentReplyItem;
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
currentPage = 0;
|
|
}
|
|
|
|
Future queryReplyList({type = 'init'}) async {
|
|
if (type == 'init') {
|
|
currentPage = 0;
|
|
}
|
|
isLoadingMore = true;
|
|
var res = await ReplyHttp.replyReplyList(
|
|
oid: aid!,
|
|
root: rpid!,
|
|
pageNum: currentPage + 1,
|
|
type: replyType.index,
|
|
);
|
|
if (res['status']) {
|
|
List<ReplyItemModel> replies = res['data'].replies;
|
|
if (replies.isNotEmpty) {
|
|
noMore.value = '加载中...';
|
|
if (replyList.length == res['data'].page.count) {
|
|
noMore.value = '没有更多了';
|
|
}
|
|
currentPage++;
|
|
} else {
|
|
// 未登录状态replies可能返回null
|
|
noMore.value = currentPage == 0 ? '还没有评论' : '没有更多了';
|
|
}
|
|
if (type == 'init') {
|
|
// List<ReplyItemModel> replies = res['data'].replies;
|
|
// 添加置顶回复
|
|
// if (res['data'].upper.top != null) {
|
|
// bool flag = false;
|
|
// for (var i = 0; i < res['data'].topReplies.length; i++) {
|
|
// if (res['data'].topReplies[i].rpid == res['data'].upper.top.rpid) {
|
|
// flag = true;
|
|
// }
|
|
// }
|
|
// if (!flag) {
|
|
// replies.insert(0, res['data'].upper.top);
|
|
// }
|
|
// }
|
|
// replies.insertAll(0, res['data'].topReplies);
|
|
// res['data'].replies = replies;
|
|
replyList.value = replies;
|
|
} else {
|
|
// 每次回复之后,翻页请求有且只有相同的一条回复数据
|
|
if (replies.length == 1 && replies.last.rpid == replyList.last.rpid) {
|
|
return;
|
|
}
|
|
replyList.addAll(replies);
|
|
// res['data'].replies.addAll(replyList);
|
|
}
|
|
}
|
|
isLoadingMore = false;
|
|
return res;
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
currentPage = 0;
|
|
super.onClose();
|
|
}
|
|
}
|