tooot/src/components/Timeline.tsx

169 lines
4.5 KiB
TypeScript
Raw Normal View History

2021-01-04 18:29:02 +01:00
import ComponentSeparator from '@components/Separator'
2021-02-27 16:33:54 +01:00
import { useScrollToTop } from '@react-navigation/native'
2022-06-01 23:13:43 +02:00
import { QueryKeyTimeline, useTimelineQuery } from '@utils/queryHooks/timeline'
2022-05-12 00:04:30 +02:00
import { getInstanceActive } from '@utils/slices/instancesSlice'
2021-01-04 18:29:02 +01:00
import { StyleConstants } from '@utils/styles/constants'
2021-02-13 13:08:34 +01:00
import { useTheme } from '@utils/styles/ThemeManager'
2021-02-27 16:33:54 +01:00
import React, { RefObject, useCallback, useRef } from 'react'
2022-06-07 23:01:59 +02:00
import { FlatList, FlatListProps, Platform, RefreshControl } from 'react-native'
2022-06-01 23:13:43 +02:00
import Animated, {
useAnimatedScrollHandler,
useSharedValue
} from 'react-native-reanimated'
2022-04-30 23:47:52 +02:00
import { useSelector } from 'react-redux'
2021-01-24 02:25:43 +01:00
import TimelineEmpty from './Timeline/Empty'
2021-02-27 16:33:54 +01:00
import TimelineFooter from './Timeline/Footer'
2022-06-01 23:13:43 +02:00
import TimelineRefresh, {
SEPARATION_Y_1,
SEPARATION_Y_2
} from './Timeline/Refresh'
const AnimatedFlatList = Animated.createAnimatedComponent(FlatList)
2020-12-19 18:21:37 +01:00
export interface Props {
2021-02-27 16:33:54 +01:00
flRef?: RefObject<FlatList<any>>
queryKey: QueryKeyTimeline
2020-10-31 21:04:46 +01:00
disableRefresh?: boolean
2021-01-01 16:48:16 +01:00
disableInfinity?: boolean
2022-01-16 23:26:05 +01:00
lookback?: Extract<App.Pages, 'Following' | 'Local' | 'LocalPublic'>
2021-02-27 16:33:54 +01:00
customProps: Partial<FlatListProps<any>> &
Pick<FlatListProps<any>, 'renderItem'>
}
2020-10-23 09:22:17 +02:00
const Timeline: React.FC<Props> = ({
2021-02-27 16:33:54 +01:00
flRef: customFLRef,
queryKey,
2021-01-01 16:48:16 +01:00
disableRefresh = false,
2021-01-15 01:15:27 +01:00
disableInfinity = false,
customProps
}) => {
2022-02-12 14:51:01 +01:00
const { colors } = useTheme()
2021-02-13 13:08:34 +01:00
const {
data,
2020-12-18 23:58:53 +01:00
refetch,
2021-01-12 00:12:44 +01:00
isFetching,
2021-01-17 22:37:05 +01:00
isLoading,
2020-12-26 12:59:16 +01:00
fetchNextPage,
isFetchingNextPage
2021-01-11 21:36:57 +01:00
} = useTimelineQuery({
2021-02-27 16:33:54 +01:00
...queryKey[1],
2021-01-07 19:13:09 +01:00
options: {
2021-02-27 16:33:54 +01:00
notifyOnChangeProps: Platform.select({
2021-03-04 14:11:08 +01:00
ios: ['dataUpdatedAt', 'isFetching'],
android: ['dataUpdatedAt', 'isFetching', 'isLoading']
2021-02-27 16:33:54 +01:00
}),
2021-02-11 01:33:31 +01:00
getNextPageParam: lastPage =>
2021-03-06 17:55:13 +01:00
lastPage?.links?.next && {
max_id: lastPage.links.next
}
2020-12-21 13:56:04 +01:00
}
})
2021-01-07 19:13:09 +01:00
2021-03-06 17:55:13 +01:00
const flattenData = data?.pages
2022-01-31 00:31:57 +01:00
? data.pages?.flatMap(page => [...page.body])
2021-03-06 17:55:13 +01:00
: []
2020-12-12 12:49:29 +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]
)
2021-01-13 01:03:46 +01:00
2021-02-27 16:33:54 +01:00
const flRef = useRef<FlatList>(null)
2020-12-13 23:02:54 +01:00
2022-06-01 23:13:43 +02:00
const scrollY = useSharedValue(0)
const fetchingType = useSharedValue<0 | 1 | 2>(0)
const onScroll = useAnimatedScrollHandler(
{
onScroll: ({ contentOffset: { y } }) => {
scrollY.value = y
},
onEndDrag: ({ contentOffset: { y } }) => {
if (!disableRefresh && !isFetching) {
if (y <= SEPARATION_Y_2) {
fetchingType.value = 2
} else if (y <= SEPARATION_Y_1) {
fetchingType.value = 1
}
}
}
},
[isFetching]
)
2021-02-27 16:33:54 +01:00
const androidRefreshControl = Platform.select({
android: {
refreshControl: (
<RefreshControl
enabled
2022-02-12 14:51:01 +01:00
colors={[colors.primaryDefault]}
progressBackgroundColor={colors.backgroundDefault}
2021-02-27 16:33:54 +01:00
refreshing={isFetching || isLoading}
onRefresh={() => refetch()}
/>
)
}
})
2021-02-13 13:08:34 +01:00
2021-02-27 16:33:54 +01:00
useScrollToTop(flRef)
2022-01-30 22:51:03 +01:00
useSelector(getInstanceActive, (prev, next) => {
if (prev !== next) {
flRef.current?.scrollToOffset({ offset: 0, animated: false })
}
return prev === next
})
2020-12-12 12:49:29 +01:00
return (
2022-06-01 23:13:43 +02:00
<>
<TimelineRefresh
flRef={flRef}
queryKey={queryKey}
scrollY={scrollY}
fetchingType={fetchingType}
disableRefresh={disableRefresh}
/>
<AnimatedFlatList
ref={customFLRef || flRef}
scrollEventThrottle={16}
onScroll={onScroll}
windowSize={7}
data={flattenData}
initialNumToRender={6}
maxToRenderPerBatch={3}
onEndReached={onEndReached}
onEndReachedThreshold={0.75}
ListFooterComponent={
<TimelineFooter
queryKey={queryKey}
disableInfinity={disableInfinity}
/>
2021-02-27 16:33:54 +01:00
}
2022-06-01 23:13:43 +02:00
ListEmptyComponent={<TimelineEmpty queryKey={queryKey} />}
2022-08-07 01:18:10 +02:00
ItemSeparatorComponent={({ leadingItem }) =>
queryKey[1].page === 'Toot' && queryKey[1].toot === leadingItem.id ? (
<ComponentSeparator extraMarginLeft={0} />
) : (
<ComponentSeparator
extraMarginLeft={
StyleConstants.Avatar.M + StyleConstants.Spacing.S
}
/>
)
}
2022-06-07 23:01:59 +02:00
maintainVisibleContentPosition={
isFetching
? {
minIndexForVisible: 0
}
: undefined
}
2022-06-01 23:13:43 +02:00
{...androidRefreshControl}
{...customProps}
/>
</>
2020-12-12 12:49:29 +01:00
)
2020-10-23 09:22:17 +02:00
}
2020-10-31 21:04:46 +01:00
export default Timeline