opt: reply2reply

This commit is contained in:
bggRGjQaUbCoE
2024-10-12 09:38:25 +08:00
parent 60e80ba160
commit 6e7e815710
6 changed files with 201 additions and 179 deletions

View File

@@ -41,6 +41,7 @@
## feat ## feat
- [x] 评论楼中楼定位点击查看的评论
- [x] 评论楼中楼按热度/时间排序 - [x] 评论楼中楼按热度/时间排序
- [x] 评论点踩 - [x] 评论点踩
- [x] 显示ops专栏 - [x] 显示ops专栏

View File

@@ -102,7 +102,6 @@ class GrpcRepo {
try { try {
return await request(); return await request();
} catch (e) { } catch (e) {
print('111111111111111111111111111111111111111 $e');
return {'status': false, 'msg': e.toString()}; return {'status': false, 'msg': e.toString()};
} }
} }

View File

@@ -53,7 +53,7 @@ class ReplyItemGrpc extends StatelessWidget {
onTap: () { onTap: () {
feedBack(); feedBack();
if (replyReply != null) { if (replyReply != null) {
replyReply!(replyItem); replyReply!(replyItem, null);
} }
}, },
onLongPress: () { onLongPress: () {
@@ -442,7 +442,8 @@ class ReplyItemRow extends StatelessWidget {
for (int i = 0; i < replies.length; i++) ...[ for (int i = 0; i < replies.length; i++) ...[
InkWell( InkWell(
// 一楼点击评论展开评论详情 // 一楼点击评论展开评论详情
onTap: () => replyReply!(replyItem), onTap: () =>
replyReply?.call(replyItem, replies[i].id.toInt()),
onLongPress: () { onLongPress: () {
feedBack(); feedBack();
showModalBottomSheet( showModalBottomSheet(
@@ -543,7 +544,7 @@ class ReplyItemRow extends StatelessWidget {
if (extraRow) if (extraRow)
InkWell( InkWell(
// 一楼点击【共xx条回复】展开评论详情 // 一楼点击【共xx条回复】展开评论详情
onTap: () => replyReply!(replyItem), onTap: () => replyReply!(replyItem, null),
child: Container( child: Container(
width: double.infinity, width: double.infinity,
padding: const EdgeInsets.fromLTRB(8, 5, 8, 8), padding: const EdgeInsets.fromLTRB(8, 5, 8, 8),

View File

@@ -4,9 +4,19 @@ import 'package:PiliPalaX/pages/common/common_controller.dart';
import 'package:get/get.dart'; import 'package:get/get.dart';
import 'package:PiliPalaX/http/reply.dart'; import 'package:PiliPalaX/http/reply.dart';
import 'package:PiliPalaX/models/common/reply_type.dart'; import 'package:PiliPalaX/models/common/reply_type.dart';
import 'package:scrollable_positioned_list/scrollable_positioned_list.dart';
class VideoReplyReplyController extends CommonController { class VideoReplyReplyController extends CommonController {
VideoReplyReplyController(this.aid, this.rpid, this.replyType); VideoReplyReplyController(
this.hasRoot,
this.id,
this.aid,
this.rpid,
this.replyType,
);
final itemScrollCtr = ItemScrollController();
bool hasRoot = false;
dynamic id;
// 视频aid 请求时使用的oid // 视频aid 请求时使用的oid
int? aid; int? aid;
// rpid 请求楼中楼回复 // rpid 请求楼中楼回复
@@ -16,11 +26,11 @@ class VideoReplyReplyController extends CommonController {
RxString noMore = ''.obs; RxString noMore = ''.obs;
// 当前回复的回复 // 当前回复的回复
ReplyInfo? currentReplyItem; ReplyInfo? currentReplyItem;
ReplyInfo? root;
CursorReply? cursor; CursorReply? cursor;
Rx<Mode> mode = Mode.MAIN_LIST_HOT.obs; Rx<Mode> mode = Mode.MAIN_LIST_HOT.obs;
RxInt count = (-1).obs; RxInt count = (-1).obs;
int? upMid;
@override @override
void onInit() { void onInit() {
@@ -79,10 +89,26 @@ class VideoReplyReplyController extends CommonController {
@override @override
bool customHandleResponse(Success response) { bool customHandleResponse(Success response) {
DetailListReply replies = response.response; DetailListReply replies = response.response;
root = replies.root;
if (cursor == null) { if (cursor == null) {
count.value = replies.root.count.toInt(); count.value = replies.root.count.toInt();
if (id != null) {
int index = replies.root.replies
.map((item) => item.id.toInt())
.toList()
.indexOf(id);
if (index != -1) {
() async {
await Future.delayed(const Duration(milliseconds: 200));
itemScrollCtr.scrollTo(
index: hasRoot ? index + 3 : index + 1,
duration: const Duration(milliseconds: 200),
);
}();
} }
id = null;
}
}
upMid ??= replies.subjectControl.upMid.toInt();
cursor = replies.cursor; cursor = replies.cursor;
if (replies.root.replies.isNotEmpty) { if (replies.root.replies.isNotEmpty) {
noMore.value = '加载中...'; noMore.value = '加载中...';

View File

@@ -1,16 +1,14 @@
import 'package:PiliPalaX/grpc/app/main/community/reply/v1/reply.pb.dart'; import 'package:PiliPalaX/grpc/app/main/community/reply/v1/reply.pb.dart';
import 'package:PiliPalaX/http/loading_state.dart'; import 'package:PiliPalaX/http/loading_state.dart';
import 'package:PiliPalaX/pages/video/detail/reply/view.dart'
show MySliverPersistentHeaderDelegate;
import 'package:PiliPalaX/pages/video/detail/reply/widgets/reply_item_grpc.dart'; import 'package:PiliPalaX/pages/video/detail/reply/widgets/reply_item_grpc.dart';
import 'package:PiliPalaX/pages/video/detail/reply_new/reply_page.dart'; import 'package:PiliPalaX/pages/video/detail/reply_new/reply_page.dart';
import 'package:easy_debounce/easy_throttle.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:get/get.dart'; import 'package:get/get.dart';
import 'package:PiliPalaX/common/skeleton/video_reply.dart'; import 'package:PiliPalaX/common/skeleton/video_reply.dart';
import 'package:PiliPalaX/common/widgets/http_error.dart'; import 'package:PiliPalaX/common/widgets/http_error.dart';
import 'package:PiliPalaX/models/common/reply_type.dart'; import 'package:PiliPalaX/models/common/reply_type.dart';
import 'package:get/get_navigation/src/dialog/dialog_route.dart'; import 'package:get/get_navigation/src/dialog/dialog_route.dart';
import 'package:scrollable_positioned_list/scrollable_positioned_list.dart';
import '../../../../utils/utils.dart'; import '../../../../utils/utils.dart';
import 'controller.dart'; import 'controller.dart';
@@ -18,6 +16,7 @@ import 'controller.dart';
class VideoReplyReplyPanel extends StatefulWidget { class VideoReplyReplyPanel extends StatefulWidget {
const VideoReplyReplyPanel({ const VideoReplyReplyPanel({
// this.rcount, // this.rcount,
this.id,
this.oid, this.oid,
this.rpid, this.rpid,
this.firstFloor, this.firstFloor,
@@ -26,6 +25,7 @@ class VideoReplyReplyPanel extends StatefulWidget {
super.key, super.key,
}); });
// final dynamic rcount; // final dynamic rcount;
final dynamic id;
final int? oid; final int? oid;
final int? rpid; final int? rpid;
final ReplyInfo? firstFloor; final ReplyInfo? firstFloor;
@@ -45,29 +45,18 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
super.initState(); super.initState();
_videoReplyReplyController = Get.put( _videoReplyReplyController = Get.put(
VideoReplyReplyController( VideoReplyReplyController(
widget.oid, widget.rpid.toString(), widget.replyType!), widget.firstFloor != null,
widget.id,
widget.oid,
widget.rpid.toString(),
widget.replyType!,
),
tag: widget.rpid.toString(), tag: widget.rpid.toString(),
); );
// 上拉加载更多
_videoReplyReplyController.scrollController.addListener(
() {
if (_videoReplyReplyController.scrollController.position.pixels >=
_videoReplyReplyController
.scrollController.position.maxScrollExtent -
300) {
EasyThrottle.throttle('replylist', const Duration(milliseconds: 200),
() {
_videoReplyReplyController.onLoadMore();
});
}
},
);
} }
@override @override
void dispose() { void dispose() {
_videoReplyReplyController.scrollController.removeListener(() {});
Get.delete<VideoReplyReplyController>(tag: widget.rpid.toString()); Get.delete<VideoReplyReplyController>(tag: widget.rpid.toString());
super.dispose(); super.dispose();
} }
@@ -105,14 +94,17 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
onRefresh: () async { onRefresh: () async {
await _videoReplyReplyController.onRefresh(); await _videoReplyReplyController.onRefresh();
}, },
child: CustomScrollView( child: Obx(
controller: _videoReplyReplyController.scrollController, () => ScrollablePositionedList.builder(
itemCount:
_itemCount(_videoReplyReplyController.loadingState.value),
itemScrollController:
_videoReplyReplyController.itemScrollCtr,
physics: const AlwaysScrollableScrollPhysics(), physics: const AlwaysScrollableScrollPhysics(),
slivers: <Widget>[ itemBuilder: (_, index) {
if (widget.firstFloor != null) ...[ if (widget.firstFloor != null) {
// const SliverToBoxAdapter(child: SizedBox(height: 10)), if (index == 0) {
SliverToBoxAdapter( return ReplyItemGrpc(
child: ReplyItemGrpc(
replyItem: widget.firstFloor!, replyItem: widget.firstFloor!,
replyLevel: '2', replyLevel: '2',
showReplyRow: false, showReplyRow: false,
@@ -121,21 +113,42 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
onReply: () { onReply: () {
_onReply(widget.firstFloor!); _onReply(widget.firstFloor!);
}, },
), upMid: _videoReplyReplyController.upMid,
), );
SliverToBoxAdapter( } else if (index == 1) {
child: Divider( return Divider(
height: 20, height: 20,
color: Theme.of(context).dividerColor.withOpacity(0.1), color:
Theme.of(context).dividerColor.withOpacity(0.1),
thickness: 6, thickness: 6,
);
} else if (index == 2) {
return _sortWidget;
} else {
return Obx(() => _buildBody(
_videoReplyReplyController.loadingState.value,
index - 3));
}
} else {
if (index == 0) {
return _sortWidget;
} else {
return Obx(() => _buildBody(
_videoReplyReplyController.loadingState.value,
index - 1));
}
}
},
),
),
), ),
), ),
], ],
SliverPersistentHeader( ),
pinned: false, );
floating: true, }
delegate: MySliverPersistentHeaderDelegate(
child: Container( Widget get _sortWidget => Container(
height: 40, height: 40,
padding: const EdgeInsets.fromLTRB(12, 0, 6, 0), padding: const EdgeInsets.fromLTRB(12, 0, 6, 0),
color: Theme.of(context).colorScheme.surface, color: Theme.of(context).colorScheme.surface,
@@ -153,13 +166,11 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
SizedBox( SizedBox(
height: 35, height: 35,
child: TextButton.icon( child: TextButton.icon(
onPressed: () => onPressed: () => _videoReplyReplyController.queryBySort(),
_videoReplyReplyController.queryBySort(),
icon: const Icon(Icons.sort, size: 16), icon: const Icon(Icons.sort, size: 16),
label: Obx( label: Obx(
() => Text( () => Text(
_videoReplyReplyController.mode.value == _videoReplyReplyController.mode.value == Mode.MAIN_LIST_HOT
Mode.MAIN_LIST_HOT
? '按热度' ? '按热度'
: '按时间', : '按时间',
style: const TextStyle(fontSize: 13), style: const TextStyle(fontSize: 13),
@@ -169,19 +180,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
) )
], ],
), ),
),
),
),
Obx(() => _buildBody(
_videoReplyReplyController.loadingState.value)),
],
),
),
),
],
),
); );
}
void _onReply(ReplyInfo? item) { void _onReply(ReplyInfo? item) {
dynamic oid = item?.oid.toInt(); dynamic oid = item?.oid.toInt();
@@ -236,39 +235,13 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
}); });
} }
Widget _buildBody(LoadingState loadingState) { Widget _buildBody(LoadingState loadingState, int index) {
return loadingState is Success if (loadingState is Success) {
? SliverMainAxisGroup(
slivers: <Widget>[
if (widget.firstFloor == null &&
_videoReplyReplyController.root != null) ...[
SliverToBoxAdapter(
child: ReplyItemGrpc(
replyItem: _videoReplyReplyController.root!,
replyLevel: '2',
showReplyRow: false,
replyType: widget.replyType,
needDivider: false,
onReply: () {
_onReply(_videoReplyReplyController.root);
},
),
),
SliverToBoxAdapter(
child: Divider(
height: 20,
color: Theme.of(context).dividerColor.withOpacity(0.1),
thickness: 6,
),
),
],
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
if (index == loadingState.response.length) { if (index == loadingState.response.length) {
_videoReplyReplyController.onLoadMore();
return Container( return Container(
padding: EdgeInsets.only( padding:
bottom: MediaQuery.of(context).padding.bottom), EdgeInsets.only(bottom: MediaQuery.of(context).padding.bottom),
height: MediaQuery.of(context).padding.bottom + 100, height: MediaQuery.of(context).padding.bottom + 100,
child: Center( child: Center(
child: Obx( child: Obx(
@@ -292,33 +265,54 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
_onReply(loadingState.response[index]); _onReply(loadingState.response[index]);
}, },
onDelete: (rpid, frpid) { onDelete: (rpid, frpid) {
List list = (_videoReplyReplyController List list =
.loadingState.value as Success) (_videoReplyReplyController.loadingState.value as Success)
.response; .response;
list = list.where((item) => item.id != rpid).toList(); list = list.where((item) => item.id != rpid).toList();
_videoReplyReplyController.loadingState.value = _videoReplyReplyController.loadingState.value =
LoadingState.success(list); LoadingState.success(list);
}, },
upMid: _videoReplyReplyController.upMid,
); );
} }
}, } else if (loadingState is Error) {
childCount: loadingState.response.length + 1, return CustomScrollView(
), shrinkWrap: true,
), physics: const NeverScrollableScrollPhysics(),
], slivers: [
) HttpError(
: loadingState is Error
? HttpError(
errMsg: loadingState.errMsg, errMsg: loadingState.errMsg,
fn: _videoReplyReplyController.onReload, fn: _videoReplyReplyController.onReload,
) )
: SliverList( ],
);
} else {
return CustomScrollView(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
slivers: [
SliverList(
delegate: SliverChildBuilderDelegate( delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) { (BuildContext context, int index) {
return const VideoReplySkeleton(); return const VideoReplySkeleton();
}, },
childCount: 8, childCount: 8,
), ),
)
],
); );
} }
} }
int _itemCount(LoadingState loadingState) {
int itemCount = 0;
if (widget.firstFloor != null) {
itemCount = 2;
}
if (loadingState is Success) {
return loadingState.response.length + itemCount + 2;
} else {
return itemCount + 2;
}
}
}

View File

@@ -1287,9 +1287,10 @@ class _VideoDetailPageState extends State<VideoDetailPage>
); );
// 展示二级回复 // 展示二级回复
void replyReply(replyItem) { void replyReply(replyItem, id) {
scaffoldKey.currentState?.showBottomSheet( scaffoldKey.currentState?.showBottomSheet(
(context) => VideoReplyReplyPanel( (context) => VideoReplyReplyPanel(
id: id,
// rcount: replyItem.rcount, // rcount: replyItem.rcount,
oid: replyItem.oid.toInt(), oid: replyItem.oid.toInt(),
rpid: replyItem.id.toInt(), rpid: replyItem.id.toInt(),