tooot/src/screens/Tabs/Me/Settings/Tooot.tsx

71 lines
2.5 KiB
TypeScript

import Icon from '@components/Icon'
import { MenuContainer, MenuRow } from '@components/Menu'
import openLink from '@components/openLink'
import { useNavigation } from '@react-navigation/native'
import { getAccountStorage, useGlobalStorage } from '@utils/storage/actions'
import { StyleConstants } from '@utils/styles/constants'
import { useTheme } from '@utils/styles/ThemeManager'
import Constants from 'expo-constants'
import * as Linking from 'expo-linking'
import React from 'react'
import { useTranslation } from 'react-i18next'
import { Platform } from 'react-native'
const SettingsTooot: React.FC = () => {
const navigation = useNavigation<any>()
const { colors } = useTheme()
const { t } = useTranslation('screenTabs')
const [accountActive] = useGlobalStorage.string('account.active')
const [expoToken] = useGlobalStorage.string('app.expo_token')
return (
<MenuContainer>
<MenuRow
title={t('me.settings.support.heading')}
content={<Icon name='heart' size={StyleConstants.Font.Size.M} color={colors.red} />}
iconBack='chevron-right'
onPress={() => Linking.openURL('https://www.buymeacoffee.com/xmflsct')}
/>
<MenuRow
title={t('me.settings.feedback.heading')}
content={
<Icon name='message-square' size={StyleConstants.Font.Size.M} color={colors.secondary} />
}
iconBack='chevron-right'
onPress={() => Linking.openURL('https://feedback.tooot.app/feature-requests')}
/>
<MenuRow
title={t('me.settings.contact.heading')}
content={<Icon name='mail' size={StyleConstants.Font.Size.M} color={colors.secondary} />}
iconBack='chevron-right'
onPress={async () => {
if (accountActive) {
navigation.navigate('Screen-Compose', {
type: 'conversation',
accts: ['tooot@xmflsct.com'],
visibility: 'direct',
text:
'[' +
`${Platform.OS}/${Platform.Version}` +
' - ' +
(Constants.expoConfig?.version ? `t/${Constants.expoConfig?.version}` : '') +
' - ' +
`m/${getAccountStorage.string('version')}` +
' - ' +
(expoToken?.length
? `e/${expoToken.replace(/^ExponentPushToken\[/, '').replace(/\]$/, '')}`
: '') +
']'
})
} else {
openLink('https://social.xmflsct.com/@tooot')
}
}}
/>
</MenuContainer>
)
}
export default SettingsTooot