1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Handles comment deletion events

This commit is contained in:
2020-04-18 16:57:00 +02:00
parent 6b08b62832
commit dab4e7bde1
4 changed files with 22 additions and 5 deletions

View File

@ -523,11 +523,6 @@ class _PostTileState extends State<PostTile> {
showSimpleSnack(context, tr("Could not delete the comment!"));
return;
}
// Remove the comment from the list
setState(() {
widget.post.comments.remove(comment);
});
}
/// Method called each time the user has selected an option

View File

@ -72,6 +72,8 @@ class PostsListWidgetState extends SafeState<PostsListWidget> {
this.listen<NewCommentEvent>((ev) => this._addComment(ev.comment));
this.listenChangeState<UpdatedCommentEvent>(
(ev) => this._updateComment(ev.comment));
this.listenChangeState<DeletedCommentEvent>(
(ev) => this._removeComment(ev.commentID));
}
@override
@ -263,4 +265,11 @@ class PostsListWidgetState extends SafeState<PostsListWidget> {
print("$e\n$stack");
}
}
/// Remove a comment from the list
void _removeComment(int commentID) {
if (_list == null) return;
_list.forEach((p) => p.comments.removeWhere((c) => c.id == commentID));
}
}