tooot/src/components/Timelines/Timeline.tsx

228 lines
6.2 KiB
TypeScript
Raw Normal View History

2021-01-04 18:29:02 +01:00
import ComponentSeparator from '@components/Separator'
2020-12-13 14:04:25 +01:00
import TimelineConversation from '@components/Timelines/Timeline/Conversation'
2021-01-04 18:29:02 +01:00
import TimelineDefault from '@components/Timelines/Timeline/Default'
2020-12-13 14:04:25 +01:00
import TimelineEmpty from '@components/Timelines/Timeline/Empty'
2021-01-04 18:29:02 +01:00
import TimelineEnd from '@root/components/Timelines/Timeline/End'
import TimelineNotifications from '@components/Timelines/Timeline/Notifications'
2020-12-13 23:02:54 +01:00
import { useScrollToTop } from '@react-navigation/native'
2021-01-04 18:29:02 +01:00
import { timelineFetch } from '@utils/fetches/timelineFetch'
import { updateNotification } from '@utils/slices/instancesSlice'
import { StyleConstants } from '@utils/styles/constants'
import React, { useCallback, useEffect, useMemo, useRef } from 'react'
import { RefreshControl, StyleSheet } from 'react-native'
2020-12-17 12:04:58 +01:00
import { FlatList } from 'react-native-gesture-handler'
2021-01-04 18:29:02 +01:00
import { InfiniteData, useInfiniteQuery } from 'react-query'
2020-12-29 01:09:22 +01:00
import { useDispatch } from 'react-redux'
2020-10-24 18:07:09 +02:00
2020-12-19 18:21:37 +01:00
export type TimelineData =
| InfiniteData<{
toots: Mastodon.Status[]
pointer?: number | undefined
pinnedLength?: number | undefined
}>
| undefined
export interface Props {
page: App.Pages
hashtag?: Mastodon.Tag['name']
list?: Mastodon.List['id']
toot?: Mastodon.Status['id']
account?: Mastodon.Account['id']
2020-10-31 21:04:46 +01:00
disableRefresh?: boolean
2021-01-01 16:48:16 +01:00
disableInfinity?: boolean
}
2020-10-23 09:22:17 +02:00
const Timeline: React.FC<Props> = ({
page,
hashtag,
list,
toot,
account,
2021-01-01 16:48:16 +01:00
disableRefresh = false,
disableInfinity = false
}) => {
2020-12-18 23:58:53 +01:00
const queryKey: QueryKey.Timeline = [
page,
{
...(hashtag && { hashtag }),
...(list && { list }),
...(toot && { toot }),
...(account && { account })
}
]
const {
2020-12-13 01:24:25 +01:00
status,
data,
2020-12-18 23:58:53 +01:00
refetch,
2020-12-21 22:08:29 +01:00
isSuccess,
2020-12-18 23:58:53 +01:00
hasPreviousPage,
fetchPreviousPage,
isFetchingPreviousPage,
hasNextPage,
2020-12-26 12:59:16 +01:00
fetchNextPage,
isFetchingNextPage
} = useInfiniteQuery(queryKey, timelineFetch, {
2020-12-21 13:56:04 +01:00
getPreviousPageParam: firstPage => {
return firstPage.toots.length
? {
direction: 'prev',
id: firstPage.toots[0].id
}
: undefined
2020-12-20 23:49:35 +01:00
},
2020-12-21 22:58:53 +01:00
getNextPageParam: lastPage => {
2020-12-21 13:56:04 +01:00
return lastPage.toots.length
2020-12-18 23:58:53 +01:00
? {
direction: 'next',
id: lastPage.toots[lastPage.toots.length - 1].id
}
: undefined
2020-12-21 13:56:04 +01:00
}
})
2020-12-18 23:58:53 +01:00
const flattenData = data?.pages ? data.pages.flatMap(d => [...d?.toots]) : []
const flattenPointer = data?.pages
? data.pages.flatMap(d => [d?.pointer])
: []
const flattenPinnedLength = data?.pages
? data.pages.flatMap(d => [d?.pinnedLength])
: []
2020-12-12 12:49:29 +01:00
2020-12-29 01:09:22 +01:00
// Clear unread notification badge
const dispatch = useDispatch()
useEffect(() => {
if (page === 'Notifications' && flattenData.length) {
dispatch(
updateNotification({
unread: false,
latestTime: flattenData[0].created_at
})
)
}
}, [flattenData])
2020-12-17 12:04:58 +01:00
const flRef = useRef<FlatList<any>>(null)
2020-12-12 12:49:29 +01:00
useEffect(() => {
2020-12-21 22:08:29 +01:00
if (toot && isSuccess) {
2020-12-12 12:49:29 +01:00
setTimeout(() => {
flRef.current?.scrollToIndex({
2020-12-14 23:44:57 +01:00
index: flattenPointer[0]!,
2020-12-12 12:49:29 +01:00
viewOffset: 100
})
}, 500)
}
2020-12-21 22:08:29 +01:00
}, [isSuccess])
2020-10-23 09:22:17 +02:00
2020-12-21 22:58:53 +01:00
const keyExtractor = useCallback(({ id }) => id, [])
const renderItem = useCallback(
2020-12-20 17:53:24 +01:00
({ item, index }) => {
switch (page) {
case 'Conversations':
2020-12-27 16:25:29 +01:00
return (
<TimelineConversation conversation={item} queryKey={queryKey} />
)
2020-12-20 17:53:24 +01:00
case 'Notifications':
return (
<TimelineNotifications notification={item} queryKey={queryKey} />
)
default:
return (
<TimelineDefault
item={item}
queryKey={queryKey}
index={index}
2021-01-04 18:29:02 +01:00
{...(queryKey[0] === 'RemotePublic' && {
disableDetails: true,
disableOnPress: true
})}
2020-12-20 17:53:24 +01:00
{...(flattenPinnedLength &&
flattenPinnedLength[0] && {
pinnedLength: flattenPinnedLength[0]
})}
{...(toot === item.id && { highlighted: true })}
2020-12-20 17:53:24 +01:00
/>
)
}
},
[flattenPinnedLength[0]]
)
2020-12-21 22:58:53 +01:00
const ItemSeparatorComponent = useCallback(
2020-12-12 22:19:18 +01:00
({ leadingItem }) => (
2021-01-04 18:29:02 +01:00
<ComponentSeparator
{...(toot === leadingItem.id
? { extraMarginLeft: 0 }
: {
extraMarginLeft:
StyleConstants.Avatar.M + StyleConstants.Spacing.S
})}
2020-12-12 22:19:18 +01:00
/>
),
[]
)
const flItemEmptyComponent = useMemo(
2020-12-13 01:24:25 +01:00
() => <TimelineEmpty status={status} refetch={refetch} />,
2020-12-18 23:58:53 +01:00
[status]
2020-12-12 22:19:18 +01:00
)
2020-12-26 12:59:16 +01:00
const onEndReached = useCallback(
2021-01-01 16:48:16 +01:00
() => !disableInfinity && !isFetchingNextPage && fetchNextPage(),
2020-12-26 12:59:16 +01:00
[isFetchingNextPage]
)
2020-12-21 22:58:53 +01:00
const ListFooterComponent = useCallback(
2021-01-01 16:48:16 +01:00
() => <TimelineEnd hasNextPage={!disableInfinity ? hasNextPage : false} />,
2020-12-19 01:57:57 +01:00
[hasNextPage]
)
2020-12-21 22:58:53 +01:00
const refreshControl = useMemo(
2020-12-20 23:49:35 +01:00
() => (
<RefreshControl
2020-12-21 22:58:53 +01:00
refreshing={isFetchingPreviousPage}
onRefresh={() => fetchPreviousPage()}
2020-12-20 23:49:35 +01:00
/>
),
2020-12-21 22:58:53 +01:00
[isFetchingPreviousPage]
2020-12-20 23:49:35 +01:00
)
2020-12-12 12:49:29 +01:00
const onScrollToIndexFailed = useCallback(error => {
const offset = error.averageItemLength * error.index
flRef.current?.scrollToOffset({ offset })
setTimeout(
() =>
flRef.current?.scrollToIndex({ index: error.index, viewOffset: 100 }),
350
2020-10-26 00:27:53 +01:00
)
2020-12-12 12:49:29 +01:00
}, [])
2020-10-23 09:22:17 +02:00
2020-12-13 23:02:54 +01:00
useScrollToTop(flRef)
2020-12-12 12:49:29 +01:00
return (
<FlatList
ref={flRef}
2020-12-20 23:49:35 +01:00
windowSize={11}
2020-12-12 12:49:29 +01:00
data={flattenData}
2020-12-20 23:49:35 +01:00
initialNumToRender={5}
maxToRenderPerBatch={5}
2020-12-12 12:49:29 +01:00
style={styles.flatList}
2020-12-21 22:58:53 +01:00
renderItem={renderItem}
onEndReached={onEndReached}
keyExtractor={keyExtractor}
onEndReachedThreshold={0.75}
ListFooterComponent={ListFooterComponent}
2020-12-12 22:19:18 +01:00
ListEmptyComponent={flItemEmptyComponent}
2020-12-21 22:58:53 +01:00
{...(!disableRefresh && { refreshControl })}
ItemSeparatorComponent={ItemSeparatorComponent}
2020-12-21 22:08:29 +01:00
{...(toot && isSuccess && { onScrollToIndexFailed })}
2021-01-01 16:48:16 +01:00
maintainVisibleContentPosition={{
minIndexForVisible: 0,
autoscrollToTopThreshold: 2
}}
2020-12-12 12:49:29 +01:00
/>
)
2020-10-23 09:22:17 +02:00
}
2020-11-28 17:07:30 +01:00
const styles = StyleSheet.create({
flatList: {
minHeight: '100%'
}
})
2021-01-01 16:48:16 +01:00
// Timeline.whyDidYouRender = true
2020-10-31 21:04:46 +01:00
export default Timeline