mirror of https://github.com/tooot-app/app
91 lines
2.6 KiB
TypeScript
91 lines
2.6 KiB
TypeScript
|
import analytics from '@components/analytics'
|
||
|
import { useNavigation } from '@react-navigation/native'
|
||
|
import { StackNavigationProp } from '@react-navigation/stack'
|
||
|
import { StyleConstants } from '@utils/styles/constants'
|
||
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||
|
import React from 'react'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
import { StyleSheet, Text, View } from 'react-native'
|
||
|
|
||
|
export interface Props {
|
||
|
status: Mastodon.Status
|
||
|
highlighted: boolean
|
||
|
}
|
||
|
|
||
|
const TimelineActionsUsers = React.memo(
|
||
|
({ status, highlighted }: Props) => {
|
||
|
if (!highlighted) {
|
||
|
return null
|
||
|
}
|
||
|
|
||
|
const { t } = useTranslation('componentTimeline')
|
||
|
const { theme } = useTheme()
|
||
|
const navigation = useNavigation<
|
||
|
StackNavigationProp<Nav.TabLocalStackParamList>
|
||
|
>()
|
||
|
|
||
|
return (
|
||
|
<View style={styles.base}>
|
||
|
{status.reblogs_count > 0 ? (
|
||
|
<Text
|
||
|
style={[styles.text, { color: theme.secondary }]}
|
||
|
onPress={() => {
|
||
|
analytics('timeline_shared_actionsusers_press_boosted', {
|
||
|
count: status.reblogs_count
|
||
|
})
|
||
|
navigation.push('Tab-Shared-Users', {
|
||
|
reference: 'statuses',
|
||
|
id: status.id,
|
||
|
type: 'reblogged_by',
|
||
|
count: status.reblogs_count
|
||
|
})
|
||
|
}}
|
||
|
>
|
||
|
{t('shared.actionsUsers.reblogged_by', {
|
||
|
count: status.reblogs_count
|
||
|
})}
|
||
|
</Text>
|
||
|
) : null}
|
||
|
{status.favourites_count > 0 ? (
|
||
|
<Text
|
||
|
style={[styles.text, { color: theme.secondary }]}
|
||
|
onPress={() => {
|
||
|
analytics('timeline_shared_actionsusers_press_boosted', {
|
||
|
count: status.favourites_count
|
||
|
})
|
||
|
navigation.push('Tab-Shared-Users', {
|
||
|
reference: 'statuses',
|
||
|
id: status.id,
|
||
|
type: 'favourited_by',
|
||
|
count: status.favourites_count
|
||
|
})
|
||
|
}}
|
||
|
>
|
||
|
{t('shared.actionsUsers.favourited_by', {
|
||
|
count: status.favourites_count
|
||
|
})}
|
||
|
</Text>
|
||
|
) : null}
|
||
|
</View>
|
||
|
)
|
||
|
},
|
||
|
(prev, next) =>
|
||
|
prev.status.reblogs_count === next.status.reblogs_count &&
|
||
|
prev.status.favourites_count === next.status.favourites_count
|
||
|
)
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
base: {
|
||
|
flexDirection: 'row'
|
||
|
},
|
||
|
pressable: { margin: StyleConstants.Spacing.M },
|
||
|
text: {
|
||
|
...StyleConstants.FontStyle.S,
|
||
|
padding: StyleConstants.Spacing.S * 1.5,
|
||
|
paddingLeft: 0,
|
||
|
marginRight: StyleConstants.Spacing.S
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export default TimelineActionsUsers
|