about summary refs log tree commit diff
path: root/src/App.native.tsx
blob: f00e3cad1cdb59f1f43a2c24b1ada6cca48c8e7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import 'react-native-url-polyfill/auto'
import React, {useState, useEffect} from 'react'
import {Linking} from 'react-native'
import {RootSiblingParent} from 'react-native-root-siblings'
import {GestureHandlerRootView} from 'react-native-gesture-handler'
import SplashScreen from 'react-native-splash-screen'
import {SafeAreaProvider} from 'react-native-safe-area-context'
import {observer} from 'mobx-react-lite'
import {
  createClient,
  SegmentClient,
  AnalyticsProvider,
} from '@segment/analytics-react-native'
import {ThemeProvider} from './view/lib/ThemeContext'
import * as view from './view/index'
import {RootStoreModel, setupState, RootStoreProvider} from './state'
import {MobileShell} from './view/shell/mobile'
import {s} from './view/lib/styles'
import notifee, {EventType} from '@notifee/react-native'

const App = observer(() => {
  const [rootStore, setRootStore] = useState<RootStoreModel | undefined>(
    undefined,
  )
  const [segment, setSegment] = useState<SegmentClient | undefined>(undefined)

  // init
  useEffect(() => {
    view.setup()
    setSegment(
      createClient({
        writeKey: '8I6DsgfiSLuoONyaunGoiQM7A6y2ybdI',
        trackAppLifecycleEvents: true,
      }),
    )
    setupState().then(store => {
      setRootStore(store)
      SplashScreen.hide()
      Linking.getInitialURL().then((url: string | null) => {
        if (url) {
          store.nav.handleLink(url)
        }
      })
      Linking.addEventListener('url', ({url}) => {
        store.nav.handleLink(url)
      })
      notifee.onForegroundEvent(async ({type}: {type: EventType}) => {
        store.log.debug('Notifee foreground event', {type})
        if (type === EventType.PRESS) {
          store.log.debug('User pressed a notifee, opening notifications')
          store.nav.switchTo(1, true)
        }
      })
    })
  }, [])

  // show nothing prior to init
  if (!rootStore) {
    return null
  }

  return (
    <GestureHandlerRootView style={s.h100pct}>
      <RootSiblingParent>
        <AnalyticsProvider client={segment}>
          <RootStoreProvider value={rootStore}>
            <ThemeProvider theme={rootStore.shell.darkMode ? 'dark' : 'light'}>
              <SafeAreaProvider>
                <MobileShell />
              </SafeAreaProvider>
            </ThemeProvider>
          </RootStoreProvider>
        </AnalyticsProvider>
      </RootSiblingParent>
    </GestureHandlerRootView>
  )
})

export default App