tooot/src/components/Timeline/Shared/Actioned.tsx

167 lines
4.5 KiB
TypeScript
Raw Normal View History

2021-01-24 02:25:43 +01:00
import analytics from '@components/analytics'
import Icon from '@components/Icon'
2021-01-01 23:10:47 +01:00
import { ParseEmojis } from '@components/Parse'
import { useNavigation } from '@react-navigation/native'
2021-01-24 02:25:43 +01:00
import { StackNavigationProp } from '@react-navigation/stack'
2020-12-13 14:04:25 +01:00
import { StyleConstants } from '@utils/styles/constants'
2021-01-01 23:10:47 +01:00
import { useTheme } from '@utils/styles/ThemeManager'
2021-01-01 16:48:16 +01:00
import React, { useCallback, useMemo } from 'react'
2021-01-01 23:10:47 +01:00
import { useTranslation } from 'react-i18next'
2021-01-01 16:48:16 +01:00
import { Pressable, StyleSheet, View } from 'react-native'
2020-10-30 00:49:05 +01:00
2020-10-31 21:04:46 +01:00
export interface Props {
2020-12-03 01:28:56 +01:00
account: Mastodon.Account
action: Mastodon.Notification['type'] | ('reblog' | 'pinned')
2020-10-31 21:04:46 +01:00
notification?: boolean
}
2020-12-03 01:28:56 +01:00
const TimelineActioned: React.FC<Props> = ({
account,
2020-10-30 00:49:05 +01:00
action,
notification = false
2020-10-31 21:04:46 +01:00
}) => {
2021-01-19 01:13:45 +01:00
const { t } = useTranslation('componentTimeline')
2020-11-23 00:07:32 +01:00
const { theme } = useTheme()
2021-01-24 02:25:43 +01:00
const navigation = useNavigation<
2021-01-30 01:29:15 +01:00
StackNavigationProp<Nav.TabLocalStackParamList>
2021-01-24 02:25:43 +01:00
>()
2020-12-03 01:28:56 +01:00
const name = account.display_name || account.username
2020-11-23 00:07:32 +01:00
const iconColor = theme.primary
2021-01-01 16:48:16 +01:00
const content = (content: string) => (
<ParseEmojis content={content} emojis={account.emojis} size='S' />
2020-10-30 00:49:05 +01:00
)
2021-01-01 16:48:16 +01:00
const onPress = useCallback(() => {
2021-01-24 02:25:43 +01:00
analytics('timeline_shared_actioned_press', { action })
2021-01-30 01:29:15 +01:00
navigation.push('Tab-Shared-Account', { account })
2021-01-01 16:48:16 +01:00
}, [])
const children = useMemo(() => {
switch (action) {
case 'pinned':
return (
<>
<Icon
name='Anchor'
2021-01-01 16:48:16 +01:00
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
2021-01-01 23:10:47 +01:00
{content(t('shared.actioned.pinned'))}
2021-01-01 16:48:16 +01:00
</>
)
break
case 'favourite':
return (
<>
<Icon
name='Heart'
2021-01-01 16:48:16 +01:00
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
<Pressable onPress={onPress}>
2021-01-01 23:10:47 +01:00
{content(t('shared.actioned.favourite', { name }))}
2021-01-01 16:48:16 +01:00
</Pressable>
</>
)
break
case 'follow':
return (
<>
<Icon
name='UserPlus'
2021-01-01 16:48:16 +01:00
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
<Pressable onPress={onPress}>
2021-01-01 23:10:47 +01:00
{content(t('shared.actioned.follow', { name }))}
2021-01-01 16:48:16 +01:00
</Pressable>
</>
)
break
case 'follow_request':
return (
<>
<Icon
name='UserPlus'
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
<Pressable onPress={onPress}>
{content(t('shared.actioned.follow_request', { name }))}
</Pressable>
</>
)
break
2021-01-01 16:48:16 +01:00
case 'poll':
return (
<>
<Icon
name='BarChart2'
2021-01-01 16:48:16 +01:00
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
2021-01-01 23:10:47 +01:00
{content(t('shared.actioned.poll'))}
2021-01-01 16:48:16 +01:00
</>
)
break
case 'reblog':
return (
<>
<Icon
name='Repeat'
2021-01-01 16:48:16 +01:00
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
<Pressable onPress={onPress}>
2021-01-01 23:10:47 +01:00
{content(
notification
? t('shared.actioned.reblog.notification', { name })
: t('shared.actioned.reblog.default', { name })
)}
2021-01-01 16:48:16 +01:00
</Pressable>
</>
)
break
case 'status':
return (
<>
<Icon
name='Activity'
size={StyleConstants.Font.Size.S}
color={iconColor}
style={styles.icon}
/>
<Pressable onPress={onPress}>
{content(t('shared.actioned.status', { name }))}
</Pressable>
</>
)
break
2021-01-01 16:48:16 +01:00
}
}, [])
return <View style={styles.actioned} children={children} />
2020-10-30 00:49:05 +01:00
}
const styles = StyleSheet.create({
actioned: {
flexDirection: 'row',
alignItems: 'center',
2021-01-01 16:48:16 +01:00
marginBottom: StyleConstants.Spacing.S,
paddingLeft: StyleConstants.Avatar.M - StyleConstants.Font.Size.S,
paddingRight: StyleConstants.Spacing.Global.PagePadding
2020-10-30 00:49:05 +01:00
},
icon: {
marginRight: StyleConstants.Spacing.S
2020-10-30 00:49:05 +01:00
}
})
2020-12-03 01:28:56 +01:00
export default React.memo(TimelineActioned, () => true)