90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import 'react-native-url-polyfill/auto'
|
|
import 'lib/sentry' // must be near top
|
|
|
|
import React, {useState, useEffect} from 'react'
|
|
import {RootSiblingParent} from 'react-native-root-siblings'
|
|
import * as SplashScreen from 'expo-splash-screen'
|
|
import {GestureHandlerRootView} from 'react-native-gesture-handler'
|
|
import {observer} from 'mobx-react-lite'
|
|
import {QueryClientProvider} from '@tanstack/react-query'
|
|
|
|
import 'view/icons'
|
|
|
|
import {init as initPersistedState} from '#/state/persisted'
|
|
import {useColorMode} from 'state/shell'
|
|
import {ThemeProvider} from 'lib/ThemeContext'
|
|
import {s} from 'lib/styles'
|
|
import {RootStoreModel, setupState, RootStoreProvider} from './state'
|
|
import {Shell} from 'view/shell'
|
|
import * as notifications from 'lib/notifications/notifications'
|
|
import * as analytics from 'lib/analytics/analytics'
|
|
import * as Toast from 'view/com/util/Toast'
|
|
import {queryClient} from 'lib/react-query'
|
|
import {TestCtrls} from 'view/com/testing/TestCtrls'
|
|
import {Provider as ShellStateProvider} from 'state/shell'
|
|
import {Provider as MutedThreadsProvider} from 'state/muted-threads'
|
|
|
|
SplashScreen.preventAutoHideAsync()
|
|
|
|
const InnerApp = observer(function AppImpl() {
|
|
const colorMode = useColorMode()
|
|
const [rootStore, setRootStore] = useState<RootStoreModel | undefined>(
|
|
undefined,
|
|
)
|
|
|
|
// init
|
|
useEffect(() => {
|
|
setupState().then(store => {
|
|
setRootStore(store)
|
|
analytics.init(store)
|
|
notifications.init(store)
|
|
store.onSessionDropped(() => {
|
|
Toast.show('Sorry! Your session expired. Please log in again.')
|
|
})
|
|
})
|
|
}, [])
|
|
|
|
// show nothing prior to init
|
|
if (!rootStore) {
|
|
return null
|
|
}
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
<ThemeProvider theme={colorMode}>
|
|
<RootSiblingParent>
|
|
<analytics.Provider>
|
|
<RootStoreProvider value={rootStore}>
|
|
<GestureHandlerRootView style={s.h100pct}>
|
|
<TestCtrls />
|
|
<Shell />
|
|
</GestureHandlerRootView>
|
|
</RootStoreProvider>
|
|
</analytics.Provider>
|
|
</RootSiblingParent>
|
|
</ThemeProvider>
|
|
</QueryClientProvider>
|
|
)
|
|
})
|
|
|
|
function App() {
|
|
const [isReady, setReady] = useState(false)
|
|
|
|
React.useEffect(() => {
|
|
initPersistedState().then(() => setReady(true))
|
|
}, [])
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<ShellStateProvider>
|
|
<MutedThreadsProvider>
|
|
<InnerApp />
|
|
</MutedThreadsProvider>
|
|
</ShellStateProvider>
|
|
)
|
|
}
|
|
|
|
export default App
|