mirror of
https://github.com/tooot-app/app
synced 2025-04-03 21:21:01 +02:00
Use websocket to constantly fetch new notifications. Also use flatlist item view to clear notification.
This commit is contained in:
parent
01d4e6a5b9
commit
f5414412d4
@ -69,6 +69,7 @@
|
|||||||
"react-query": "^3.6.0",
|
"react-query": "^3.6.0",
|
||||||
"react-redux": "^7.2.2",
|
"react-redux": "^7.2.2",
|
||||||
"react-timeago": "^5.2.0",
|
"react-timeago": "^5.2.0",
|
||||||
|
"reconnecting-websocket": "^4.4.0",
|
||||||
"redux-persist": "^6.0.0",
|
"redux-persist": "^6.0.0",
|
||||||
"rn-placeholder": "^3.0.3",
|
"rn-placeholder": "^3.0.3",
|
||||||
"sentry-expo": "^3.0.4",
|
"sentry-expo": "^3.0.4",
|
||||||
|
1
src/@types/app.d.ts
vendored
1
src/@types/app.d.ts
vendored
@ -3,7 +3,6 @@ declare namespace App {
|
|||||||
| 'Following'
|
| 'Following'
|
||||||
| 'Local'
|
| 'Local'
|
||||||
| 'LocalPublic'
|
| 'LocalPublic'
|
||||||
| 'RemotePublic'
|
|
||||||
| 'Notifications'
|
| 'Notifications'
|
||||||
| 'Hashtag'
|
| 'Hashtag'
|
||||||
| 'List'
|
| 'List'
|
||||||
|
21
src/@types/mastodon.d.ts
vendored
21
src/@types/mastodon.d.ts
vendored
@ -421,4 +421,25 @@ declare namespace Mastodon {
|
|||||||
url: string
|
url: string
|
||||||
// history: types
|
// history: types
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type WebSocketStream =
|
||||||
|
| 'user'
|
||||||
|
| 'public'
|
||||||
|
| 'public:local'
|
||||||
|
| 'hashtag'
|
||||||
|
| 'hashtag:local'
|
||||||
|
| 'list'
|
||||||
|
| 'direct'
|
||||||
|
type WebSocket =
|
||||||
|
| {
|
||||||
|
stream: WebSocketStream[]
|
||||||
|
event: 'update'
|
||||||
|
payload: string // Status
|
||||||
|
}
|
||||||
|
| { stream: WebSocketStream[]; event: 'delete'; payload: Status['id'] }
|
||||||
|
| {
|
||||||
|
stream: WebSocketStream[]
|
||||||
|
event: 'notification'
|
||||||
|
payload: string // Notification
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { ActionSheetProvider } from '@expo/react-native-action-sheet'
|
import { ActionSheetProvider } from '@expo/react-native-action-sheet'
|
||||||
import i18n from '@root/i18n/i18n'
|
import i18n from '@root/i18n/i18n'
|
||||||
import Index from '@root/Screens'
|
import Screens from '@root/Screens'
|
||||||
import audio from '@root/startup/audio'
|
import audio from '@root/startup/audio'
|
||||||
import dev from '@root/startup/dev'
|
import dev from '@root/startup/dev'
|
||||||
import log from '@root/startup/log'
|
import log from '@root/startup/log'
|
||||||
@ -78,7 +78,7 @@ const App: React.FC = () => {
|
|||||||
return (
|
return (
|
||||||
<ActionSheetProvider>
|
<ActionSheetProvider>
|
||||||
<ThemeManager>
|
<ThemeManager>
|
||||||
<Index localCorrupt={localCorrupt} />
|
<Screens localCorrupt={localCorrupt} />
|
||||||
</ThemeManager>
|
</ThemeManager>
|
||||||
</ActionSheetProvider>
|
</ActionSheetProvider>
|
||||||
)
|
)
|
||||||
|
@ -17,10 +17,10 @@ import {
|
|||||||
import { useTheme } from '@utils/styles/ThemeManager'
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
import { themes } from '@utils/styles/themes'
|
import { themes } from '@utils/styles/themes'
|
||||||
import * as Analytics from 'expo-firebase-analytics'
|
import * as Analytics from 'expo-firebase-analytics'
|
||||||
import { addScreenshotListener } from 'expo-screen-capture'
|
// import { addScreenshotListener } from 'expo-screen-capture'
|
||||||
import React, { createRef, useCallback, useEffect, useRef } from 'react'
|
import React, { createRef, useCallback, useEffect, useRef } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { Alert, Platform, StatusBar } from 'react-native'
|
import { Platform, StatusBar } from 'react-native'
|
||||||
import Toast from 'react-native-toast-message'
|
import Toast from 'react-native-toast-message'
|
||||||
import { createSharedElementStackNavigator } from 'react-navigation-shared-element'
|
import { createSharedElementStackNavigator } from 'react-navigation-shared-element'
|
||||||
import { useDispatch, useSelector } from 'react-redux'
|
import { useDispatch, useSelector } from 'react-redux'
|
||||||
@ -33,7 +33,7 @@ export interface Props {
|
|||||||
|
|
||||||
export const navigationRef = createRef<NavigationContainerRef>()
|
export const navigationRef = createRef<NavigationContainerRef>()
|
||||||
|
|
||||||
const Index: React.FC<Props> = ({ localCorrupt }) => {
|
const Screens: React.FC<Props> = ({ localCorrupt }) => {
|
||||||
const { t } = useTranslation('common')
|
const { t } = useTranslation('common')
|
||||||
const dispatch = useDispatch()
|
const dispatch = useDispatch()
|
||||||
const localActiveIndex = useSelector(getLocalActiveIndex)
|
const localActiveIndex = useSelector(getLocalActiveIndex)
|
||||||
@ -59,15 +59,15 @@ const Index: React.FC<Props> = ({ localCorrupt }) => {
|
|||||||
// }, [isConnected, firstRender])
|
// }, [isConnected, firstRender])
|
||||||
|
|
||||||
// Prevent screenshot alert
|
// Prevent screenshot alert
|
||||||
useEffect(() => {
|
// useEffect(() => {
|
||||||
const screenshotListener = addScreenshotListener(() =>
|
// const screenshotListener = addScreenshotListener(() =>
|
||||||
Alert.alert(t('screenshot.title'), t('screenshot.message'), [
|
// Alert.alert(t('screenshot.title'), t('screenshot.message'), [
|
||||||
{ text: t('screenshot.button'), style: 'destructive' }
|
// { text: t('screenshot.button'), style: 'destructive' }
|
||||||
])
|
// ])
|
||||||
)
|
// )
|
||||||
Platform.OS === 'ios' && screenshotListener
|
// Platform.OS === 'ios' && screenshotListener
|
||||||
return () => screenshotListener.remove()
|
// return () => screenshotListener.remove()
|
||||||
}, [])
|
// }, [])
|
||||||
|
|
||||||
// On launch display login credentials corrupt information
|
// On launch display login credentials corrupt information
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -234,4 +234,4 @@ const Index: React.FC<Props> = ({ localCorrupt }) => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default React.memo(Index, () => true)
|
export default React.memo(Screens, () => true)
|
||||||
|
60
src/api/websocket.ts
Normal file
60
src/api/websocket.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { QueryKeyTimeline } from '@utils/queryHooks/timeline'
|
||||||
|
import {
|
||||||
|
getLocalInstance,
|
||||||
|
updateLocalNotification
|
||||||
|
} from '@utils/slices/instancesSlice'
|
||||||
|
import { useEffect, useRef } from 'react'
|
||||||
|
import { InfiniteData, useQueryClient } from 'react-query'
|
||||||
|
import { useDispatch, useSelector } from 'react-redux'
|
||||||
|
import ReconnectingWebSocket from 'reconnecting-websocket'
|
||||||
|
|
||||||
|
const useWebsocket = ({
|
||||||
|
stream,
|
||||||
|
event
|
||||||
|
}: {
|
||||||
|
stream: Mastodon.WebSocketStream
|
||||||
|
event: 'update' | 'delete' | 'notification'
|
||||||
|
}) => {
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const dispatch = useDispatch()
|
||||||
|
const localInstance = useSelector(getLocalInstance)
|
||||||
|
|
||||||
|
const rws = useRef<ReconnectingWebSocket>()
|
||||||
|
useEffect(() => {
|
||||||
|
if (!localInstance) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
rws.current = new ReconnectingWebSocket(
|
||||||
|
`${localInstance.urls.streaming_api}/api/v1/streaming?stream=${stream}&access_token=${localInstance.token}`
|
||||||
|
)
|
||||||
|
rws.current.addEventListener('message', ({ data }) => {
|
||||||
|
const message: Mastodon.WebSocket = JSON.parse(data)
|
||||||
|
if (message.event === event) {
|
||||||
|
switch (message.event) {
|
||||||
|
case 'notification':
|
||||||
|
const payload: Mastodon.Notification = JSON.parse(message.payload)
|
||||||
|
dispatch(
|
||||||
|
updateLocalNotification({ latestTime: payload.created_at })
|
||||||
|
)
|
||||||
|
const queryKey: QueryKeyTimeline = [
|
||||||
|
'Timeline',
|
||||||
|
{ page: 'Notifications' }
|
||||||
|
]
|
||||||
|
const queryData = queryClient.getQueryData(queryKey)
|
||||||
|
queryData !== undefined &&
|
||||||
|
queryClient.setQueryData<
|
||||||
|
InfiniteData<Mastodon.Notification[]> | undefined
|
||||||
|
>(queryKey, old => {
|
||||||
|
if (old) {
|
||||||
|
old.pages[0].unshift(payload)
|
||||||
|
return old
|
||||||
|
}
|
||||||
|
})
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}, [localInstance?.urls.streaming_api, localInstance?.token])
|
||||||
|
}
|
||||||
|
|
||||||
|
export default useWebsocket
|
@ -65,7 +65,7 @@ const InstanceAuth = React.memo(
|
|||||||
localAddInstance({
|
localAddInstance({
|
||||||
url: instanceDomain,
|
url: instanceDomain,
|
||||||
token: accessToken,
|
token: accessToken,
|
||||||
uri: instance.uri,
|
instance,
|
||||||
max_toot_chars: instance.max_toot_chars,
|
max_toot_chars: instance.max_toot_chars,
|
||||||
appData
|
appData
|
||||||
})
|
})
|
||||||
|
@ -15,6 +15,7 @@ const ComponentSeparator = React.memo(
|
|||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
|
backgroundColor: theme.background,
|
||||||
borderTopColor: theme.border,
|
borderTopColor: theme.border,
|
||||||
borderTopWidth: StyleSheet.hairlineWidth,
|
borderTopWidth: StyleSheet.hairlineWidth,
|
||||||
marginLeft:
|
marginLeft:
|
||||||
|
@ -1,104 +0,0 @@
|
|||||||
import { HeaderRight } from '@components/Header'
|
|
||||||
import Timeline from '@components/Timelines/Timeline'
|
|
||||||
import SegmentedControl from '@react-native-community/segmented-control'
|
|
||||||
import { useNavigation } from '@react-navigation/native'
|
|
||||||
import sharedScreens from '@screens/Tabs/Shared/sharedScreens'
|
|
||||||
import { getLocalActiveIndex } from '@utils/slices/instancesSlice'
|
|
||||||
import { useTheme } from '@utils/styles/ThemeManager'
|
|
||||||
import React, { useCallback, useMemo, useState } from 'react'
|
|
||||||
import { useTranslation } from 'react-i18next'
|
|
||||||
import { Dimensions, StyleSheet } from 'react-native'
|
|
||||||
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
|
||||||
import { TabView } from 'react-native-tab-view'
|
|
||||||
import ViewPagerAdapter from 'react-native-tab-view-viewpager-adapter'
|
|
||||||
import { useSelector } from 'react-redux'
|
|
||||||
import analytics from './analytics'
|
|
||||||
|
|
||||||
const Stack = createNativeStackNavigator<Nav.TabPublicStackParamList>()
|
|
||||||
|
|
||||||
const Timelines: React.FC = () => {
|
|
||||||
const { t, i18n } = useTranslation()
|
|
||||||
const pages: { title: string; page: App.Pages }[] = [
|
|
||||||
{ title: t('public:heading.segments.left'), page: 'LocalPublic' },
|
|
||||||
{ title: t('public:heading.segments.right'), page: 'Local' }
|
|
||||||
]
|
|
||||||
|
|
||||||
const navigation = useNavigation()
|
|
||||||
const localActiveIndex = useSelector(getLocalActiveIndex)
|
|
||||||
|
|
||||||
const onPressSearch = useCallback(() => {
|
|
||||||
analytics('search_tap', { page: pages[segment].page })
|
|
||||||
navigation.navigate('Tab-Public', { screen: 'Tab-Shared-Search' })
|
|
||||||
}, [])
|
|
||||||
|
|
||||||
const routes = pages.map(p => ({ key: p.page }))
|
|
||||||
|
|
||||||
const renderScene = useCallback(
|
|
||||||
({
|
|
||||||
route
|
|
||||||
}: {
|
|
||||||
route: {
|
|
||||||
key: App.Pages
|
|
||||||
}
|
|
||||||
}) => {
|
|
||||||
return localActiveIndex !== null && <Timeline page={route.key} />
|
|
||||||
},
|
|
||||||
[localActiveIndex]
|
|
||||||
)
|
|
||||||
|
|
||||||
const { mode } = useTheme()
|
|
||||||
const [segment, setSegment] = useState(0)
|
|
||||||
const screenOptions = useMemo(() => {
|
|
||||||
if (localActiveIndex !== null) {
|
|
||||||
return {
|
|
||||||
headerCenter: () => (
|
|
||||||
<SegmentedControl
|
|
||||||
appearance={mode}
|
|
||||||
values={pages.map(p => p.title)}
|
|
||||||
selectedIndex={segment}
|
|
||||||
onChange={({ nativeEvent }) =>
|
|
||||||
setSegment(nativeEvent.selectedSegmentIndex)
|
|
||||||
}
|
|
||||||
style={styles.segmentsContainer}
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
headerRight: () => (
|
|
||||||
<HeaderRight content='Search' onPress={onPressSearch} />
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [localActiveIndex, mode, segment, i18n.language])
|
|
||||||
|
|
||||||
const renderPager = useCallback(props => <ViewPagerAdapter {...props} />, [])
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Stack.Navigator
|
|
||||||
screenOptions={{ headerHideShadow: true, headerTopInsetEnabled: false }}
|
|
||||||
>
|
|
||||||
<Stack.Screen name='Screen-Remote-Root' options={screenOptions}>
|
|
||||||
{() => (
|
|
||||||
<TabView
|
|
||||||
lazy
|
|
||||||
swipeEnabled
|
|
||||||
renderPager={renderPager}
|
|
||||||
renderScene={renderScene}
|
|
||||||
renderTabBar={() => null}
|
|
||||||
onIndexChange={index => setSegment(index)}
|
|
||||||
navigationState={{ index: segment, routes }}
|
|
||||||
initialLayout={{ width: Dimensions.get('screen').width }}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</Stack.Screen>
|
|
||||||
|
|
||||||
{sharedScreens(Stack as any)}
|
|
||||||
</Stack.Navigator>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
|
||||||
segmentsContainer: {
|
|
||||||
flexBasis: '65%'
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
export default React.memo(Timelines, () => true)
|
|
@ -1,23 +1,23 @@
|
|||||||
import ComponentSeparator from '@components/Separator'
|
import ComponentSeparator from '@components/Separator'
|
||||||
import { useNavigation, useScrollToTop } from '@react-navigation/native'
|
import { useScrollToTop } from '@react-navigation/native'
|
||||||
import { QueryKeyTimeline, useTimelineQuery } from '@utils/queryHooks/timeline'
|
import { QueryKeyTimeline, useTimelineQuery } from '@utils/queryHooks/timeline'
|
||||||
import { updateLocalNotification } from '@utils/slices/instancesSlice'
|
|
||||||
import { StyleConstants } from '@utils/styles/constants'
|
import { StyleConstants } from '@utils/styles/constants'
|
||||||
import { findIndex } from 'lodash'
|
import { findIndex } from 'lodash'
|
||||||
import React, { useCallback, useEffect, useMemo, useRef } from 'react'
|
import React, { useCallback, useEffect, useMemo, useRef } from 'react'
|
||||||
import {
|
import { FlatListProps, StyleSheet } from 'react-native'
|
||||||
FlatListProps,
|
|
||||||
Platform,
|
|
||||||
RefreshControl,
|
|
||||||
StyleSheet
|
|
||||||
} from 'react-native'
|
|
||||||
import { FlatList } from 'react-native-gesture-handler'
|
import { FlatList } from 'react-native-gesture-handler'
|
||||||
import { useDispatch } from 'react-redux'
|
import Animated, {
|
||||||
|
useAnimatedStyle,
|
||||||
|
useSharedValue,
|
||||||
|
withTiming
|
||||||
|
} from 'react-native-reanimated'
|
||||||
|
import { InfiniteData, useQueryClient } from 'react-query'
|
||||||
import TimelineConversation from './Timeline/Conversation'
|
import TimelineConversation from './Timeline/Conversation'
|
||||||
import TimelineDefault from './Timeline/Default'
|
import TimelineDefault from './Timeline/Default'
|
||||||
import TimelineEmpty from './Timeline/Empty'
|
import TimelineEmpty from './Timeline/Empty'
|
||||||
import TimelineEnd from './Timeline/End'
|
import TimelineEnd from './Timeline/End'
|
||||||
import TimelineNotifications from './Timeline/Notifications'
|
import TimelineNotifications from './Timeline/Notifications'
|
||||||
|
import TimelineRefresh from './Timeline/Refresh'
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
page: App.Pages
|
page: App.Pages
|
||||||
@ -55,12 +55,25 @@ const Timeline: React.FC<Props> = ({
|
|||||||
isSuccess,
|
isSuccess,
|
||||||
isFetching,
|
isFetching,
|
||||||
isLoading,
|
isLoading,
|
||||||
|
hasPreviousPage,
|
||||||
|
fetchPreviousPage,
|
||||||
|
isFetchingPreviousPage,
|
||||||
hasNextPage,
|
hasNextPage,
|
||||||
fetchNextPage,
|
fetchNextPage,
|
||||||
isFetchingNextPage
|
isFetchingNextPage
|
||||||
} = useTimelineQuery({
|
} = useTimelineQuery({
|
||||||
...queryKeyParams,
|
...queryKeyParams,
|
||||||
options: {
|
options: {
|
||||||
|
getPreviousPageParam: firstPage => {
|
||||||
|
return Array.isArray(firstPage) && firstPage.length
|
||||||
|
? {
|
||||||
|
direction: 'prev',
|
||||||
|
id: firstPage[0].last_status
|
||||||
|
? firstPage[0].last_status.id
|
||||||
|
: firstPage[0].id
|
||||||
|
}
|
||||||
|
: undefined
|
||||||
|
},
|
||||||
getNextPageParam: lastPage => {
|
getNextPageParam: lastPage => {
|
||||||
return Array.isArray(lastPage) && lastPage.length
|
return Array.isArray(lastPage) && lastPage.length
|
||||||
? {
|
? {
|
||||||
@ -76,25 +89,6 @@ const Timeline: React.FC<Props> = ({
|
|||||||
|
|
||||||
const flattenData = data?.pages ? data.pages.flatMap(d => [...d]) : []
|
const flattenData = data?.pages ? data.pages.flatMap(d => [...d]) : []
|
||||||
|
|
||||||
// Clear unread notification badge
|
|
||||||
const dispatch = useDispatch()
|
|
||||||
const navigation = useNavigation()
|
|
||||||
useEffect(() => {
|
|
||||||
const unsubscribe = navigation.addListener('focus', props => {
|
|
||||||
if (props.target && props.target.includes('Tab-Notifications-Root')) {
|
|
||||||
if (flattenData.length) {
|
|
||||||
dispatch(
|
|
||||||
updateLocalNotification({
|
|
||||||
latestTime: (flattenData[0] as Mastodon.Notification).created_at
|
|
||||||
})
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
return unsubscribe
|
|
||||||
}, [navigation, flattenData])
|
|
||||||
|
|
||||||
const flRef = useRef<FlatList<any>>(null)
|
const flRef = useRef<FlatList<any>>(null)
|
||||||
const scrolled = useRef(false)
|
const scrolled = useRef(false)
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -122,10 +116,6 @@ const Timeline: React.FC<Props> = ({
|
|||||||
<TimelineDefault
|
<TimelineDefault
|
||||||
item={item}
|
item={item}
|
||||||
queryKey={queryKey}
|
queryKey={queryKey}
|
||||||
{...(queryKey[1].page === 'RemotePublic' && {
|
|
||||||
disableDetails: true,
|
|
||||||
disableOnPress: true
|
|
||||||
})}
|
|
||||||
{...(toot === item.id && { highlighted: true })}
|
{...(toot === item.id && { highlighted: true })}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
@ -152,40 +142,27 @@ const Timeline: React.FC<Props> = ({
|
|||||||
() => !disableInfinity && !isFetchingNextPage && fetchNextPage(),
|
() => !disableInfinity && !isFetchingNextPage && fetchNextPage(),
|
||||||
[isFetchingNextPage]
|
[isFetchingNextPage]
|
||||||
)
|
)
|
||||||
const ListFooterComponent = useCallback(
|
const prevId = useSharedValue(null)
|
||||||
|
const headerPadding = useAnimatedStyle(() => {
|
||||||
|
if (hasPreviousPage) {
|
||||||
|
if (isFetchingPreviousPage) {
|
||||||
|
return { paddingTop: withTiming(StyleConstants.Spacing.XL) }
|
||||||
|
} else {
|
||||||
|
return { paddingTop: withTiming(0) }
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return { paddingTop: withTiming(0) }
|
||||||
|
}
|
||||||
|
}, [hasPreviousPage, isFetchingPreviousPage])
|
||||||
|
const ListHeaderComponent = useMemo(
|
||||||
|
() => <Animated.View style={headerPadding} />,
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
const ListFooterComponent = useMemo(
|
||||||
() => <TimelineEnd hasNextPage={!disableInfinity ? hasNextPage : false} />,
|
() => <TimelineEnd hasNextPage={!disableInfinity ? hasNextPage : false} />,
|
||||||
[hasNextPage]
|
[hasNextPage]
|
||||||
)
|
)
|
||||||
|
|
||||||
const isSwipeDown = useRef(false)
|
|
||||||
const refreshControl = useMemo(
|
|
||||||
() => (
|
|
||||||
<RefreshControl
|
|
||||||
{...(Platform.OS === 'android' && { enabled: true })}
|
|
||||||
refreshing={
|
|
||||||
Platform.OS === 'android'
|
|
||||||
? (isSwipeDown.current && isFetching && !isFetchingNextPage) ||
|
|
||||||
isLoading
|
|
||||||
: isSwipeDown.current &&
|
|
||||||
isFetching &&
|
|
||||||
!isFetchingNextPage &&
|
|
||||||
!isLoading
|
|
||||||
}
|
|
||||||
onRefresh={() => {
|
|
||||||
isSwipeDown.current = true
|
|
||||||
refetch()
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
[isSwipeDown.current, isFetching, isFetchingNextPage, isLoading]
|
|
||||||
)
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!isFetching) {
|
|
||||||
isSwipeDown.current = false
|
|
||||||
}
|
|
||||||
}, [isFetching])
|
|
||||||
|
|
||||||
const onScrollToIndexFailed = useCallback(error => {
|
const onScrollToIndexFailed = useCallback(error => {
|
||||||
const offset = error.averageItemLength * error.index
|
const offset = error.averageItemLength * error.index
|
||||||
flRef.current?.scrollToOffset({ offset })
|
flRef.current?.scrollToOffset({ offset })
|
||||||
@ -197,30 +174,68 @@ const Timeline: React.FC<Props> = ({
|
|||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
useScrollToTop(flRef)
|
useScrollToTop(flRef)
|
||||||
|
const queryClient = useQueryClient()
|
||||||
|
const scrollY = useSharedValue(0)
|
||||||
|
const onScroll = useCallback(
|
||||||
|
({ nativeEvent }) => (scrollY.value = nativeEvent.contentOffset.y),
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
const onResponderRelease = useCallback(() => {
|
||||||
|
if (
|
||||||
|
scrollY.value <= -StyleConstants.Spacing.XL &&
|
||||||
|
!isFetchingPreviousPage &&
|
||||||
|
!disableRefresh
|
||||||
|
) {
|
||||||
|
queryClient.setQueryData<InfiniteData<any> | undefined>(
|
||||||
|
queryKey,
|
||||||
|
data => {
|
||||||
|
if (data?.pages[0].length === 0) {
|
||||||
|
if (data.pages[1]) {
|
||||||
|
prevId.value = data.pages[1][0].id
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
pages: data.pages.slice(1),
|
||||||
|
pageParams: data.pageParams.slice(1)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
prevId.value = data?.pages[0][0].id
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
// https://github.com/facebook/react-native/issues/25239#issuecomment-731100372
|
||||||
|
fetchPreviousPage()
|
||||||
|
flRef.current?.scrollToOffset({ animated: true, offset: 1 })
|
||||||
|
}
|
||||||
|
}, [scrollY.value, isFetchingPreviousPage, disableRefresh])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FlatList
|
<>
|
||||||
ref={flRef}
|
<TimelineRefresh isLoading={isLoading} disable={disableRefresh} />
|
||||||
windowSize={8}
|
<FlatList
|
||||||
data={flattenData}
|
onScroll={onScroll}
|
||||||
initialNumToRender={3}
|
onResponderRelease={onResponderRelease}
|
||||||
maxToRenderPerBatch={3}
|
ref={flRef}
|
||||||
style={styles.flatList}
|
windowSize={8}
|
||||||
renderItem={renderItem}
|
data={flattenData}
|
||||||
onEndReached={onEndReached}
|
initialNumToRender={3}
|
||||||
keyExtractor={keyExtractor}
|
maxToRenderPerBatch={3}
|
||||||
onEndReachedThreshold={0.75}
|
style={styles.flatList}
|
||||||
ListFooterComponent={ListFooterComponent}
|
renderItem={renderItem}
|
||||||
ListEmptyComponent={flItemEmptyComponent}
|
onEndReached={onEndReached}
|
||||||
{...(!disableRefresh && { refreshControl })}
|
keyExtractor={keyExtractor}
|
||||||
ItemSeparatorComponent={ItemSeparatorComponent}
|
onEndReachedThreshold={0.75}
|
||||||
{...(toot && isSuccess && { onScrollToIndexFailed })}
|
ListHeaderComponent={ListHeaderComponent}
|
||||||
maintainVisibleContentPosition={{
|
ListFooterComponent={ListFooterComponent}
|
||||||
minIndexForVisible: 0,
|
ListEmptyComponent={flItemEmptyComponent}
|
||||||
autoscrollToTopThreshold: 1
|
ItemSeparatorComponent={ItemSeparatorComponent}
|
||||||
}}
|
{...(toot && isSuccess && { onScrollToIndexFailed })}
|
||||||
{...customProps}
|
maintainVisibleContentPosition={{
|
||||||
/>
|
minIndexForVisible: 0
|
||||||
|
}}
|
||||||
|
{...customProps}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,6 +85,7 @@ const TimelineAttachment: React.FC<Props> = ({ status }) => {
|
|||||||
index={index}
|
index={index}
|
||||||
sensitiveShown={sensitiveShown}
|
sensitiveShown={sensitiveShown}
|
||||||
video={attachment}
|
video={attachment}
|
||||||
|
gifv
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
case 'audio':
|
case 'audio':
|
||||||
|
@ -12,13 +12,15 @@ export interface Props {
|
|||||||
index: number
|
index: number
|
||||||
sensitiveShown: boolean
|
sensitiveShown: boolean
|
||||||
video: Mastodon.AttachmentVideo | Mastodon.AttachmentGifv
|
video: Mastodon.AttachmentVideo | Mastodon.AttachmentGifv
|
||||||
|
gifv?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
const AttachmentVideo: React.FC<Props> = ({
|
const AttachmentVideo: React.FC<Props> = ({
|
||||||
total,
|
total,
|
||||||
index,
|
index,
|
||||||
sensitiveShown,
|
sensitiveShown,
|
||||||
video
|
video,
|
||||||
|
gifv = false
|
||||||
}) => {
|
}) => {
|
||||||
const videoPlayer = useRef<Video>(null)
|
const videoPlayer = useRef<Video>(null)
|
||||||
const [videoLoading, setVideoLoading] = useState(false)
|
const [videoLoading, setVideoLoading] = useState(false)
|
||||||
@ -92,7 +94,7 @@ const AttachmentVideo: React.FC<Props> = ({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
) : null
|
) : null
|
||||||
) : (
|
) : gifv ? null : (
|
||||||
<Button
|
<Button
|
||||||
round
|
round
|
||||||
overlay
|
overlay
|
||||||
|
@ -100,11 +100,8 @@ const ScreenImagesViewer = React.memo(
|
|||||||
useLayoutEffect(
|
useLayoutEffect(
|
||||||
() =>
|
() =>
|
||||||
navigation.setOptions({
|
navigation.setOptions({
|
||||||
headerTitle: () => (
|
headerTitle: `${currentIndex + 1} / ${imageUrls.length}`,
|
||||||
<HeaderCenter
|
headerTintColor: theme.primaryOverlay,
|
||||||
content={`${currentIndex + 1} / ${imageUrls.length}`}
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
headerRight: () => (
|
headerRight: () => (
|
||||||
<HeaderRight
|
<HeaderRight
|
||||||
content='MoreHorizontal'
|
content='MoreHorizontal'
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import useWebsocket from '@api/websocket'
|
||||||
import haptics from '@components/haptics'
|
import haptics from '@components/haptics'
|
||||||
import Icon from '@components/Icon'
|
import Icon from '@components/Icon'
|
||||||
import {
|
import {
|
||||||
@ -6,17 +7,17 @@ import {
|
|||||||
} from '@react-navigation/bottom-tabs'
|
} from '@react-navigation/bottom-tabs'
|
||||||
import { NavigatorScreenParams } from '@react-navigation/native'
|
import { NavigatorScreenParams } from '@react-navigation/native'
|
||||||
import { StackScreenProps } from '@react-navigation/stack'
|
import { StackScreenProps } from '@react-navigation/stack'
|
||||||
import { useTimelineQuery } from '@utils/queryHooks/timeline'
|
|
||||||
import {
|
import {
|
||||||
getLocalAccount,
|
getLocalAccount,
|
||||||
getLocalActiveIndex,
|
getLocalActiveIndex,
|
||||||
|
getLocalInstances,
|
||||||
getLocalNotification
|
getLocalNotification
|
||||||
} from '@utils/slices/instancesSlice'
|
} from '@utils/slices/instancesSlice'
|
||||||
import { useTheme } from '@utils/styles/ThemeManager'
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
import React, { useCallback, useMemo } from 'react'
|
import React, { useCallback, useEffect, useMemo } from 'react'
|
||||||
import { Platform } from 'react-native'
|
import { Platform } from 'react-native'
|
||||||
import FastImage from 'react-native-fast-image'
|
import FastImage from 'react-native-fast-image'
|
||||||
import { useDispatch, useSelector } from 'react-redux'
|
import { useSelector } from 'react-redux'
|
||||||
import TabLocal from './Tabs/Local'
|
import TabLocal from './Tabs/Local'
|
||||||
import TabMe from './Tabs/Me'
|
import TabMe from './Tabs/Me'
|
||||||
import TabNotifications from './Tabs/Notifications'
|
import TabNotifications from './Tabs/Notifications'
|
||||||
@ -39,7 +40,6 @@ const Tab = createBottomTabNavigator<Nav.ScreenTabsStackParamList>()
|
|||||||
|
|
||||||
const ScreenTabs: React.FC<ScreenTabsProp> = ({ navigation }) => {
|
const ScreenTabs: React.FC<ScreenTabsProp> = ({ navigation }) => {
|
||||||
const { theme } = useTheme()
|
const { theme } = useTheme()
|
||||||
const dispatch = useDispatch()
|
|
||||||
const localActiveIndex = useSelector(getLocalActiveIndex)
|
const localActiveIndex = useSelector(getLocalActiveIndex)
|
||||||
const localAccount = useSelector(getLocalAccount)
|
const localAccount = useSelector(getLocalAccount)
|
||||||
|
|
||||||
@ -134,53 +134,8 @@ const ScreenTabs: React.FC<ScreenTabsProp> = ({ navigation }) => {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// On launch check if there is any unread noficiations
|
// On launch check if there is any unread noficiations
|
||||||
const queryNotification = useTimelineQuery({
|
useWebsocket({ stream: 'user', event: 'notification' })
|
||||||
page: 'Notifications',
|
const localNotification = useSelector(getLocalNotification)
|
||||||
options: {
|
|
||||||
enabled: localActiveIndex !== null ? true : false,
|
|
||||||
refetchInterval: 1000 * 60,
|
|
||||||
refetchIntervalInBackground: true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const prevNotification = useSelector(getLocalNotification)
|
|
||||||
const notificationsOptions = useMemo(() => {
|
|
||||||
const badge = {
|
|
||||||
show: {
|
|
||||||
tabBarBadge: '',
|
|
||||||
tabBarBadgeStyle: {
|
|
||||||
transform: [{ scale: 0.5 }],
|
|
||||||
backgroundColor: theme.red
|
|
||||||
}
|
|
||||||
},
|
|
||||||
hide: {
|
|
||||||
tabBarBadgeStyle: {
|
|
||||||
transform: [{ scale: 0.5 }],
|
|
||||||
backgroundColor: theme.red
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const flattenData = queryNotification.data?.pages.flatMap(d => [...d])
|
|
||||||
const latestNotificationTime = flattenData?.length
|
|
||||||
? (flattenData[0] as Mastodon.Notification).created_at
|
|
||||||
: undefined
|
|
||||||
|
|
||||||
if (prevNotification?.latestTime) {
|
|
||||||
if (
|
|
||||||
latestNotificationTime &&
|
|
||||||
new Date(prevNotification.latestTime) < new Date(latestNotificationTime)
|
|
||||||
) {
|
|
||||||
return badge.show
|
|
||||||
} else {
|
|
||||||
return badge.hide
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (latestNotificationTime) {
|
|
||||||
return badge.show
|
|
||||||
} else {
|
|
||||||
return badge.hide
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [prevNotification, queryNotification.data?.pages])
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Tab.Navigator
|
<Tab.Navigator
|
||||||
@ -203,7 +158,19 @@ const ScreenTabs: React.FC<ScreenTabsProp> = ({ navigation }) => {
|
|||||||
name='Tab-Notifications'
|
name='Tab-Notifications'
|
||||||
component={TabNotifications}
|
component={TabNotifications}
|
||||||
listeners={notificationsListeners}
|
listeners={notificationsListeners}
|
||||||
options={notificationsOptions}
|
options={{
|
||||||
|
tabBarBadge: localNotification?.latestTime
|
||||||
|
? !localNotification.readTime ||
|
||||||
|
new Date(localNotification.readTime) <
|
||||||
|
new Date(localNotification.latestTime)
|
||||||
|
? ''
|
||||||
|
: undefined
|
||||||
|
: undefined,
|
||||||
|
tabBarBadgeStyle: {
|
||||||
|
transform: [{ scale: 0.5 }],
|
||||||
|
backgroundColor: theme.red
|
||||||
|
}
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<Tab.Screen name='Tab-Me' component={TabMe} />
|
<Tab.Screen name='Tab-Me' component={TabMe} />
|
||||||
</Tab.Navigator>
|
</Tab.Navigator>
|
||||||
|
@ -4,7 +4,7 @@ import Timeline from '@components/Timelines/Timeline'
|
|||||||
import { BottomTabScreenProps } from '@react-navigation/bottom-tabs'
|
import { BottomTabScreenProps } from '@react-navigation/bottom-tabs'
|
||||||
import { ScreenTabsParamList } from '@screens/Tabs'
|
import { ScreenTabsParamList } from '@screens/Tabs'
|
||||||
import { getLocalActiveIndex } from '@utils/slices/instancesSlice'
|
import { getLocalActiveIndex } from '@utils/slices/instancesSlice'
|
||||||
import React, { useCallback } from 'react'
|
import React, { useCallback, useMemo } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { Platform } from 'react-native'
|
import { Platform } from 'react-native'
|
||||||
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
||||||
@ -23,36 +23,43 @@ const TabLocal = React.memo(
|
|||||||
const { t } = useTranslation('local')
|
const { t } = useTranslation('local')
|
||||||
const localActiveIndex = useSelector(getLocalActiveIndex)
|
const localActiveIndex = useSelector(getLocalActiveIndex)
|
||||||
|
|
||||||
const onPressSearch = useCallback(() => {
|
const screenOptions = useMemo(
|
||||||
analytics('search_tap', { page: 'Local' })
|
() => ({
|
||||||
navigation.navigate('Tab-Local', { screen: 'Tab-Shared-Search' })
|
headerHideShadow: true,
|
||||||
}, [])
|
headerTopInsetEnabled: false
|
||||||
|
}),
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
const screenOptionsRoot = useMemo(
|
||||||
|
() => ({
|
||||||
|
headerTitle: t('heading'),
|
||||||
|
...(Platform.OS === 'android' && {
|
||||||
|
headerCenter: () => <HeaderCenter content={t('heading')} />
|
||||||
|
}),
|
||||||
|
headerRight: () => (
|
||||||
|
<HeaderRight
|
||||||
|
content='Search'
|
||||||
|
onPress={() => {
|
||||||
|
analytics('search_tap', { page: 'Local' })
|
||||||
|
navigation.navigate('Tab-Local', { screen: 'Tab-Shared-Search' })
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}),
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
const children = useCallback(
|
||||||
|
() => (localActiveIndex !== null ? <Timeline page='Following' /> : null),
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack.Navigator
|
<Stack.Navigator screenOptions={screenOptions}>
|
||||||
screenOptions={{
|
|
||||||
headerLeft: () => null,
|
|
||||||
headerTitle: t('heading'),
|
|
||||||
...(Platform.OS === 'android' && {
|
|
||||||
headerCenter: () => <HeaderCenter content={t('heading')} />
|
|
||||||
}),
|
|
||||||
headerHideShadow: true,
|
|
||||||
headerTopInsetEnabled: false
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Tab-Local-Root'
|
name='Tab-Local-Root'
|
||||||
options={{
|
options={screenOptionsRoot}
|
||||||
headerRight: () => (
|
children={children}
|
||||||
<HeaderRight content='Search' onPress={onPressSearch} />
|
/>
|
||||||
)
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{() =>
|
|
||||||
localActiveIndex !== null ? <Timeline page='Following' /> : null
|
|
||||||
}
|
|
||||||
</Stack.Screen>
|
|
||||||
|
|
||||||
{sharedScreens(Stack as any)}
|
{sharedScreens(Stack as any)}
|
||||||
</Stack.Navigator>
|
</Stack.Navigator>
|
||||||
)
|
)
|
||||||
|
@ -15,113 +15,120 @@ import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
|||||||
|
|
||||||
const Stack = createNativeStackNavigator<Nav.TabMeStackParamList>()
|
const Stack = createNativeStackNavigator<Nav.TabMeStackParamList>()
|
||||||
|
|
||||||
const TabMe: React.FC = () => {
|
const TabMe = React.memo(
|
||||||
const { t } = useTranslation()
|
() => {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack.Navigator
|
<Stack.Navigator
|
||||||
screenOptions={{ headerHideShadow: true, headerTopInsetEnabled: false }}
|
screenOptions={{ headerHideShadow: true, headerTopInsetEnabled: false }}
|
||||||
>
|
>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Tab-Me-Root'
|
name='Tab-Me-Root'
|
||||||
component={ScreenMeRoot}
|
component={ScreenMeRoot}
|
||||||
options={{
|
options={{
|
||||||
headerTranslucent: true,
|
headerTranslucent: true,
|
||||||
headerStyle: { backgroundColor: 'rgba(255, 255, 255, 0)' },
|
headerStyle: { backgroundColor: 'rgba(255, 255, 255, 0)' },
|
||||||
headerCenter: () => null
|
headerCenter: () => null
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Tab-Me-Bookmarks'
|
name='Tab-Me-Bookmarks'
|
||||||
component={ScreenMeBookmarks}
|
component={ScreenMeBookmarks}
|
||||||
options={({ navigation }: any) => ({
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meBookmarks:heading'),
|
headerTitle: t('meBookmarks:heading'),
|
||||||
...(Platform.OS === 'android' && {
|
...(Platform.OS === 'android' && {
|
||||||
headerCenter: () => (
|
headerCenter: () => (
|
||||||
<HeaderCenter content={t('meBookmarks:heading')} />
|
<HeaderCenter content={t('meBookmarks:heading')} />
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
})}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Tab-Me-Conversations'
|
name='Tab-Me-Conversations'
|
||||||
component={ScreenMeConversations}
|
component={ScreenMeConversations}
|
||||||
options={({ navigation }: any) => ({
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meConversations:heading'),
|
headerTitle: t('meConversations:heading'),
|
||||||
...(Platform.OS === 'android' && {
|
...(Platform.OS === 'android' && {
|
||||||
headerCenter: () => (
|
headerCenter: () => (
|
||||||
<HeaderCenter content={t('meConversations:heading')} />
|
<HeaderCenter content={t('meConversations:heading')} />
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
})}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Tab-Me-Favourites'
|
name='Tab-Me-Favourites'
|
||||||
component={ScreenMeFavourites}
|
component={ScreenMeFavourites}
|
||||||
options={({ navigation }: any) => ({
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meFavourites:heading'),
|
headerTitle: t('meFavourites:heading'),
|
||||||
...(Platform.OS === 'android' && {
|
...(Platform.OS === 'android' && {
|
||||||
headerCenter: () => (
|
headerCenter: () => (
|
||||||
<HeaderCenter content={t('meFavourites:heading')} />
|
<HeaderCenter content={t('meFavourites:heading')} />
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
})}
|
})}
|
||||||
/>
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name='Tab-Me-Lists'
|
name='Tab-Me-Lists'
|
||||||
component={ScreenMeLists}
|
component={ScreenMeLists}
|
||||||
options={({ navigation }: any) => ({
|
options={({ navigation }: any) => ({
|
||||||
headerTitle: t('meLists:heading'),
|
headerTitle: t('meLists:heading'),
|
||||||
...(Platform.OS === 'android' && {
|
...(Platform.OS === 'android' && {
|
||||||
headerCenter: () => <HeaderCenter content={t('meLists:heading')} />
|
headerCenter: () => (
|
||||||
}),
|
<HeaderCenter content={t('meLists:heading')} />
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
)
|
||||||
})}
|
}),
|
||||||
/>
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
<Stack.Screen
|
})}
|
||||||
name='Tab-Me-Lists-List'
|
/>
|
||||||
component={ScreenMeListsList}
|
<Stack.Screen
|
||||||
options={({ route, navigation }: any) => ({
|
name='Tab-Me-Lists-List'
|
||||||
headerTitle: t('meListsList:heading', { list: route.params.title }),
|
component={ScreenMeListsList}
|
||||||
...(Platform.OS === 'android' && {
|
options={({ route, navigation }: any) => ({
|
||||||
headerCenter: () => (
|
headerTitle: t('meListsList:heading', { list: route.params.title }),
|
||||||
<HeaderCenter
|
...(Platform.OS === 'android' && {
|
||||||
content={t('meListsList:heading', { list: route.params.title })}
|
headerCenter: () => (
|
||||||
/>
|
<HeaderCenter
|
||||||
)
|
content={t('meListsList:heading', {
|
||||||
}),
|
list: route.params.title
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
})}
|
||||||
})}
|
/>
|
||||||
/>
|
)
|
||||||
<Stack.Screen
|
}),
|
||||||
name='Tab-Me-Settings'
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
component={ScreenMeSettings}
|
})}
|
||||||
options={({ navigation }: any) => ({
|
/>
|
||||||
headerTitle: t('meSettings:heading'),
|
<Stack.Screen
|
||||||
...(Platform.OS === 'android' && {
|
name='Tab-Me-Settings'
|
||||||
headerCenter: () => (
|
component={ScreenMeSettings}
|
||||||
<HeaderCenter content={t('meSettings:heading')} />
|
options={({ navigation }: any) => ({
|
||||||
)
|
headerTitle: t('meSettings:heading'),
|
||||||
}),
|
...(Platform.OS === 'android' && {
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
headerCenter: () => (
|
||||||
})}
|
<HeaderCenter content={t('meSettings:heading')} />
|
||||||
/>
|
)
|
||||||
<Stack.Screen
|
}),
|
||||||
name='Tab-Me-Switch'
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
component={ScreenMeSwitch}
|
})}
|
||||||
options={({ navigation }: any) => ({
|
/>
|
||||||
stackPresentation: 'modal',
|
<Stack.Screen
|
||||||
headerShown: false,
|
name='Tab-Me-Switch'
|
||||||
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
component={ScreenMeSwitch}
|
||||||
})}
|
options={({ navigation }: any) => ({
|
||||||
/>
|
stackPresentation: 'modal',
|
||||||
|
headerShown: false,
|
||||||
|
headerLeft: () => <HeaderLeft onPress={() => navigation.pop(1)} />
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
|
||||||
{sharedScreens(Stack as any)}
|
{sharedScreens(Stack as any)}
|
||||||
</Stack.Navigator>
|
</Stack.Navigator>
|
||||||
)
|
)
|
||||||
}
|
},
|
||||||
|
() => true
|
||||||
|
)
|
||||||
|
|
||||||
export default TabMe
|
export default TabMe
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
import { HeaderCenter } from '@components/Header'
|
import { HeaderCenter } from '@components/Header'
|
||||||
import Timeline from '@components/Timelines/Timeline'
|
import Timeline from '@components/Timelines/Timeline'
|
||||||
import sharedScreens from '@screens/Tabs/Shared/sharedScreens'
|
import sharedScreens from '@screens/Tabs/Shared/sharedScreens'
|
||||||
import { getLocalActiveIndex } from '@utils/slices/instancesSlice'
|
import { updateLocalNotification } from '@utils/slices/instancesSlice'
|
||||||
import React from 'react'
|
import React, { useCallback, useMemo } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { Platform } from 'react-native'
|
import { Platform, ViewToken } from 'react-native'
|
||||||
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
||||||
import { useSelector } from 'react-redux'
|
import { useDispatch } from 'react-redux'
|
||||||
|
|
||||||
const Stack = createNativeStackNavigator<Nav.TabNotificationsStackParamList>()
|
const Stack = createNativeStackNavigator<Nav.TabNotificationsStackParamList>()
|
||||||
|
|
||||||
const TabNotifications: React.FC = () => {
|
const TabNotifications = React.memo(
|
||||||
const { t } = useTranslation()
|
() => {
|
||||||
const localActiveIndex = useSelector(getLocalActiveIndex)
|
const { t } = useTranslation()
|
||||||
|
const dispatch = useDispatch()
|
||||||
|
|
||||||
return (
|
const screenOptions = useMemo(
|
||||||
<Stack.Navigator
|
() => ({
|
||||||
screenOptions={{
|
|
||||||
headerLeft: () => null,
|
|
||||||
headerTitle: t('notifications:heading'),
|
headerTitle: t('notifications:heading'),
|
||||||
...(Platform.OS === 'android' && {
|
...(Platform.OS === 'android' && {
|
||||||
headerCenter: () => (
|
headerCenter: () => (
|
||||||
@ -26,17 +25,53 @@ const TabNotifications: React.FC = () => {
|
|||||||
}),
|
}),
|
||||||
headerHideShadow: true,
|
headerHideShadow: true,
|
||||||
headerTopInsetEnabled: false
|
headerTopInsetEnabled: false
|
||||||
}}
|
}),
|
||||||
>
|
[]
|
||||||
<Stack.Screen name='Tab-Notifications-Root'>
|
)
|
||||||
{() =>
|
const children = useCallback(
|
||||||
localActiveIndex !== null ? <Timeline page='Notifications' /> : null
|
({ navigation }) => (
|
||||||
}
|
<Timeline
|
||||||
</Stack.Screen>
|
page='Notifications'
|
||||||
|
customProps={{
|
||||||
|
viewabilityConfigCallbackPairs: [
|
||||||
|
{
|
||||||
|
onViewableItemsChanged: ({
|
||||||
|
viewableItems
|
||||||
|
}: {
|
||||||
|
viewableItems: ViewToken[]
|
||||||
|
}) => {
|
||||||
|
if (
|
||||||
|
navigation.isFocused() &&
|
||||||
|
viewableItems.length &&
|
||||||
|
viewableItems[0].index === 0
|
||||||
|
) {
|
||||||
|
dispatch(
|
||||||
|
updateLocalNotification({
|
||||||
|
readTime: viewableItems[0].item.created_at
|
||||||
|
})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
viewabilityConfig: {
|
||||||
|
minimumViewTime: 100,
|
||||||
|
itemVisiblePercentThreshold: 60
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
|
||||||
{sharedScreens(Stack as any)}
|
return (
|
||||||
</Stack.Navigator>
|
<Stack.Navigator screenOptions={screenOptions}>
|
||||||
)
|
<Stack.Screen name='Tab-Notifications-Root' children={children} />
|
||||||
}
|
{sharedScreens(Stack as any)}
|
||||||
|
</Stack.Navigator>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
() => true
|
||||||
|
)
|
||||||
|
|
||||||
export default TabNotifications
|
export default TabNotifications
|
||||||
|
@ -1,11 +1,117 @@
|
|||||||
import Timelines from '@components/Timelines'
|
import analytics from '@components/analytics'
|
||||||
import React from 'react'
|
import { HeaderRight } from '@components/Header'
|
||||||
|
import Timeline from '@components/Timelines/Timeline'
|
||||||
|
import SegmentedControl from '@react-native-community/segmented-control'
|
||||||
|
import { useNavigation } from '@react-navigation/native'
|
||||||
|
import sharedScreens from '@screens/Tabs/Shared/sharedScreens'
|
||||||
|
import { getLocalActiveIndex } from '@utils/slices/instancesSlice'
|
||||||
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
|
import React, { useCallback, useMemo, useState } from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import { Dimensions, StyleSheet } from 'react-native'
|
||||||
|
import { createNativeStackNavigator } from 'react-native-screens/native-stack'
|
||||||
|
import { TabView } from 'react-native-tab-view'
|
||||||
|
import ViewPagerAdapter from 'react-native-tab-view-viewpager-adapter'
|
||||||
|
import { useSelector } from 'react-redux'
|
||||||
|
|
||||||
|
const Stack = createNativeStackNavigator<Nav.TabPublicStackParamList>()
|
||||||
|
|
||||||
const TabPublic = React.memo(
|
const TabPublic = React.memo(
|
||||||
() => {
|
() => {
|
||||||
return <Timelines />
|
const { t, i18n } = useTranslation()
|
||||||
|
const { mode } = useTheme()
|
||||||
|
const navigation = useNavigation()
|
||||||
|
const localActiveIndex = useSelector(getLocalActiveIndex)
|
||||||
|
|
||||||
|
const [segment, setSegment] = useState(0)
|
||||||
|
const pages: { title: string; page: App.Pages }[] = [
|
||||||
|
{ title: t('public:heading.segments.left'), page: 'LocalPublic' },
|
||||||
|
{ title: t('public:heading.segments.right'), page: 'Local' }
|
||||||
|
]
|
||||||
|
const screenOptions = useMemo(
|
||||||
|
() => ({
|
||||||
|
headerHideShadow: true,
|
||||||
|
headerTopInsetEnabled: false
|
||||||
|
}),
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
const screenOptionsRoot = useMemo(
|
||||||
|
() => ({
|
||||||
|
headerCenter: () => (
|
||||||
|
<SegmentedControl
|
||||||
|
appearance={mode}
|
||||||
|
values={pages.map(p => p.title)}
|
||||||
|
selectedIndex={segment}
|
||||||
|
onChange={({ nativeEvent }) =>
|
||||||
|
setSegment(nativeEvent.selectedSegmentIndex)
|
||||||
|
}
|
||||||
|
style={styles.segmentsContainer}
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
headerRight: () => (
|
||||||
|
<HeaderRight
|
||||||
|
content='Search'
|
||||||
|
onPress={() => {
|
||||||
|
analytics('search_tap', { page: pages[segment].page })
|
||||||
|
navigation.navigate('Tab-Public', { screen: 'Tab-Shared-Search' })
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}),
|
||||||
|
[mode, segment, i18n.language]
|
||||||
|
)
|
||||||
|
|
||||||
|
const routes = pages.map(p => ({ key: p.page }))
|
||||||
|
const renderPager = useCallback(
|
||||||
|
props => <ViewPagerAdapter {...props} />,
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
const renderScene = useCallback(
|
||||||
|
({
|
||||||
|
route
|
||||||
|
}: {
|
||||||
|
route: {
|
||||||
|
key: App.Pages
|
||||||
|
}
|
||||||
|
}) => {
|
||||||
|
return localActiveIndex !== null && <Timeline page={route.key} />
|
||||||
|
},
|
||||||
|
[localActiveIndex]
|
||||||
|
)
|
||||||
|
const children = useCallback(
|
||||||
|
() => (
|
||||||
|
<TabView
|
||||||
|
lazy
|
||||||
|
swipeEnabled
|
||||||
|
renderPager={renderPager}
|
||||||
|
renderScene={renderScene}
|
||||||
|
renderTabBar={() => null}
|
||||||
|
onIndexChange={index => setSegment(index)}
|
||||||
|
navigationState={{ index: segment, routes }}
|
||||||
|
initialLayout={{ width: Dimensions.get('screen').width }}
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
[segment]
|
||||||
|
)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Stack.Navigator screenOptions={screenOptions}>
|
||||||
|
<Stack.Screen
|
||||||
|
name='Tab-Public-Root'
|
||||||
|
options={screenOptionsRoot}
|
||||||
|
children={children}
|
||||||
|
/>
|
||||||
|
{sharedScreens(Stack as any)}
|
||||||
|
</Stack.Navigator>
|
||||||
|
)
|
||||||
},
|
},
|
||||||
() => true
|
() => true
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
segmentsContainer: {
|
||||||
|
flexBasis: '65%'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
export default TabPublic
|
export default TabPublic
|
||||||
|
18
src/store.ts
18
src/store.ts
@ -33,12 +33,28 @@ const instancesMigration = {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
3: (state: InstancesState) => {
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
local: {
|
||||||
|
...state.local,
|
||||||
|
instances: state.local.instances.map(instance => {
|
||||||
|
if (!instance.urls) {
|
||||||
|
instance.urls = {
|
||||||
|
streaming_api: `wss://${instance.url}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return instance
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const instancesPersistConfig = {
|
const instancesPersistConfig = {
|
||||||
key: 'instances',
|
key: 'instances',
|
||||||
prefix,
|
prefix,
|
||||||
version: 2,
|
version: 3,
|
||||||
storage: secureStorage,
|
storage: secureStorage,
|
||||||
migrate: createMigrate(instancesMigration, { debug: true })
|
migrate: createMigrate(instancesMigration, { debug: true })
|
||||||
}
|
}
|
||||||
|
@ -80,14 +80,6 @@ const queryFunction = ({
|
|||||||
params
|
params
|
||||||
})
|
})
|
||||||
|
|
||||||
case 'RemotePublic':
|
|
||||||
return client<Mastodon.Status[]>({
|
|
||||||
method: 'get',
|
|
||||||
instance: 'remote',
|
|
||||||
url: 'timelines/public',
|
|
||||||
params
|
|
||||||
})
|
|
||||||
|
|
||||||
case 'Notifications':
|
case 'Notifications':
|
||||||
return client<Mastodon.Notification[]>({
|
return client<Mastodon.Notification[]>({
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
@ -15,6 +15,7 @@ export type InstanceLocal = {
|
|||||||
url: string
|
url: string
|
||||||
token: string
|
token: string
|
||||||
uri: Mastodon.Instance['uri']
|
uri: Mastodon.Instance['uri']
|
||||||
|
urls: Mastodon.Instance['urls']
|
||||||
max_toot_chars: number
|
max_toot_chars: number
|
||||||
account: {
|
account: {
|
||||||
id: Mastodon.Account['id']
|
id: Mastodon.Account['id']
|
||||||
@ -23,6 +24,7 @@ export type InstanceLocal = {
|
|||||||
preferences: Mastodon.Preferences
|
preferences: Mastodon.Preferences
|
||||||
}
|
}
|
||||||
notification: {
|
notification: {
|
||||||
|
readTime?: Mastodon.Notification['created_at']
|
||||||
latestTime?: Mastodon.Notification['created_at']
|
latestTime?: Mastodon.Notification['created_at']
|
||||||
}
|
}
|
||||||
drafts: ComposeStateDraft[]
|
drafts: ComposeStateDraft[]
|
||||||
@ -57,13 +59,13 @@ export const localAddInstance = createAsyncThunk(
|
|||||||
async ({
|
async ({
|
||||||
url,
|
url,
|
||||||
token,
|
token,
|
||||||
uri,
|
instance,
|
||||||
max_toot_chars = 500,
|
max_toot_chars = 500,
|
||||||
appData
|
appData
|
||||||
}: {
|
}: {
|
||||||
url: InstanceLocal['url']
|
url: InstanceLocal['url']
|
||||||
token: InstanceLocal['token']
|
token: InstanceLocal['token']
|
||||||
uri: Mastodon.Instance['uri']
|
instance: Mastodon.Instance
|
||||||
max_toot_chars?: number
|
max_toot_chars?: number
|
||||||
appData: InstanceLocal['appData']
|
appData: InstanceLocal['appData']
|
||||||
}): Promise<{ type: 'add' | 'overwrite'; data: InstanceLocal }> => {
|
}): Promise<{ type: 'add' | 'overwrite'; data: InstanceLocal }> => {
|
||||||
@ -112,7 +114,8 @@ export const localAddInstance = createAsyncThunk(
|
|||||||
appData,
|
appData,
|
||||||
url,
|
url,
|
||||||
token,
|
token,
|
||||||
uri,
|
uri: instance.uri,
|
||||||
|
urls: instance.urls,
|
||||||
max_toot_chars,
|
max_toot_chars,
|
||||||
account: {
|
account: {
|
||||||
id,
|
id,
|
||||||
@ -121,6 +124,7 @@ export const localAddInstance = createAsyncThunk(
|
|||||||
preferences
|
preferences
|
||||||
},
|
},
|
||||||
notification: {
|
notification: {
|
||||||
|
readTime: undefined,
|
||||||
latestTime: undefined
|
latestTime: undefined
|
||||||
},
|
},
|
||||||
drafts: []
|
drafts: []
|
||||||
@ -209,8 +213,10 @@ const instancesSlice = createSlice({
|
|||||||
action: PayloadAction<Partial<InstanceLocal['notification']>>
|
action: PayloadAction<Partial<InstanceLocal['notification']>>
|
||||||
) => {
|
) => {
|
||||||
if (state.local.activeIndex !== null) {
|
if (state.local.activeIndex !== null) {
|
||||||
state.local.instances[state.local.activeIndex].notification =
|
state.local.instances[state.local.activeIndex].notification = {
|
||||||
action.payload
|
...state.local.instances[state.local.activeIndex].notification,
|
||||||
|
...action.payload
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updateLocalDraft: (state, action: PayloadAction<ComposeStateDraft>) => {
|
updateLocalDraft: (state, action: PayloadAction<ComposeStateDraft>) => {
|
||||||
@ -297,6 +303,8 @@ export const getLocalActiveIndex = ({ instances: { local } }: RootState) =>
|
|||||||
local.activeIndex
|
local.activeIndex
|
||||||
export const getLocalInstances = ({ instances: { local } }: RootState) =>
|
export const getLocalInstances = ({ instances: { local } }: RootState) =>
|
||||||
local.instances
|
local.instances
|
||||||
|
export const getLocalInstance = ({ instances: { local } }: RootState) =>
|
||||||
|
local.activeIndex !== null ? local.instances[local.activeIndex] : undefined
|
||||||
export const getLocalUrl = ({ instances: { local } }: RootState) =>
|
export const getLocalUrl = ({ instances: { local } }: RootState) =>
|
||||||
local.activeIndex !== null
|
local.activeIndex !== null
|
||||||
? local.instances[local.activeIndex].url
|
? local.instances[local.activeIndex].url
|
||||||
@ -305,6 +313,10 @@ export const getLocalUri = ({ instances: { local } }: RootState) =>
|
|||||||
local.activeIndex !== null
|
local.activeIndex !== null
|
||||||
? local.instances[local.activeIndex].uri
|
? local.instances[local.activeIndex].uri
|
||||||
: undefined
|
: undefined
|
||||||
|
export const getLocalUrls = ({ instances: { local } }: RootState) =>
|
||||||
|
local.activeIndex !== null
|
||||||
|
? local.instances[local.activeIndex].urls
|
||||||
|
: undefined
|
||||||
export const getLocalMaxTootChar = ({ instances: { local } }: RootState) =>
|
export const getLocalMaxTootChar = ({ instances: { local } }: RootState) =>
|
||||||
local.activeIndex !== null
|
local.activeIndex !== null
|
||||||
? local.instances[local.activeIndex].max_toot_chars
|
? local.instances[local.activeIndex].max_toot_chars
|
||||||
|
@ -8857,6 +8857,11 @@ realpath-native@^2.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866"
|
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866"
|
||||||
integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==
|
integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==
|
||||||
|
|
||||||
|
reconnecting-websocket@^4.4.0:
|
||||||
|
version "4.4.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/reconnecting-websocket/-/reconnecting-websocket-4.4.0.tgz#3b0e5b96ef119e78a03135865b8bb0af1b948783"
|
||||||
|
integrity sha512-D2E33ceRPga0NvTDhJmphEgJ7FUYF0v4lr1ki0csq06OdlxKfugGzN0dSkxM/NfqCxYELK4KcaTOUOjTV6Dcng==
|
||||||
|
|
||||||
redent@^2.0.0:
|
redent@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
|
resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user