-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
410 lines (337 loc) · 14 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import React, { useReducer, useEffect, useRef } from "react";
import "expo-dev-client";
import { AppState, Platform, BackHandler, Alert, Linking, useColorScheme } from "react-native";
import * as Device from "expo-device";
import {
Provider as PaperProvider,
MD3LightTheme as DefaultLightTheme,
MD3DarkTheme as DefaultDarkTheme,
} from "react-native-paper";
import { FontAwesome5 } from "@expo/vector-icons";
import { RootSiblingParent } from "react-native-root-siblings";
import * as TaskManager from "expo-task-manager";
import * as Notifications from "expo-notifications";
import * as SplashScreen from "expo-splash-screen";
import uuid from "react-native-uuid";
import { NavigationContainer } from "@react-navigation/native";
import AsyncStorage from "@react-native-async-storage/async-storage";
import { StatusBar } from "expo-status-bar";
import { initialState, reducer } from "./reducers/app";
import {
setDeviceKey,
setAppReadyState,
setUserData,
setExpoPushToken,
setNativePushToken,
pushRecieved,
setPushResponse,
} from "./reducers/app";
import AuthView from "./views/AuthView";
import AppTabView from "./views/AppTabView";
import NotificationPopup from "./components/NotificationPopup";
import PushMeSDK, { Consts } from "@pushme-tgxn/pushmesdk";
import { AppReducer, BACKEND_URL } from "./const";
import apiService from "./service/api";
// background notificaiton listener
const BACKGROUND_NOTIFICATION_TASK = "BACKGROUND-NOTIFICATION-TASK";
TaskManager.defineTask(BACKGROUND_NOTIFICATION_TASK, ({ data, error, executionInfo }) => {
console.debug("Received a notification in the background!", data);
// Do something with the notification data
});
Notifications.registerTaskAsync(BACKGROUND_NOTIFICATION_TASK);
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: false,
shouldSetBadge: false,
}),
});
SplashScreen.preventAutoHideAsync();
const App = () => {
const appState = useRef(AppState.currentState);
const scheme = useColorScheme();
const [state, dispatch] = useReducer(reducer, initialState);
let theme = DefaultLightTheme;
if (scheme === "dark") {
theme = DefaultDarkTheme;
}
// adpations
theme = {
...theme,
mode: "exact",
backdrop: true,
roundness: 1,
colors: {
...theme.colors,
primary: "#a845ff",
accent: "#933ce0",
},
};
const startState = useRef("Auth");
const notificationListener = useRef();
const responseListener = useRef();
// register app for notifications (get tokens)
const registerForPushNotificationsAsync = async () => {
let token, nativeToken;
if (Platform.OS === "android") {
Notifications.setNotificationChannelAsync("default", {
name: "default",
importance: Notifications.AndroidImportance.MAX,
vibrationPattern: [0, 250, 250, 250],
lightColor: "#FF231F7C",
});
}
if (Device.isDevice) {
const { status: existingStatus } = await Notifications.getPermissionsAsync();
let finalStatus = existingStatus;
if (existingStatus !== "granted") {
const { status } = await Notifications.requestPermissionsAsync();
finalStatus = status;
}
const openAppSettings = () => {
Linking.openSettings();
};
if (finalStatus !== "granted") {
Alert.alert(
`Notification Permissions are not granted!`,
"Please enable notifications in the app settings.",
[
{ text: "Exit App", onPress: () => BackHandler.exitApp() },
{ text: "Open App Settings", onPress: openAppSettings },
],
);
return [null, null];
}
token = await Notifications.getExpoPushTokenAsync();
nativeToken = await Notifications.getDevicePushTokenAsync();
} else {
alert("Must use physical device for Push Notifications");
}
return [token, nativeToken];
};
// register notification categories from client-side
const registerNotificationCategories = async () => {
for (const index in Consts.PushDefinition) {
const notificationCategory = Consts.PushDefinition[index];
if (notificationCategory.actions) {
console.debug("registering notification actions", index, notificationCategory);
// `actions` docs: https://docs.expo.dev/versions/latest/sdk/notifications/#arguments-21
await Notifications.setNotificationCategoryAsync(
index,
notificationCategory.actions.map((action) => {
return {
buttonTitle: action.title,
identifier: action.identifier,
options: {
opensAppToForeground: true, // force app to foreground when action is pressed
...action.options,
},
textInput: action.textInput,
};
}),
);
}
}
};
const getAppPushTokens = async () => {
// get application push tokens, and register notification categories
try {
let [expoToken, nativeToken] = await registerForPushNotificationsAsync();
if (expoToken) {
dispatch(setExpoPushToken(expoToken));
}
if (nativeToken) {
dispatch(setNativePushToken(nativeToken));
}
await registerNotificationCategories();
} catch (error) {
console.error("error setting app up", error);
// alert("error setting app up: " + error.toString());
}
};
// listen for app state changes to detect foreground/background
useEffect(() => {
const subscription = AppState.addEventListener("change", (nextAppState) => {
if (appState.current.match(/inactive|background/) && nextAppState === "active") {
console.log("App has come to the foreground!");
getAppPushTokens();
}
appState.current = nextAppState;
console.log("AppState Changed", appState.current);
});
return () => {
subscription.remove();
};
}, []);
const initializeDeviceKey = async (state, dispatch) => {
let deviceKey;
try {
if (state.deviceKey) {
console.debug("using deviceKey from state", state.deviceKey);
deviceKey = state.deviceKey;
} else {
const existingDeviceKey = await AsyncStorage.getItem("deviceKey");
if (existingDeviceKey !== null) {
deviceKey = existingDeviceKey;
console.debug("loaded deviceKey", deviceKey);
} else {
deviceKey = uuid.v4();
await AsyncStorage.setItem("deviceKey", deviceKey);
console.debug("generated deviceKey", deviceKey);
}
dispatch(setDeviceKey(deviceKey));
}
} catch (e) {
console.warn(e);
return null;
}
};
const initializeBackendUrl = async () => {
try {
const serializedBackendUrl = await AsyncStorage.getItem("backendUrl");
if (serializedBackendUrl !== null) {
apiService.setBackendUrl(serializedBackendUrl);
} else {
apiService.setBackendUrl(BACKEND_URL);
}
} catch (e) {
console.warn(e);
}
};
const lastNotificationResponse = Notifications.useLastNotificationResponse();
const recievedIds = [];
const responseRecieved = (response) => {
console.log("addNotificationResponseReceivedListener", JSON.stringify(response, null, 4));
if (recievedIds.includes(response.notification.request.identifier)) {
console.log("already recieved this response");
return;
}
recievedIds.push(response.notification.request.identifier);
// get the notification response data
// TODO define this payload format
const responseData = {
pushIdent: response.notification.request.content.data.pushIdent,
pushId: response.notification.request.content.data.pushId,
actionIdentifier: response.actionIdentifier,
categoryIdentifier: response.notification.request.content.categoryIdentifier,
responseText: null,
};
// attach user text is defined
if (response.userText) {
responseData.responseText = response.userText;
}
const foundNotificationCategory = apiService.getNotificationCategory(responseData.categoryIdentifier);
// send non-default responses if enabled for this type of notification
if (response.actionIdentifier == Notifications.DEFAULT_ACTION_IDENTIFIER) {
if (foundNotificationCategory && foundNotificationCategory.sendDefaultAction) {
dispatch(setPushResponse(responseData));
}
} else {
dispatch(setPushResponse(responseData));
}
// perform actions based on category
if (
responseData.categoryIdentifier == "button.open_link" &&
response?.notification?.request?.content?.data?.linkUrl
) {
console.log("open link", response.notification.request.content.data.linkUrl);
Linking.openURL(response.notification.request.content.data.linkUrl);
}
// dismiss the notificaqtion when it's tapped
Notifications.dismissNotificationAsync(response.notification.request.identifier);
};
useEffect(() => {
console.log("action", Notifications);
if (lastNotificationResponse) {
responseRecieved(lastNotificationResponse);
}
}, [lastNotificationResponse]);
useEffect(() => {
async function prepare() {
// generate or load a unique device key, and save it.
await initializeDeviceKey(state, dispatch);
// attempt to load backend URL
await initializeBackendUrl();
// attempt to load user
let loggedInUser;
try {
const serializedUserData = await AsyncStorage.getItem("userData");
if (serializedUserData !== null) {
const userData = JSON.parse(serializedUserData);
console.debug("loaded serializedUserData", userData.id, userData.token);
if (userData) {
// test access token
apiService.setAccessToken(userData.token);
const currentUser = await apiService.user.getCurrentUser();
console.debug("currentUser", currentUser, userData);
if (currentUser && currentUser.user.id == userData.id) {
loggedInUser = userData;
} else {
console.log("not a valid token", currentUser, userData);
}
} else {
console.log("no valid userData", userData);
}
}
} catch (e) {
// console.warn("error attempting to login user from saved token", e);
} finally {
if (loggedInUser) {
// only if a valid token was found
dispatch(setUserData(loggedInUser));
startState.current = "AppView";
} else {
startState.current = "Auth";
}
dispatch(setAppReadyState(true));
}
await SplashScreen.hideAsync();
}
// load user data, and app state
prepare();
// kick off application push tokens, and register notification categories on app start
getAppPushTokens();
// notification recieved, append to local array
notificationListener.current = Notifications.addNotificationReceivedListener((notification) => {
console.log("addNotificationReceivedListener", notification);
dispatch(pushRecieved(notification));
});
// notification response recieved
responseListener.current = Notifications.addNotificationResponseReceivedListener(responseRecieved);
return () => {
Notifications.removeNotificationSubscription(notificationListener.current);
Notifications.removeNotificationSubscription(responseListener.current);
};
}, []);
if (!state.appIsReady) {
return null;
}
return (
<AppReducer.Provider
value={{
state,
dispatch,
}}
>
<RootSiblingParent>
<PaperProvider
settings={{
icon: (props) => <FontAwesome5 style={{ textAlign: "center" }} {...props} />,
}}
theme={theme}
>
<NavigationContainer theme={theme}>
<NotificationPopup />
<StatusBar
backgroundColor={theme.colors.background}
style={scheme === "dark" ? "light" : "dark"}
/>
{state.user && <AppTabView />}
{!state.user && <AuthView />}
</NavigationContainer>
</PaperProvider>
</RootSiblingParent>
</AppReducer.Provider>
);
};
export default App;