forked from Sphereon-Opensource/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
122 lines (110 loc) · 4.97 KB
/
App.tsx
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import {NavigationContainer} from '@react-navigation/native';
import crypto from '@sphereon/isomorphic-webcrypto';
import {backgroundColors} from '@sphereon/ui-components.core';
import * as SplashScreen from 'expo-splash-screen';
import * as React from 'react';
import {useCallback, useEffect, useState} from 'react';
import {LogBox, Platform, StatusBar} from 'react-native';
import 'react-native-gesture-handler';
import {SafeAreaProvider} from 'react-native-safe-area-context';
import {Provider} from 'react-redux';
import {bindActionCreators} from 'redux';
import IntentHandler from './src/handlers/IntentHandler';
import LockingHandler from './src/handlers/LockingHandler';
import _loadFontsAsync from './src/hooks/useFonts';
import Localization from './src/localization/Localization';
import AppNavigator from './src/navigation/navigation';
import {navigationRef} from './src/navigation/rootNavigation';
import OnTouchProvider from './src/providers/touch/OnTouchProvider';
import store from './src/store';
import {getUsers} from './src/store/actions/user.actions';
import {PlatformsEnum} from './src/types';
LogBox.ignoreLogs([
// Ignore require cycles for the app in dev mode. They do show up in Metro!
'Require cycle:',
/*
This warning comes from a dependency from what it looks like. As we already import AsyncStorage from @react-native-async-storage/async-storage
*/
'AsyncStorage has been extracted from react-native',
/*
TODO WAL-342
Non-serializable values were found in the navigation state. Check:
This can break usage such as persisting and restoring state. This might happen if you passed non-serializable values such as function, class instances etc. in params. If you need to use components with callbacks in your options, you
can use 'navigation.setOptions' instead. See https://reactnavigation.org/docs/troubleshooting#i-get-the-warning-non-serializable-values-were-found-in-the-navigation-state for more details.
*/
'Non-serializable values were found in the navigation state',
/*
TODO WAL-346
We should implement a keep awake mechanism. https://docs.expo.dev/versions/latest/sdk/keep-awake/
*/
'Unable to activate keep awake',
/*
TODO WAL-369
https://stackoverflow.com/questions/69538962/new-nativeeventemitter-was-called-with-a-non-null-argument-without-the-requir/69649068#69649068
The above seems very likely as the last update on react-native-share-menu was on May 12 2022
*/
'new NativeEventEmitter',
]);
export default function App() {
const [appIsReady, setAppIsReady] = useState(false);
// TODO use navigationIsReady to check if we can start the IntentHandler (as this needs a navigationRef) and remove the timeout placed in handleSharedFileData
const [navigationIsReady, setNavigationIsReady] = useState(false);
useEffect(() => {
// TODO this function should be moved to an init place
async function prepare(): Promise<void> {
try {
// Enable the intent handler early, so we can get deeplinks on start or before login
await IntentHandler.getInstance().enable();
await LockingHandler.getInstance().enableLocking();
// TODO create better implementation for this
StatusBar.setBarStyle('light-content', true);
if (Platform.OS === PlatformsEnum.ANDROID) {
StatusBar.setBackgroundColor(backgroundColors.primaryDark);
StatusBar.setTranslucent(false);
}
Localization.setI18nConfig();
// Preload fonts, make any API calls you need to do here
await _loadFontsAsync();
// Needed for isomorphic-webcrypto. Must be removed if react-native-crypto is used instead
await crypto.ensureSecure();
// Load the redux store
const actions = bindActionCreators({getUsers}, store.dispatch);
actions.getUsers();
} catch (e) {
console.warn(e);
} finally {
// Tell the application to render
setAppIsReady(true);
}
}
void prepare();
return (): void => {
void IntentHandler.getInstance().disable();
void LockingHandler.getInstance().disableLocking();
};
}, []);
const onLayoutRootView = useCallback(async () => {
if (appIsReady && navigationIsReady) {
// This tells the splash screen to hide immediately! If we call this after
// `setAppIsReady`, then we may see a blank screen while the app is
// loading its initial state and rendering its first pixels. So instead,
// we hide the splash screen once we know the root view has already
// performed layout.
await SplashScreen.hideAsync();
}
}, [appIsReady, navigationIsReady]);
if (!appIsReady) {
return null;
}
return (
<Provider store={store}>
<SafeAreaProvider onLayout={onLayoutRootView}>
<NavigationContainer onReady={() => setNavigationIsReady(true)} ref={navigationRef}>
<OnTouchProvider>
<AppNavigator />
</OnTouchProvider>
</NavigationContainer>
</SafeAreaProvider>
</Provider>
);
}