1
0
mirror of https://github.com/tooot-app/app synced 2025-04-05 22:21:01 +02:00

Account page scrollable separately

This commit is contained in:
Zhiyuan Zheng 2020-12-21 22:08:29 +01:00
parent 33b0b6b8ff
commit 1ee7dd920d
No known key found for this signature in database
GPG Key ID: 078A93AB607D85E0
3 changed files with 21 additions and 16 deletions

View File

@ -50,6 +50,8 @@ const Timeline: React.FC<Props> = ({
status, status,
data, data,
refetch, refetch,
isFetching,
isSuccess,
hasPreviousPage, hasPreviousPage,
fetchPreviousPage, fetchPreviousPage,
isFetchingPreviousPage, isFetchingPreviousPage,
@ -84,7 +86,7 @@ const Timeline: React.FC<Props> = ({
const flRef = useRef<FlatList<any>>(null) const flRef = useRef<FlatList<any>>(null)
useEffect(() => { useEffect(() => {
if (toot && status === 'success') { if (toot && isSuccess) {
setTimeout(() => { setTimeout(() => {
flRef.current?.scrollToIndex({ flRef.current?.scrollToIndex({
index: flattenPointer[0]!, index: flattenPointer[0]!,
@ -92,7 +94,7 @@ const Timeline: React.FC<Props> = ({
}) })
}, 500) }, 500)
} }
}, [status]) }, [isSuccess])
const flKeyExtrator = useCallback(({ id }) => id, []) const flKeyExtrator = useCallback(({ id }) => id, [])
const flRenderItem = useCallback( const flRenderItem = useCallback(
@ -137,10 +139,10 @@ const Timeline: React.FC<Props> = ({
!disableRefresh && !disableRefresh &&
(hasPreviousPage (hasPreviousPage
? fetchPreviousPage() ? fetchPreviousPage()
: status !== 'loading' : !isFetching
? refetch() ? refetch()
: undefined) : undefined)
}, [hasPreviousPage, status]) }, [hasPreviousPage, isFetching])
const flOnEndReach = useCallback(() => !disableRefresh && fetchNextPage(), []) const flOnEndReach = useCallback(() => !disableRefresh && fetchNextPage(), [])
const flFooter = useCallback( const flFooter = useCallback(
() => (!disableRefresh ? <TimelineEnd hasNextPage={hasNextPage} /> : null), () => (!disableRefresh ? <TimelineEnd hasNextPage={hasNextPage} /> : null),
@ -149,14 +151,11 @@ const Timeline: React.FC<Props> = ({
const flRefreshControl = useMemo( const flRefreshControl = useMemo(
() => ( () => (
<RefreshControl <RefreshControl
refreshing={ refreshing={isFetchingPreviousPage || isFetching}
isFetchingPreviousPage ||
(!isFetchingNextPage && status === 'loading')
}
onRefresh={flOnRefresh} onRefresh={flOnRefresh}
/> />
), ),
[isFetchingPreviousPage, isFetchingNextPage, status] [isFetchingPreviousPage, isFetching]
) )
const onScrollToIndexFailed = useCallback(error => { const onScrollToIndexFailed = useCallback(error => {
const offset = error.averageItemLength * error.index const offset = error.averageItemLength * error.index
@ -186,7 +185,7 @@ const Timeline: React.FC<Props> = ({
ListEmptyComponent={flItemEmptyComponent} ListEmptyComponent={flItemEmptyComponent}
ItemSeparatorComponent={flItemSeparatorComponent} ItemSeparatorComponent={flItemSeparatorComponent}
onEndReachedThreshold={!disableRefresh ? 0.75 : null} onEndReachedThreshold={!disableRefresh ? 0.75 : null}
{...(toot && status === 'success' && { onScrollToIndexFailed })} {...(toot && isSuccess && { onScrollToIndexFailed })}
/> />
) )
} }

View File

@ -11,10 +11,7 @@ import AccountSegmentedControl from './Account/SegmentedControl'
import { HeaderRight } from '@root/components/Header' import { HeaderRight } from '@root/components/Header'
import BottomSheet from '@root/components/BottomSheet' import BottomSheet from '@root/components/BottomSheet'
import { useSelector } from 'react-redux' import { useSelector } from 'react-redux'
import { import { getLocalAccountId } from '@root/utils/slices/instancesSlice'
getLocalAccountId,
getLocalUrl
} from '@root/utils/slices/instancesSlice'
import HeaderDefaultActionsAccount from '@root/components/Timelines/Timeline/Shared/HeaderDefault/ActionsAccount' import HeaderDefaultActionsAccount from '@root/components/Timelines/Timeline/Shared/HeaderDefault/ActionsAccount'
// Moved account example: https://m.cmx.im/web/accounts/27812 // Moved account example: https://m.cmx.im/web/accounts/27812
@ -77,7 +74,6 @@ const ScreenSharedAccount: React.FC<Props> = ({
navigation navigation
}) => { }) => {
const localAccountId = useSelector(getLocalAccountId) const localAccountId = useSelector(getLocalAccountId)
const localDomain = useSelector(getLocalUrl)
const { data } = useQuery(['Account', { id: account.id }], accountFetch) const { data } = useQuery(['Account', { id: account.id }], accountFetch)
// const stateRelationships = useSelector(relationshipsState) // const stateRelationships = useSelector(relationshipsState)

View File

@ -5,6 +5,8 @@ import { TabView } from 'react-native-tab-view'
import Timeline from '@components/Timelines/Timeline' import Timeline from '@components/Timelines/Timeline'
import { AccountAction, AccountState } from '../Account' import { AccountAction, AccountState } from '../Account'
import { StyleConstants } from '@root/utils/styles/constants' import { StyleConstants } from '@root/utils/styles/constants'
import { useSafeAreaInsets } from 'react-native-safe-area-context'
import { useBottomTabBarHeight } from '@react-navigation/bottom-tabs'
export interface Props { export interface Props {
accountState: AccountState accountState: AccountState
@ -35,12 +37,20 @@ const AccountToots: React.FC<Props> = ({
}, },
[] []
) )
const headerHeight = useSafeAreaInsets().top + 44
const footerHeight = useSafeAreaInsets().bottom + useBottomTabBarHeight()
return ( return (
<TabView <TabView
lazy lazy
swipeEnabled swipeEnabled
style={styles.base} style={[
styles.base,
{
height:
Dimensions.get('window').height - headerHeight - footerHeight - 33
}
]}
renderScene={renderScene} renderScene={renderScene}
renderTabBar={() => null} renderTabBar={() => null}
initialLayout={{ width: Dimensions.get('window').width }} initialLayout={{ width: Dimensions.get('window').width }}