From cb310ab1c1e4d2beb6f39b39e4972b9ae21f9849 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 5 Sep 2022 14:16:48 -0500 Subject: Rewrite the post composer as a modal --- src/view/com/post/Post.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/view/com/post/Post.tsx') diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 2de7432bd..a6580fa5a 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -11,6 +11,7 @@ import { } from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {PostThreadViewModel} from '../../../state/models/post-thread-view' +import {ComposePostModel} from '../../../state/models/shell' import {Link} from '../util/Link' import {useStores} from '../../../state' import {s, colors} from '../../lib/styles' @@ -63,7 +64,7 @@ export const Post = observer(function Post({uri}: {uri: string}) { const authorHref = `/profile/${item.author.name}` const authorTitle = item.author.name const onPressReply = () => { - store.nav.navigate(`/composer?replyTo=${item.uri}`) + store.shell.openModal(new ComposePostModel(item.uri)) } const onPressToggleRepost = () => { item -- cgit 1.4.1