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

136 lines
4.2 KiB
TypeScript
Raw Normal View History

import React, { useCallback, useMemo } from 'react'
import { Dimensions, Pressable, StyleSheet, View } from 'react-native'
import { useNavigation } from '@react-navigation/native'
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-13 14:04:25 +01:00
import { StyleConstants } from '@utils/styles/constants'
2020-12-20 17:53:24 +01:00
import { useSelector } from 'react-redux'
import { getLocalAccountId } from '@root/utils/slices/instancesSlice'
export interface Props {
notification: Mastodon.Notification
2020-12-18 23:58:53 +01:00
queryKey: QueryKey.Timeline
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
}) => {
2020-12-20 17:53:24 +01:00
const localAccountId = useSelector(getLocalAccountId)
const navigation = useNavigation()
const actualAccount = notification.status
? notification.status.account
: notification.account
2020-12-13 23:02:54 +01:00
const contentWidth = highlighted
? Dimensions.get('window').width -
StyleConstants.Spacing.Global.PagePadding * 2 // Global page padding on both sides
: Dimensions.get('window').width -
StyleConstants.Spacing.Global.PagePadding * 2 - // Global page padding on both sides
2020-12-19 01:57:57 +01:00
StyleConstants.Avatar.M - // Avatar width
2020-12-13 23:02:54 +01:00
StyleConstants.Spacing.S // Avatar margin to the right
const tootOnPress = useCallback(
() =>
navigation.navigate('Screen-Shared-Toot', {
2020-12-13 23:02:54 +01:00
toot: notification.status
}),
[]
)
const tootChildren = useMemo(
() =>
notification.status ? (
2020-12-13 23:02:54 +01:00
<View
style={{
paddingTop: highlighted ? StyleConstants.Spacing.S : 0,
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
}}
>
{notification.status.content.length > 0 && (
2020-12-13 23:02:54 +01:00
<TimelineContent
status={notification.status}
highlighted={highlighted}
/>
)}
{notification.status.poll && (
2020-12-20 17:53:24 +01:00
<TimelinePoll
queryKey={queryKey}
poll={notification.status.poll}
reblog={false}
sameAccount={notification.account.id === localAccountId}
/>
)}
{notification.status.media_attachments.length > 0 && (
<TimelineAttachment
status={notification.status}
2020-12-26 00:53:49 +01:00
contentWidth={contentWidth}
/>
)}
{notification.status.card && (
<TimelineCard card={notification.status.card} />
)}
2020-12-13 23:02:54 +01:00
</View>
) : null,
[notification.status?.poll?.voted]
)
return (
<View style={styles.notificationView}>
<TimelineActioned
action={notification.type}
account={notification.account}
notification
/>
2020-12-13 23:02:54 +01:00
<View style={styles.header}>
<TimelineAvatar queryKey={queryKey} account={actualAccount} />
2020-12-13 23:02:54 +01:00
<TimelineHeaderNotification notification={notification} />
</View>
2020-12-13 23:02:54 +01:00
<Pressable onPress={tootOnPress} children={tootChildren} />
{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}
sameAccountRoot={notification.account.id === localAccountId}
/>
2020-12-13 23:02:54 +01:00
</View>
)}
</View>
)
}
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