generated from rocketseat-education/igniteshoesapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
63 lines (53 loc) · 1.66 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
import { StatusBar } from "react-native";
import { NativeBaseProvider } from "native-base";
import {
useFonts,
Roboto_400Regular,
Roboto_700Bold,
} from "@expo-google-fonts/roboto";
import OneSignal from "react-native-onesignal";
import { Routes } from "./src/routes";
import { THEME } from "./src/theme";
import { Loading } from "./src/components/Loading";
import { CartContextProvider } from "./src/contexts/CartContext";
import {
tagUserEmailCreate,
tagUserInfoCreate,
} from "./src/notifications/notificationsTags";
import { useEffect } from "react";
OneSignal.setAppId("f8d15092-f1cb-4e45-a3cc-ccc3e631e1d2");
OneSignal.setEmail("rayanneramos@gmail.com");
OneSignal.promptForPushNotificationsWithUserResponse((response) => {
console.log(response);
});
export default function App() {
const [fontsLoaded] = useFonts({ Roboto_400Regular, Roboto_700Bold });
tagUserEmailCreate("rayanneramos@gmail.com");
tagUserInfoCreate();
useEffect(() => {
const unsubscribe = OneSignal.setNotificationOpenedHandler((response) => {
const { actionId } = response.action as any;
switch (actionId) {
case "1":
return console.log("Ver todas");
case "2":
return console.log("Ver pedido");
default:
return console.log("Não foi clicado em botão de ação");
}
});
return () => unsubscribe;
}, []);
return (
<NativeBaseProvider theme={THEME}>
<StatusBar
barStyle="light-content"
backgroundColor="transparent"
translucent
/>
<CartContextProvider>
{fontsLoaded ? <Routes /> : <Loading />}
</CartContextProvider>
</NativeBaseProvider>
);
}