-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
152 lines (133 loc) · 3.85 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
import 'react-native-gesture-handler';
import React, {useEffect} from 'react';
import {View, ActivityIndicator, LogBox, ImageBackground} from 'react-native';
import {
NavigationContainer,
DefaultTheme as NavigationDefaultTheme,
DarkTheme as NavigationDarkTheme,
} from '@react-navigation/native';
import {createDrawerNavigator} from '@react-navigation/drawer';
import {
Provider as PaperProvider,
DefaultTheme as PaperDefaultTheme,
DarkTheme as PaperDarkTheme,
} from 'react-native-paper';
import AsyncStorage from '@react-native-async-storage/async-storage';
import RootStackScreen from './src/Navigations/RootStackScreen';
import DrawerStack from './src/Navigations/DrawerStack';
import {colors} from './src/Constants';
import {
requestUserPermission,
notificationListener,
} from './src/utils/notificationService';
const Drawer = createDrawerNavigator();
var userToken;
const App = () => {
LogBox.ignoreLogs([
"[react-native-gesture-handler] Seems like you're using an old API with gesture components, check out new Gestures system!",
]);
LogBox.ignoreLogs(['new NativeEventEmitter']); // Ignore log notification by message
LogBox.ignoreAllLogs(); //Ignore all log notifications
// const [isLoading, setIsLoading] = React.useState(true);
// const [userToken, setUserToken] = React.useState(null);
const [isDarkTheme, setIsDarkTheme] = React.useState(false);
const initialLoginState = {
isLoading: true,
userName: null,
userToken: null,
};
const CustomDefaultTheme = {
...NavigationDefaultTheme,
...PaperDefaultTheme,
colors: {
...NavigationDefaultTheme.colors,
...PaperDefaultTheme.colors,
background: '#ffffff',
text: '#333333',
},
};
const CustomDarkTheme = {
...NavigationDarkTheme,
...PaperDarkTheme,
colors: {
...NavigationDarkTheme.colors,
...PaperDarkTheme.colors,
background: '#333333',
text: '#ffffff',
},
};
const theme = isDarkTheme ? CustomDarkTheme : CustomDefaultTheme;
const loginReducer = (prevState, action) => {
switch (action.type) {
case 'RETRIEVE_TOKEN':
return {
...prevState,
userToken: action.token,
isLoading: false,
};
case 'LOGIN':
return {
...prevState,
userName: action.id,
userToken: action.token,
isLoading: false,
};
case 'LOGOUT':
return {
...prevState,
userName: null,
userToken: null,
isLoading: false,
};
case 'REGISTER':
return {
...prevState,
userName: action.id,
userToken: action.token,
isLoading: false,
};
}
};
const [loginState, dispatch] = React.useReducer(
loginReducer,
initialLoginState,
);
useEffect(() => {
requestUserPermission();
notificationListener();
setTimeout(async () => {
// setIsLoading(false);
userToken = null;
try {
userToken = await AsyncStorage.getItem('userToken');
} catch (e) {
console.log(e);
}
// console.log('user token: ', userToken);
dispatch({type: 'RETRIEVE_TOKEN', token: userToken});
}, 1000);
}, []);
if (loginState.isLoading) {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: colors.pink,
}}>
{/* <ImageBackground source={images.BG} resizeMode="center">/</ImageBackground> */}
{/* SplashScreen.hide(); */}
<ActivityIndicator size="large" color={colors.purple} />
</View>
);
}
return (
<PaperProvider theme={theme}>
<NavigationContainer theme={theme}>
{userToken !== null ? <DrawerStack /> : <RootStackScreen />}
</NavigationContainer>
</PaperProvider>
);
};
export default App;