2021-05-12 22:45:51 +02:00
|
|
|
import analytics from '@components/analytics'
|
|
|
|
import Button from '@components/Button'
|
|
|
|
import haptics from '@components/haptics'
|
|
|
|
import ComponentInstance from '@components/Instance'
|
|
|
|
import { useNavigation } from '@react-navigation/native'
|
2022-01-30 22:51:03 +01:00
|
|
|
import initQuery from '@utils/initQuery'
|
2021-05-12 22:45:51 +02:00
|
|
|
import {
|
|
|
|
getInstanceActive,
|
|
|
|
getInstances,
|
2022-01-30 22:51:03 +01:00
|
|
|
Instance
|
2021-05-12 22:45:51 +02:00
|
|
|
} from '@utils/slices/instancesSlice'
|
|
|
|
import { StyleConstants } from '@utils/styles/constants'
|
|
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
|
|
|
import React, { useRef } from 'react'
|
2021-01-19 01:13:45 +01:00
|
|
|
import { useTranslation } from 'react-i18next'
|
2021-05-27 10:40:05 +02:00
|
|
|
import {
|
|
|
|
KeyboardAvoidingView,
|
|
|
|
Platform,
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
View
|
|
|
|
} from 'react-native'
|
2021-05-12 22:45:51 +02:00
|
|
|
import { ScrollView } from 'react-native-gesture-handler'
|
2022-01-30 22:51:03 +01:00
|
|
|
import { useSelector } from 'react-redux'
|
2021-01-07 19:13:09 +01:00
|
|
|
|
2021-05-12 22:45:51 +02:00
|
|
|
interface Props {
|
|
|
|
instance: Instance
|
|
|
|
selected?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
const AccountButton: React.FC<Props> = ({ instance, selected = false }) => {
|
|
|
|
const navigation = useNavigation()
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Button
|
|
|
|
type='text'
|
|
|
|
selected={selected}
|
|
|
|
style={styles.button}
|
|
|
|
content={`@${instance.account.acct}@${instance.uri}${
|
|
|
|
selected ? ' ✓' : ''
|
|
|
|
}`}
|
|
|
|
onPress={() => {
|
|
|
|
haptics('Light')
|
|
|
|
analytics('switch_existing_press')
|
2022-01-30 22:51:03 +01:00
|
|
|
initQuery({ instance, prefetch: { enabled: true } })
|
2021-05-12 22:45:51 +02:00
|
|
|
navigation.goBack()
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2021-01-07 19:13:09 +01:00
|
|
|
|
2021-05-12 22:45:51 +02:00
|
|
|
const TabMeSwitch: React.FC = () => {
|
2021-03-28 23:31:10 +02:00
|
|
|
const { t } = useTranslation('screenTabs')
|
2022-02-12 14:51:01 +01:00
|
|
|
const { colors } = useTheme()
|
2021-05-12 22:45:51 +02:00
|
|
|
const instances = useSelector(getInstances, () => true)
|
|
|
|
const instanceActive = useSelector(getInstanceActive, () => true)
|
|
|
|
|
|
|
|
const scrollViewRef = useRef<ScrollView>(null)
|
|
|
|
|
2021-01-07 19:13:09 +01:00
|
|
|
return (
|
2021-05-27 10:40:05 +02:00
|
|
|
<KeyboardAvoidingView
|
|
|
|
style={{ flex: 1 }}
|
|
|
|
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
2021-01-14 00:43:35 +01:00
|
|
|
>
|
2021-05-27 10:40:05 +02:00
|
|
|
<ScrollView
|
|
|
|
ref={scrollViewRef}
|
|
|
|
style={styles.base}
|
|
|
|
keyboardShouldPersistTaps='always'
|
|
|
|
>
|
|
|
|
<View
|
2022-02-12 14:51:01 +01:00
|
|
|
style={[styles.firstSection, { borderBottomColor: colors.border }]}
|
2021-05-27 10:40:05 +02:00
|
|
|
>
|
2022-02-12 14:51:01 +01:00
|
|
|
<Text style={[styles.header, { color: colors.primaryDefault }]}>
|
2021-05-27 10:40:05 +02:00
|
|
|
{t('me.switch.existing')}
|
|
|
|
</Text>
|
|
|
|
<View style={styles.accountButtons}>
|
|
|
|
{instances.length
|
|
|
|
? instances
|
|
|
|
.slice()
|
|
|
|
.sort((a, b) =>
|
|
|
|
`${a.uri}${a.account.acct}`.localeCompare(
|
|
|
|
`${b.uri}${b.account.acct}`
|
|
|
|
)
|
2021-05-12 22:45:51 +02:00
|
|
|
)
|
2021-05-27 10:40:05 +02:00
|
|
|
.map((instance, index) => {
|
|
|
|
const localAccount = instances[instanceActive!]
|
|
|
|
return (
|
|
|
|
<AccountButton
|
|
|
|
key={index}
|
|
|
|
instance={instance}
|
|
|
|
selected={
|
|
|
|
instance.url === localAccount.url &&
|
|
|
|
instance.token === localAccount.token &&
|
|
|
|
instance.account.id === localAccount.account.id
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
})
|
|
|
|
: null}
|
|
|
|
</View>
|
2021-05-12 22:45:51 +02:00
|
|
|
</View>
|
|
|
|
|
2021-05-27 10:40:05 +02:00
|
|
|
<View style={styles.secondSection}>
|
2022-02-12 14:51:01 +01:00
|
|
|
<Text style={[styles.header, { color: colors.primaryDefault }]}>
|
2021-05-27 10:40:05 +02:00
|
|
|
{t('me.switch.new')}
|
|
|
|
</Text>
|
|
|
|
<ComponentInstance
|
|
|
|
scrollViewRef={scrollViewRef}
|
|
|
|
disableHeaderImage
|
|
|
|
goBack
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
</ScrollView>
|
|
|
|
</KeyboardAvoidingView>
|
2021-01-07 19:13:09 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-05-12 22:45:51 +02:00
|
|
|
const styles = StyleSheet.create({
|
|
|
|
base: {
|
2021-05-27 10:40:05 +02:00
|
|
|
marginBottom: StyleConstants.Spacing.L * 2
|
2021-05-12 22:45:51 +02:00
|
|
|
},
|
|
|
|
header: {
|
|
|
|
...StyleConstants.FontStyle.M,
|
|
|
|
textAlign: 'center',
|
|
|
|
paddingVertical: StyleConstants.Spacing.S
|
|
|
|
},
|
|
|
|
firstSection: {
|
|
|
|
marginTop: StyleConstants.Spacing.S,
|
|
|
|
marginHorizontal: StyleConstants.Spacing.Global.PagePadding,
|
|
|
|
paddingBottom: StyleConstants.Spacing.S,
|
|
|
|
borderBottomWidth: StyleSheet.hairlineWidth
|
|
|
|
},
|
|
|
|
secondSection: {
|
|
|
|
paddingTop: StyleConstants.Spacing.M
|
|
|
|
},
|
|
|
|
accountButtons: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
marginTop: StyleConstants.Spacing.M
|
|
|
|
},
|
|
|
|
button: {
|
|
|
|
marginBottom: StyleConstants.Spacing.M,
|
|
|
|
marginRight: StyleConstants.Spacing.M
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-05-09 21:59:03 +02:00
|
|
|
export default TabMeSwitch
|