generated from rocketseat-education/igniteshoesapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
54 lines (42 loc) · 1.47 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
import { useEffect } from 'react';
import { StatusBar } from 'react-native';
import OneSignal from 'react-native-onesignal';
import { NativeBaseProvider } from 'native-base';
import { useFonts, Roboto_400Regular, Roboto_700Bold } from '@expo-google-fonts/roboto';
import { Routes } from './src/routes';
import { THEME } from './src/theme';
import { Loading } from './src/components/Loading';
import { tagUserInfoCreate } from './src/notifications/notificationsTags';
import { CartContextProvider } from './src/contexts/CartContext';
OneSignal.setAppId('accc805b-b3ae-48a8-b823-ec2495dd1350');
OneSignal.promptForPushNotificationsWithUserResponse();
export default function App() {
const [fontsLoaded] = useFonts({ Roboto_400Regular, Roboto_700Bold });
tagUserInfoCreate();
useEffect(() => {
const unsubscribe = OneSignal.setNotificationOpenedHandler((response) => {
const { actionId } = response.action as any;
switch (actionId) {
case '1':
console.log('Option 1');
case '2':
console.log('Option 2');
default:
console.log('No action buttons clicked.')
};
});
return () => unsubscribe;
}, [])
return (
<NativeBaseProvider theme={THEME}>
<StatusBar
barStyle="light-content"
backgroundColor="transparent"
translucent
/>
<CartContextProvider>
{fontsLoaded ? <Routes /> : <Loading />}
</CartContextProvider>
</NativeBaseProvider>
);
}