tooot/src/components/Timelines/Timeline/Notifications.tsx

132 lines
4.0 KiB
TypeScript
Raw Normal View History

2020-12-13 14:04:25 +01:00
import TimelineActioned from '@components/Timelines/Timeline/Shared/Actioned'
import TimelineActions from '@components/Timelines/Timeline/Shared/Actions'
import TimelineAttachment from '@components/Timelines/Timeline/Shared/Attachment'
import TimelineAvatar from '@components/Timelines/Timeline/Shared/Avatar'
import TimelineCard from '@components/Timelines/Timeline/Shared/Card'
import TimelineContent from '@components/Timelines/Timeline/Shared/Content'
import TimelineHeaderNotification from '@components/Timelines/Timeline/Shared/HeaderNotification'
import TimelinePoll from '@components/Timelines/Timeline/Shared/Poll'
2020-12-30 14:33:33 +01:00
import { useNavigation } from '@react-navigation/native'
2021-01-07 19:13:09 +01:00
import { QueryKeyTimeline } from '@utils/queryHooks/timeline'
import { getLocalAccount } from '@utils/slices/instancesSlice'
2020-12-13 14:04:25 +01:00
import { StyleConstants } from '@utils/styles/constants'
2020-12-30 14:33:33 +01:00
import React, { useCallback } from 'react'
import { Pressable, StyleSheet, View } from 'react-native'
2020-12-20 17:53:24 +01:00
import { useSelector } from 'react-redux'
export interface Props {
notification: Mastodon.Notification
2021-01-07 19:13:09 +01:00
queryKey: QueryKeyTimeline
2020-12-13 23:02:54 +01:00
highlighted?: boolean
}
2020-12-13 23:02:54 +01:00
const TimelineNotifications: React.FC<Props> = ({
notification,
queryKey,
highlighted = false
}) => {
2021-01-07 19:13:09 +01:00
const localAccount = useSelector(getLocalAccount)
const navigation = useNavigation()
const actualAccount = notification.status
? notification.status.account
: notification.account
2020-12-27 18:43:49 +01:00
const onPress = useCallback(
() =>
notification.status &&
2020-12-27 18:43:49 +01:00
navigation.push('Screen-Shared-Toot', {
2020-12-13 23:02:54 +01:00
toot: notification.status
}),
[]
)
2020-12-27 18:43:49 +01:00
return (
<Pressable style={styles.notificationView} onPress={onPress}>
<TimelineActioned
action={notification.type}
account={notification.account}
notification
/>
2020-12-30 11:52:47 +01:00
<View
style={{
opacity:
notification.type === 'follow' ||
notification.type === 'follow_request' ||
notification.type === 'mention' ||
notification.type === 'status'
2020-12-30 11:52:47 +01:00
? 1
: 0.5
}}
>
<View style={styles.header}>
<TimelineAvatar queryKey={queryKey} account={actualAccount} />
<TimelineHeaderNotification notification={notification} />
2020-12-13 23:02:54 +01:00
</View>
2020-12-30 11:52:47 +01:00
{notification.status ? (
<View
style={{
paddingTop: highlighted ? StyleConstants.Spacing.S : 0,
paddingLeft: highlighted
? 0
: StyleConstants.Avatar.M + StyleConstants.Spacing.S
}}
>
{notification.status.content.length > 0 && (
<TimelineContent
status={notification.status}
highlighted={highlighted}
/>
)}
{notification.status.poll && (
<TimelinePoll
queryKey={queryKey}
poll={notification.status.poll}
reblog={false}
2021-01-07 19:13:09 +01:00
sameAccount={notification.account.id === localAccount?.id}
2020-12-30 11:52:47 +01:00
/>
)}
{notification.status.media_attachments.length > 0 && (
2020-12-30 14:33:33 +01:00
<TimelineAttachment status={notification.status} />
2020-12-30 11:52:47 +01:00
)}
{notification.status.card && (
<TimelineCard card={notification.status.card} />
)}
</View>
) : null}
</View>
2020-12-13 23:02:54 +01:00
{notification.status && (
<View
style={{
paddingLeft: highlighted
? 0
2020-12-19 01:57:57 +01:00
: StyleConstants.Avatar.M + StyleConstants.Spacing.S
2020-12-13 23:02:54 +01:00
}}
>
2020-12-20 17:53:24 +01:00
<TimelineActions
queryKey={queryKey}
status={notification.status}
reblog={false}
/>
2020-12-13 23:02:54 +01:00
</View>
)}
2020-12-27 18:43:49 +01:00
</Pressable>
)
}
const styles = StyleSheet.create({
notificationView: {
2020-12-13 23:02:54 +01:00
padding: StyleConstants.Spacing.Global.PagePadding,
paddingBottom: StyleConstants.Spacing.M
},
2020-12-13 23:02:54 +01:00
header: {
flex: 1,
2020-12-13 23:02:54 +01:00
width: '100%',
flexDirection: 'row'
}
})
2020-11-23 00:07:32 +01:00
export default TimelineNotifications