114 lines
3.1 KiB
TypeScript
114 lines
3.1 KiB
TypeScript
import React from 'react'
|
|
import {StyleSheet, View} from 'react-native'
|
|
import {useNavigation} from '@react-navigation/native'
|
|
import {
|
|
FontAwesomeIcon,
|
|
FontAwesomeIconStyle,
|
|
} from '@fortawesome/react-native-fontawesome'
|
|
import {Text} from '../util/text/Text'
|
|
import {Button} from '../util/forms/Button'
|
|
import {MagnifyingGlassIcon} from 'lib/icons'
|
|
import {NavigationProp} from 'lib/routes/types'
|
|
import {usePalette} from 'lib/hooks/usePalette'
|
|
import {s} from 'lib/styles'
|
|
import {isWeb} from 'platform/detection'
|
|
import {Trans} from '@lingui/macro'
|
|
|
|
export function FollowingEmptyState() {
|
|
const pal = usePalette('default')
|
|
const palInverted = usePalette('inverted')
|
|
const navigation = useNavigation<NavigationProp>()
|
|
|
|
const onPressFindAccounts = React.useCallback(() => {
|
|
if (isWeb) {
|
|
navigation.navigate('Search', {})
|
|
} else {
|
|
navigation.navigate('SearchTab')
|
|
navigation.popToTop()
|
|
}
|
|
}, [navigation])
|
|
|
|
const onPressDiscoverFeeds = React.useCallback(() => {
|
|
if (isWeb) {
|
|
navigation.navigate('Feeds')
|
|
} else {
|
|
navigation.navigate('FeedsTab')
|
|
navigation.popToTop()
|
|
}
|
|
}, [navigation])
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<View style={styles.inner}>
|
|
<View style={styles.iconContainer}>
|
|
<MagnifyingGlassIcon style={[styles.icon, pal.text]} size={62} />
|
|
</View>
|
|
<Text type="xl-medium" style={[s.textCenter, pal.text]}>
|
|
<Trans>
|
|
Your following feed is empty! Follow more users to see what's
|
|
happening.
|
|
</Trans>
|
|
</Text>
|
|
<Button
|
|
type="inverted"
|
|
style={styles.emptyBtn}
|
|
onPress={onPressFindAccounts}>
|
|
<Text type="lg-medium" style={palInverted.text}>
|
|
<Trans>Find accounts to follow</Trans>
|
|
</Text>
|
|
<FontAwesomeIcon
|
|
icon="angle-right"
|
|
style={palInverted.text as FontAwesomeIconStyle}
|
|
size={14}
|
|
/>
|
|
</Button>
|
|
|
|
<Text type="xl-medium" style={[s.textCenter, pal.text, s.mt20]}>
|
|
<Trans>You can also discover new Custom Feeds to follow.</Trans>
|
|
</Text>
|
|
<Button
|
|
type="inverted"
|
|
style={[styles.emptyBtn, s.mt10]}
|
|
onPress={onPressDiscoverFeeds}>
|
|
<Text type="lg-medium" style={palInverted.text}>
|
|
<Trans>Discover new custom feeds</Trans>
|
|
</Text>
|
|
<FontAwesomeIcon
|
|
icon="angle-right"
|
|
style={palInverted.text as FontAwesomeIconStyle}
|
|
size={14}
|
|
/>
|
|
</Button>
|
|
</View>
|
|
</View>
|
|
)
|
|
}
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
height: '100%',
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
paddingVertical: 40,
|
|
paddingHorizontal: 30,
|
|
},
|
|
inner: {
|
|
width: '100%',
|
|
maxWidth: 460,
|
|
},
|
|
iconContainer: {
|
|
marginBottom: 16,
|
|
},
|
|
icon: {
|
|
marginLeft: 'auto',
|
|
marginRight: 'auto',
|
|
},
|
|
emptyBtn: {
|
|
marginVertical: 20,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
paddingVertical: 18,
|
|
paddingHorizontal: 24,
|
|
borderRadius: 30,
|
|
},
|
|
})
|