diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-23 20:05:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 20:05:54 -0400 |
commit | 5936fb83e5ac073e2a172965a29009ce77305d45 (patch) | |
tree | 45fe6f74b4df627703ac97d6c49df2475651479d /src/screens/profile/CaptionScreen.tsx | |
parent | 30f8f9c9585704d03e299f648e3a1441818cccb0 (diff) | |
parent | 6211f59248d8cc37d6b6fd52e65258d1e3b585f1 (diff) |
Merge pull request #524 from IvanIFChen/tma1022-tabbar-removed-in-moment-post
[TMA-1022] Remove tab bar in moment post/comment
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 6ba1791c..3ee0bd5b 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -93,6 +93,15 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { }, [route.params.selectedCategory]); useEffect(() => { + // if we're editing, hide tab bar + if (moment) { + navigation.dangerouslyGetParent()?.setOptions({ + tabBarVisible: false, + }); + } + }, [route.params.moment]); + + useEffect(() => { let listString = ''; // Append non-truncated usernames together and no more than 21 characters total // e.g. "@ivan.tagg" @@ -271,7 +280,14 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { <Button title="Cancel" buttonStyle={styles.button} - onPress={() => navigation.goBack()} + onPress={() => { + if (moment) { + navigation.dangerouslyGetParent()?.setOptions({ + tabBarVisible: true, + }); + } + navigation.goBack(); + }} /> </View> <CaptionScreenHeader style={styles.header} title={'Moments'} /> |