-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
71 lines (63 loc) · 2.25 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
import { NavigationContainer } from '@react-navigation/native';
import 'react-native-gesture-handler';
import { AuthProvider } from './src/hooks/useAuth';
import StackNavigator from './src/navigation/StackNavigator';
import { Provider } from 'react-redux';
import { Linking, LogBox } from 'react-native';
import { store } from './src/store';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import { RightNavigation } from './src/navigation/RightNavigation';
import { MenuProvider } from 'react-native-popup-menu';
import PrompttModal from './src/screens/modals/ProptModal';
import UploadingStatus from './src/components/UploadingStatus';
import { StatusBar } from 'react-native';
import * as Notifications from 'expo-notifications';
LogBox.ignoreAllLogs()
export default function App() {
return (
<Provider store={store}>
<MenuProvider>
<NavigationContainer
linking={{
prefixes:[],
config: {
screens:{},
},
async getInitialURL() {
const url = await Linking.getInitialURL();
if (url != null) {
return url;
}
const response = await Notifications.getLastNotificationResponseAsync();
return response?.notification.request.content.data.url;
},
subscribe(listener) {
const onReceiveURL = ({ url }: { url: string }) => listener(url);
const eventListenerSubscription = Linking.addEventListener('url', onReceiveURL);
const subscription = Notifications.addNotificationResponseReceivedListener(response => {
const url = response.notification.request.content.data.url;
listener(url);
});
return () => {
eventListenerSubscription.remove();
subscription.remove();
};
},
}}>
<StatusBar
animated={true}
backgroundColor="transparent"
/>
<AuthProvider>
<GestureHandlerRootView style={{flex:1}}>
<RightNavigation/>
<UploadingStatus/>
<PrompttModal/>
<StackNavigator/>
</GestureHandlerRootView>
</AuthProvider>
</NavigationContainer>
</MenuProvider>
</Provider>
);
}