diff options
Diffstat (limited to 'src/components/taggs/TwitterTaggPost.tsx')
-rw-r--r-- | src/components/taggs/TwitterTaggPost.tsx | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/components/taggs/TwitterTaggPost.tsx b/src/components/taggs/TwitterTaggPost.tsx index fb4cbd0f..c971a82c 100644 --- a/src/components/taggs/TwitterTaggPost.tsx +++ b/src/components/taggs/TwitterTaggPost.tsx @@ -3,9 +3,13 @@ import {Image, Linking, StyleSheet, View} from 'react-native'; import {Text} from 'react-native-animatable'; import Hyperlink from 'react-native-hyperlink'; import LinearGradient from 'react-native-linear-gradient'; -import {AVATAR_DIM, TAGGS_GRADIENT, TAGG_TEXT_LIGHT_BLUE} from '../../constants'; +import { + AVATAR_DIM, + TAGGS_GRADIENT, + TAGG_TEXT_LIGHT_BLUE, +} from '../../constants'; import {TwitterPostType} from '../../types'; -import {SCREEN_WIDTH} from '../../utils'; +import {handleOpenSocialUrlOnBrowser, SCREEN_WIDTH} from '../../utils'; import {DateLabel, PostCarousel} from '../common'; interface TwitterTaggPostProps { @@ -16,11 +20,6 @@ const TwitterTaggPost: React.FC<TwitterTaggPostProps> = ({ ownerHandle, post, }) => { - const openTwitterProfileLink = (handle?: string) => { - if (handle) { - Linking.openURL(`https://twitter.com/${handle}`); - } - }; return ( <View style={styles.mainContainer}> {/* Retweeted? */} @@ -41,7 +40,7 @@ const TwitterTaggPost: React.FC<TwitterTaggPostProps> = ({ /> <Text style={styles.headerText} - onPress={() => openTwitterProfileLink(post.handle)}> + onPress={() => handleOpenSocialUrlOnBrowser(post.handle, 'Twitter')}> @{post.handle} </Text> </View> |