-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
138 lines (125 loc) · 3.74 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
import React, { useEffect } from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { ActivityIndicator, Text, View } from 'react-native';
import { AuthContext } from './components/context';
import AsyncStorage from '@react-native-async-storage/async-storage';
import SplashScreen from './screens/splashScreen';
import LoginScreen from './screens/LoginScreen';
import RegisterScreen from './screens/registerScreen';
import AuthStack from './src/navigation/AuthStack';
const Stack = createNativeStackNavigator();
const App = () => {
//const [isLoading, setIsLoading] = React.useState(true);
//const [userToken, setUserToken] = React.useState(null);
const initialLoginState = {
isLoading: true,
userName: null,
userToken: null,
};
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);
const authContext = React.useMemo(() => ({
signIn: async (status,token,user_Id) => {
//setUserToken('fffff');
//setIsLoading(false);
let userToken;
userToken = null;
if (status) {
try {
userToken = token;
await AsyncStorage.setItem('userToken', userToken);
await AsyncStorage.setItem('userID',user_Id);
} catch (e) {
console.log(e);
}
}
console.log('user token:', userToken);
dispatch({ type: 'LOGIN', id:user_Id , token: userToken })
},
signOut: async () => {
//setUserToken(null);
//setIsLoading(false);
try {
userToken = 'dfgdfg';
await AsyncStorage.removeItem('userToken')
} catch (e) {
console.log(e);
}
dispatch({ type: 'LOGOUT' })
},
signUP: () => {
setUserToken('fftfff');
setIsLoading(false);
},
}), []);
useEffect(() => {
setTimeout(async () => {
// setIsLoading(false);
let userToken;
userToken = null;
try {
userToken = await AsyncStorage.getItem('userToken');
} catch (e) {
console.log(e);
}
// console.log('user token:',userToken);
dispatch({ type: 'REGISTER', token: userToken })
}, 1000);
}, []);
if (loginState.isLoading) {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<ActivityIndicator size="large" />
</View>
);
}
return (
<AuthContext.Provider value={authContext}>
<NavigationContainer >
{loginState.userToken === null ? (
<Stack.Navigator >
<Stack.Screen name="Splash" component={SplashScreen} options={{ headerShown: false }} />
<Stack.Screen name="LoginScreen" component={LoginScreen} options={{ headerShown: false }} />
<Stack.Screen name="RegisterScreen" component={RegisterScreen} options={{ headerShown: false }} />
</Stack.Navigator>
)
: (
<AuthStack/>
)
}
</NavigationContainer>
</AuthContext.Provider>
);
}
export default App;