55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
import 'lib/sentry' // must be near top
|
|
|
|
import React, {useState, useEffect} from 'react'
|
|
import {observer} from 'mobx-react-lite'
|
|
import {QueryClientProvider} from '@tanstack/react-query'
|
|
import {SafeAreaProvider} from 'react-native-safe-area-context'
|
|
import {RootSiblingParent} from 'react-native-root-siblings'
|
|
|
|
import 'view/icons'
|
|
|
|
import * as analytics from 'lib/analytics/analytics'
|
|
import {RootStoreModel, setupState, RootStoreProvider} from './state'
|
|
import {Shell} from 'view/shell/index'
|
|
import {ToastContainer} from 'view/com/util/Toast.web'
|
|
import {ThemeProvider} from 'lib/ThemeContext'
|
|
import {queryClient} from 'lib/react-query'
|
|
|
|
const App = observer(function AppImpl() {
|
|
const [rootStore, setRootStore] = useState<RootStoreModel | undefined>(
|
|
undefined,
|
|
)
|
|
|
|
// init
|
|
useEffect(() => {
|
|
setupState().then(store => {
|
|
setRootStore(store)
|
|
analytics.init(store)
|
|
})
|
|
}, [])
|
|
|
|
// show nothing prior to init
|
|
if (!rootStore) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
<ThemeProvider theme={rootStore.shell.colorMode}>
|
|
<RootSiblingParent>
|
|
<analytics.Provider>
|
|
<RootStoreProvider value={rootStore}>
|
|
<SafeAreaProvider>
|
|
<Shell />
|
|
</SafeAreaProvider>
|
|
<ToastContainer />
|
|
</RootStoreProvider>
|
|
</analytics.Provider>
|
|
</RootSiblingParent>
|
|
</ThemeProvider>
|
|
</QueryClientProvider>
|
|
)
|
|
})
|
|
|
|
export default App
|