2021-01-24 02:25:43 +01:00
|
|
|
import analytics from '@components/analytics'
|
2021-02-08 23:47:20 +01:00
|
|
|
import TimelineActioned from '@components/Timeline/Shared/Actioned'
|
|
|
|
import TimelineActions from '@components/Timeline/Shared/Actions'
|
|
|
|
import TimelineAttachment from '@components/Timeline/Shared/Attachment'
|
|
|
|
import TimelineAvatar from '@components/Timeline/Shared/Avatar'
|
|
|
|
import TimelineCard from '@components/Timeline/Shared/Card'
|
|
|
|
import TimelineContent from '@components/Timeline/Shared/Content'
|
|
|
|
import TimelineHeaderNotification from '@components/Timeline/Shared/HeaderNotification'
|
|
|
|
import TimelinePoll from '@components/Timeline/Shared/Poll'
|
2020-12-30 14:33:33 +01:00
|
|
|
import { useNavigation } from '@react-navigation/native'
|
2021-01-24 02:25:43 +01:00
|
|
|
import { StackNavigationProp } from '@react-navigation/stack'
|
2022-04-29 23:57:18 +02:00
|
|
|
import { TabLocalStackParamList } from '@utils/navigation/navigators'
|
2021-01-07 19:13:09 +01:00
|
|
|
import { QueryKeyTimeline } from '@utils/queryHooks/timeline'
|
2021-02-20 19:12:44 +01:00
|
|
|
import { getInstanceAccount } from '@utils/slices/instancesSlice'
|
2020-12-13 14:04:25 +01:00
|
|
|
import { StyleConstants } from '@utils/styles/constants'
|
2021-02-08 23:47:20 +01:00
|
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
2022-04-30 21:59:13 +02:00
|
|
|
import { isEqual, uniqBy } from 'lodash'
|
2020-12-30 14:33:33 +01:00
|
|
|
import React, { useCallback } from 'react'
|
2022-04-30 21:59:13 +02:00
|
|
|
import { Pressable, View } from 'react-native'
|
2020-12-20 17:53:24 +01:00
|
|
|
import { useSelector } from 'react-redux'
|
2022-06-07 20:07:14 +02:00
|
|
|
import TimelineContextMenu from './Shared/ContextMenu'
|
2021-05-30 23:39:07 +02:00
|
|
|
import TimelineFiltered, { shouldFilter } from './Shared/Filtered'
|
2021-03-14 01:35:38 +01:00
|
|
|
import TimelineFullConversation from './Shared/FullConversation'
|
2020-11-04 22:26:38 +01:00
|
|
|
|
|
|
|
export interface Props {
|
2020-11-21 00:40:55 +01:00
|
|
|
notification: Mastodon.Notification
|
2021-01-07 19:13:09 +01:00
|
|
|
queryKey: QueryKeyTimeline
|
2020-12-13 23:02:54 +01:00
|
|
|
highlighted?: boolean
|
2020-11-04 22:26:38 +01:00
|
|
|
}
|
|
|
|
|
2022-04-30 21:59:13 +02:00
|
|
|
const TimelineNotifications = React.memo(
|
|
|
|
({ notification, queryKey, highlighted = false }: Props) => {
|
|
|
|
if (
|
|
|
|
notification.status &&
|
|
|
|
shouldFilter({ status: notification.status, queryKey })
|
|
|
|
) {
|
|
|
|
return <TimelineFiltered />
|
|
|
|
}
|
2021-05-30 23:39:07 +02:00
|
|
|
|
2022-04-30 21:59:13 +02:00
|
|
|
const { colors } = useTheme()
|
|
|
|
const instanceAccount = useSelector(
|
|
|
|
getInstanceAccount,
|
|
|
|
(prev, next) => prev?.id === next?.id
|
|
|
|
)
|
|
|
|
const navigation =
|
|
|
|
useNavigation<StackNavigationProp<TabLocalStackParamList>>()
|
2021-05-30 23:39:07 +02:00
|
|
|
|
2022-04-30 21:59:13 +02:00
|
|
|
const actualAccount = notification.status
|
|
|
|
? notification.status.account
|
|
|
|
: notification.account
|
2020-11-04 22:26:38 +01:00
|
|
|
|
2022-04-30 21:59:13 +02:00
|
|
|
const onPress = useCallback(() => {
|
|
|
|
analytics('timeline_notification_press')
|
|
|
|
notification.status &&
|
|
|
|
navigation.push('Tab-Shared-Toot', {
|
|
|
|
toot: notification.status,
|
|
|
|
rootQueryKey: queryKey
|
|
|
|
})
|
|
|
|
}, [])
|
2020-12-27 18:43:49 +01:00
|
|
|
|
2022-04-30 21:59:13 +02:00
|
|
|
return (
|
2022-06-16 23:34:06 +02:00
|
|
|
<TimelineContextMenu
|
|
|
|
status={notification.status}
|
|
|
|
queryKey={queryKey}
|
|
|
|
disabled={highlighted}
|
|
|
|
>
|
2022-06-07 20:07:14 +02:00
|
|
|
<Pressable
|
2022-04-30 21:59:13 +02:00
|
|
|
style={{
|
2022-06-07 20:07:14 +02:00
|
|
|
padding: StyleConstants.Spacing.Global.PagePadding,
|
|
|
|
backgroundColor: colors.backgroundDefault,
|
|
|
|
paddingBottom: notification.status
|
|
|
|
? 0
|
|
|
|
: StyleConstants.Spacing.Global.PagePadding
|
2022-04-30 21:59:13 +02:00
|
|
|
}}
|
2022-06-07 20:07:14 +02:00
|
|
|
onPress={onPress}
|
|
|
|
onLongPress={() => {}}
|
2022-04-30 21:59:13 +02:00
|
|
|
>
|
2022-06-07 20:07:14 +02:00
|
|
|
{notification.type !== 'mention' ? (
|
|
|
|
<TimelineActioned
|
|
|
|
action={notification.type}
|
|
|
|
account={notification.account}
|
|
|
|
notification
|
2022-04-30 21:59:13 +02:00
|
|
|
/>
|
2022-06-07 20:07:14 +02:00
|
|
|
) : null}
|
2020-12-13 23:02:54 +01:00
|
|
|
|
2022-06-07 20:07:14 +02:00
|
|
|
<View
|
|
|
|
style={{
|
|
|
|
opacity:
|
|
|
|
notification.type === 'follow' ||
|
|
|
|
notification.type === 'follow_request' ||
|
|
|
|
notification.type === 'mention' ||
|
|
|
|
notification.type === 'status'
|
|
|
|
? 1
|
|
|
|
: 0.5
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<View style={{ flex: 1, width: '100%', flexDirection: 'row' }}>
|
|
|
|
<TimelineAvatar
|
2022-04-30 21:59:13 +02:00
|
|
|
queryKey={queryKey}
|
2022-06-07 20:07:14 +02:00
|
|
|
account={actualAccount}
|
|
|
|
highlighted={highlighted}
|
2022-04-30 21:59:13 +02:00
|
|
|
/>
|
2022-06-07 20:07:14 +02:00
|
|
|
<TimelineHeaderNotification notification={notification} />
|
2022-04-30 21:59:13 +02:00
|
|
|
</View>
|
2020-11-04 22:26:38 +01:00
|
|
|
|
2022-06-07 20:07:14 +02: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}
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
{notification.status.poll ? (
|
|
|
|
<TimelinePoll
|
|
|
|
queryKey={queryKey}
|
|
|
|
statusId={notification.status.id}
|
|
|
|
poll={notification.status.poll}
|
|
|
|
reblog={false}
|
|
|
|
sameAccount={
|
|
|
|
notification.account.id === instanceAccount?.id
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
{notification.status.media_attachments.length > 0 ? (
|
|
|
|
<TimelineAttachment status={notification.status} />
|
|
|
|
) : null}
|
|
|
|
{notification.status.card ? (
|
|
|
|
<TimelineCard card={notification.status.card} />
|
|
|
|
) : null}
|
|
|
|
<TimelineFullConversation
|
|
|
|
queryKey={queryKey}
|
|
|
|
status={notification.status}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
) : null}
|
|
|
|
</View>
|
|
|
|
|
|
|
|
{notification.status ? (
|
|
|
|
<TimelineActions
|
|
|
|
queryKey={queryKey}
|
|
|
|
status={notification.status}
|
|
|
|
highlighted={highlighted}
|
|
|
|
accts={uniqBy(
|
|
|
|
(
|
|
|
|
[notification.status.account] as Mastodon.Account[] &
|
|
|
|
Mastodon.Mention[]
|
|
|
|
)
|
|
|
|
.concat(notification.status.mentions)
|
|
|
|
.filter(d => d?.id !== instanceAccount?.id),
|
|
|
|
d => d?.id
|
|
|
|
).map(d => d?.acct)}
|
|
|
|
reblog={false}
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
</Pressable>
|
|
|
|
</TimelineContextMenu>
|
2022-04-30 21:59:13 +02:00
|
|
|
)
|
2020-11-04 22:26:38 +01:00
|
|
|
},
|
2022-04-30 21:59:13 +02:00
|
|
|
(prev, next) => isEqual(prev.notification, next.notification)
|
|
|
|
)
|
2020-11-04 22:26:38 +01:00
|
|
|
|
2020-11-23 00:07:32 +01:00
|
|
|
export default TimelineNotifications
|