From 236c9080587ad9e63fa3330d2567640ea2f64fb4 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 4 Oct 2022 11:33:32 -0500 Subject: Update the view after a post is created --- src/view/com/post-thread/PostThreadItem.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/view/com/post-thread/PostThreadItem.tsx') diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index d28017e44..ef1324bfb 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -20,9 +20,11 @@ const PARENT_REPLY_LINE_LENGTH = 8 export const PostThreadItem = observer(function PostThreadItem({ item, onPressShare, + onPostReply, }: { item: PostThreadViewPostModel onPressShare: (_uri: string) => void + onPostReply: () => void }) { const store = useStores() const record = item.record as unknown as PostType.Record @@ -47,7 +49,9 @@ export const PostThreadItem = observer(function PostThreadItem({ const repostsTitle = 'Reposts of this post' const onPressReply = () => { - store.shell.openModal(new ComposePostModel(item.uri)) + store.shell.openModal( + new ComposePostModel({replyTo: item.uri, onPost: onPostReply}), + ) } const onPressToggleRepost = () => { item -- cgit 1.4.1