diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-07-22 16:06:51 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-07-22 16:06:51 -0500 |
commit | 7f04ac172e8ada1244de1df2064e32d32f1c2348 (patch) | |
tree | dcecdfcad0746a296b38e8d3acb5dd983589d6b0 /src/view/com/post-thread/PostThreadItem.tsx | |
parent | ce83648f9da3a93018fc7845bec1d35c1519028d (diff) | |
download | voidsky-7f04ac172e8ada1244de1df2064e32d32f1c2348.tar.zst |
Add post composer
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 7263c61b3..bd22ecf9a 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -54,6 +54,11 @@ export const PostThreadItem = observer(function PostThreadItem({ recordKey: urip.recordKey, }) } + const onPressReply = () => { + onNavigateContent('Composer', { + replyTo: item.uri, + }) + } const onPressToggleRepost = () => { item .toggleRepost() @@ -129,13 +134,13 @@ export const PostThreadItem = observer(function PostThreadItem({ <></> )} <View style={styles.ctrls}> - <View style={styles.ctrl}> + <TouchableOpacity style={styles.ctrl} onPress={onPressReply}> <FontAwesomeIcon style={styles.ctrlIcon} icon={['far', 'comment']} /> <Text>{item.replyCount}</Text> - </View> + </TouchableOpacity> <TouchableOpacity style={styles.ctrl} onPress={onPressToggleRepost}> <FontAwesomeIcon style={ |