-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppRoot.js
280 lines (262 loc) · 7.72 KB
/
AppRoot.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
import {
useFonts,
Rubik_300Light,
Rubik_400Regular,
Rubik_500Medium,
Rubik_600SemiBold,
Rubik_700Bold,
Rubik_800ExtraBold,
Rubik_900Black,
Rubik_300Light_Italic,
Rubik_400Regular_Italic,
Rubik_500Medium_Italic,
Rubik_600SemiBold_Italic,
Rubik_700Bold_Italic,
Rubik_800ExtraBold_Italic,
Rubik_900Black_Italic,
} from "@expo-google-fonts/rubik";
import React, { useState, useEffect, useRef, Fragment } from "react";
import { StyleSheet, View, Platform, AppState } from "react-native";
import Navigator from "./routes/main";
import AuthNavigator from "./routes/auth";
import * as SplashScreen from "expo-splash-screen";
import * as Font from "expo-font";
import { StatusBar } from "expo-status-bar";
import { useSelector, useDispatch } from "react-redux";
import { loadUser, logout } from "./containers/authentication/action";
import { useToast, Box, Text as NativeBaseText } from "native-base";
import * as SecureStore from "expo-secure-store";
import { usePrevious } from "./resources/utils";
import { toastColorObject } from "./resources/rStyledComponent";
import { SafeAreaView } from "react-native-safe-area-context";
// Keep the splash screen visible while we fetch resources
SplashScreen.preventAutoHideAsync();
export default function AppRoot() {
const toast = useToast();
const dispatch = useDispatch();
const auth = useSelector((state) => state.authentication);
const prevAuth = usePrevious(auth);
const error = useSelector((state) => state.errors);
const prevError = usePrevious(error);
const message = useSelector((state) => state.messages);
const prevMessage = usePrevious(message);
const [fontsLoaded, setFontsLoaded] = useState(false);
const [storedFirstName, setStoredFirstName] = useState("");
const appState = useRef(AppState.currentState);
useEffect(() => {
Font.loadAsync({
Quicksand: require("./assets/fonts/Quicksand-Regular.ttf"),
QuicksandBold: require("./assets/fonts/Quicksand-Bold.ttf"),
Rubik_300Light,
Rubik_400Regular,
Rubik_500Medium,
Rubik_600SemiBold,
Rubik_700Bold,
Rubik_800ExtraBold,
Rubik_900Black,
Rubik_300Light_Italic,
Rubik_400Regular_Italic,
Rubik_500Medium_Italic,
Rubik_600SemiBold_Italic,
Rubik_700Bold_Italic,
Rubik_800ExtraBold_Italic,
Rubik_900Black_Italic,
}).then(() => setFontsLoaded(true));
//Get user details is on mobile device
if (Platform.OS == "android") {
SecureStore.getItemAsync("firstName", SecureStore.WHEN_UNLOCKED).then(
(data) => setStoredFirstName(data)
);
} else {
SecureStore.getItemAsync("firstName").then((data) =>
setStoredFirstName(data)
);
}
dispatch(loadUser());
async function splashScreenDismiss() {
await SplashScreen.hideAsync();
}
splashScreenDismiss();
}, []);
useEffect(() => {
if (auth.isAuthenticated && auth.token !== null) {
if (storedFirstName == null) {
// Store User detail if not available
if (Platform.OS == "android") {
SecureStore.setItemAsync(
"firstName",
auth.user.fullname.split(" ")[0],
SecureStore.WHEN_UNLOCKED
);
SecureStore.setItemAsync(
"phoneNumber",
auth.user.phone_number,
SecureStore.WHEN_UNLOCKED
);
} else {
SecureStore.setItemAsync(
"firstName",
auth.user.fullname.split(" ")[0]
);
SecureStore.setItemAsync("phoneNumber", auth.user.phone_number);
}
}
}
if (error && error.dateTime !== prevError?.dateTime) {
if (error.msg.phone_number) {
toast.show({
render: () => (
<Box
bg={toastColorObject["danger"]}
px="2"
py="2"
rounded="sm"
mb={5}
>
<NativeBaseText
style={{ color: "#FFFFFF" }}
>{`Phone Number: ${error.msg.phone_number.join()}`}</NativeBaseText>
</Box>
),
});
}
if (error.msg.password) {
toast.show({
render: () => (
<Box
bg={toastColorObject["danger"]}
px="2"
py="2"
rounded="sm"
mb={5}
>
<NativeBaseText
style={{ color: "#FFFFFF" }}
>{`Password: ${error.msg.password.join()}`}</NativeBaseText>
</Box>
),
});
}
if (error.msg.non_field_errors) {
toast.show({
render: () => (
<Box
bg={toastColorObject["danger"]}
px="2"
py="2"
rounded="sm"
mb={5}
>
<NativeBaseText style={{ color: "#FFFFFF" }}>
{error.msg.non_field_errors.join()}
</NativeBaseText>
</Box>
),
});
}
if (error.msg.status == "failed") {
toast.show({
render: () => (
<Box
bg={toastColorObject["danger"]}
px="2"
py="2"
rounded="sm"
mb={5}
>
<NativeBaseText style={{ color: "#FFFFFF" }}>
{error.msg.message}
</NativeBaseText>
</Box>
),
});
}
if (error.msg.detail) {
//Authentication credentials were not provided.
toast.show({
render: () => (
<Box
bg={toastColorObject["default"]}
px="2"
py="2"
rounded="sm"
mb={5}
>
<NativeBaseText style={{ color: "#FFFFFF" }}>
User not signed in
</NativeBaseText>
</Box>
),
});
}
}
}, [error, auth]);
useEffect(() => {
const subscription = AppState.addEventListener(
"change",
async (nextAppState) => {
if (
appState.current.match(/inactive|background/) &&
nextAppState === "active"
) {
//App has come to the foreground
let appStateLastActive;
if (Platform.OS == "android") {
await SecureStore.getItemAsync(
"lastActive",
SecureStore.WHEN_UNLOCKED
).then((data) => {
appStateLastActive = data;
});
} else {
await SecureStore.getItemAsync("lastActive").then((data) => {
appStateLastActive = data;
});
}
if (
new Date() - (new Date(appStateLastActive) || new Date()) >
60000
) {
dispatch(logout());
}
}
if (appState.current.match(/inactive|background/)) {
if (Platform.OS == "android") {
await SecureStore.setItemAsync(
"lastActive",
new Date().toString(),
SecureStore.WHEN_UNLOCKED
);
} else {
await SecureStore.setItemAsync("lastActive", new Date().toString());
}
}
appState.current = nextAppState;
//console.log("AppState", appState.current);
}
);
return () => {
subscription.remove();
};
}, [appState]);
return (
<Fragment>
<View style={styles.container}>
<SafeAreaView />
{auth.isAuthenticated && <Navigator />}
{!auth.isAuthenticated && <AuthNavigator />}
<StatusBar
style="light"
translucent={true}
backgroundColor="#00000066"
/>
</View>
</Fragment>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
});