-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
111 lines (94 loc) · 3.02 KB
/
App.js
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
import React, {useEffect, useRef, useState} from 'react';
import { Provider } from 'react-redux';
import { store } from './src/redux/store';
import AppLoading from 'expo-app-loading';
import useFonts from './src/hooks/useFont';
import AppContainer from './src/components/AppContainer';
import * as Notifications from 'expo-notifications';
import * as SplashScreen from 'expo-splash-screen';
import * as Device from 'expo-device'
import { authAPI } from './src/api/api';
import { ActionSheetProvider } from '@expo/react-native-action-sheet';
const defaultErrorHandler = ErrorUtils.getGlobalHandler()
const myErrorHandler = (e, isFatal) => {
defaultErrorHandler(e, isFatal)
authAPI.sendLogs(e, isFatal).then((response) => {
if(response.status === 200){
console.log('error send');
}
})
}
ErrorUtils.setGlobalHandler(myErrorHandler)
Notifications.setNotificationHandler({
handleNotification: async () => {
return {
shouldShowAlert: true,
shouldPlaySound: true,
shouldSetBadge: true,
}
}
})
export default function App() {
const [IsReady, SetIsReady] = useState(false);
const [expoPushToken, setExpoPushToken] = useState('');
const [notification, setNotification] = useState(false);
const notificationListener = useRef();
const responseListener = useRef();
const LoadFonts = async () => {
await useFonts();
};
useEffect(() => {
if (Platform.OS !== 'android') {
registerForPushNotificationsAsync().then(token => {
setExpoPushToken(token)
authAPI.setAPNS(token)
});
notificationListener.current = Notifications.addNotificationReceivedListener(notification => {
setNotification(notification);
});
responseListener.current = Notifications.addNotificationResponseReceivedListener(response => {
console.log(response);
});
}
return () => {
Notifications.removeNotificationSubscription(notificationListener.current);
Notifications.removeNotificationSubscription(responseListener.current);
};
}, []);
if (!IsReady) {
return (
<AppLoading
startAsync={LoadFonts}
onFinish={async () => {
await SplashScreen.preventAutoHideAsync()
SetIsReady(true)
}}
onError={error => console.log(error)}
/>
);
}
return (
<Provider store={store}>
<ActionSheetProvider>
<AppContainer/>
</ActionSheetProvider>
</Provider>
);
}
async function registerForPushNotificationsAsync() {
let token;
if (Device.isDevice && Platform.OS !== 'android') {
const { status: existingStatus } = await Notifications.getPermissionsAsync();
let finalStatus = existingStatus;
if (existingStatus !== 'granted') {
const { status } = await Notifications.requestPermissionsAsync();
finalStatus = status;
}
if (finalStatus !== 'granted') {
alert('Failed to get push token for push notification!');
return;
}
token = (await Notifications.getDevicePushTokenAsync()).data;
}
return token;
}