mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-15 05:33:59 +08:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6a7d14a3f8 |
@@ -165,7 +165,7 @@ class _DynamicDetailPageState extends State<DynamicDetailPage>
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 查看二级评论
|
// 查看二级评论
|
||||||
void replyReply(context, replyItem, id, isTop) {
|
void replyReply(context, replyItem, id) {
|
||||||
EasyThrottle.throttle('replyReply', const Duration(milliseconds: 500), () {
|
EasyThrottle.throttle('replyReply', const Duration(milliseconds: 500), () {
|
||||||
int oid = replyItem.oid.toInt();
|
int oid = replyItem.oid.toInt();
|
||||||
int rpid = replyItem.id.toInt();
|
int rpid = replyItem.id.toInt();
|
||||||
@@ -814,8 +814,8 @@ class _DynamicDetailPageState extends State<DynamicDetailPage>
|
|||||||
replyItem: loadingState.response.replies[index],
|
replyItem: loadingState.response.replies[index],
|
||||||
showReplyRow: true,
|
showReplyRow: true,
|
||||||
replyLevel: '1',
|
replyLevel: '1',
|
||||||
replyReply: (replyItem, id, isTop) =>
|
replyReply: (replyItem, id) =>
|
||||||
replyReply(context, replyItem, id, isTop),
|
replyReply(context, replyItem, id),
|
||||||
replyType: ReplyType.values[replyType],
|
replyType: ReplyType.values[replyType],
|
||||||
onReply: () {
|
onReply: () {
|
||||||
_dynamicDetailController.onReply(
|
_dynamicDetailController.onReply(
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ class _HtmlRenderPageState extends State<HtmlRenderPage>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void replyReply(context, replyItem, id, isTop) {
|
void replyReply(context, replyItem, id) {
|
||||||
EasyThrottle.throttle('replyReply', const Duration(milliseconds: 500), () {
|
EasyThrottle.throttle('replyReply', const Duration(milliseconds: 500), () {
|
||||||
int oid = replyItem.oid.toInt();
|
int oid = replyItem.oid.toInt();
|
||||||
int rpid = replyItem.id.toInt();
|
int rpid = replyItem.id.toInt();
|
||||||
@@ -787,8 +787,8 @@ class _HtmlRenderPageState extends State<HtmlRenderPage>
|
|||||||
replyItem: loadingState.response.replies[index],
|
replyItem: loadingState.response.replies[index],
|
||||||
showReplyRow: true,
|
showReplyRow: true,
|
||||||
replyLevel: '1',
|
replyLevel: '1',
|
||||||
replyReply: (replyItem, id, isTop) =>
|
replyReply: (replyItem, id) =>
|
||||||
replyReply(context, replyItem, id, isTop),
|
replyReply(context, replyItem, id),
|
||||||
replyType: ReplyType.values[type],
|
replyType: ReplyType.values[type],
|
||||||
onReply: () {
|
onReply: () {
|
||||||
_htmlRenderCtr.onReply(
|
_htmlRenderCtr.onReply(
|
||||||
|
|||||||
Reference in New Issue
Block a user