-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
130 lines (119 loc) · 3.42 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
import React, { useState, useMemo, useEffect, useReducer } from "react";
import { ActivityIndicator, StyleSheet, Text, View } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import MainTabScreen from "./app/MainTab";
import { createStackNavigator } from "@react-navigation/stack";
import RootStackScreen from "./app/RootStack";
import { AuthContext } from "./components/context";
const Stack = createStackNavigator();
const App = () => {
// const [isLoading, setIsLoading] = useState(true);
// const [userToken, setUserToken] = useState(null);
const initialLoginState = {
isLoading: true,
email: null,
userToken: null,
};
const loginReducer = (prevState, action) => {
switch (action.type) {
case "RETRIEVE_TOKEN":
return {
...prevState,
userToken: action.token,
isLoading: false,
};
case "LOGIN":
return {
...prevState,
email: action.id,
userToken: action.token,
isLoading: false,
};
case "LOGOUT":
return {
...prevState,
email: null,
userToken: null,
isLoading: false,
};
case "REGISTER":
return {
...prevState,
email: action.id,
userToken: action.token,
isLoading: false,
};
}
};
const [loginState, dispatch] = useReducer(loginReducer, initialLoginState);
const authContext = useMemo(
() => ({
signIn: (email, password) => {
// setUserToken("sdf");
// setIsLoading(false);
let userToken = null;
if (email == "sang" && password == "tons") {
userToken = "sdf";
// console.log("logind");
}
// else {
// alert("Error");
// }
console.log("user token signin", userToken);
dispatch({ type: "LOGIN", id: email, token: userToken });
},
signOut: () => {
// setUserToken(null);
// setIsLoading(false);
let userToken;
userToken = null;
console.log("user token signout: ", userToken);
dispatch({ type: "LOGOUT" });
},
signUp: () => {
setUserToken("sdf");
setIsLoading(false);
},
}),
[]
);
useEffect(() => {
setTimeout(() => {
// setIsLoading(false);
let userToken;
userToken = "fd";
console.log("user token token: ", userToken);
dispatch({ type: "RETRIEVE_TOKEN", token: userToken });
}, 1000);
}, []);
if (loginState.isLoading) {
return (
<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
<ActivityIndicator size="large" color="#009387" />
</View>
);
}
return (
<AuthContext.Provider value={authContext}>
<NavigationContainer>
{loginState.userToken != null ? (
<Stack.Navigator
screenOptions={{
headerStyle: { backgroundColor: "#009387" },
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "bold",
},
}}
>
<Stack.Screen name="Match & Chat" component={MainTabScreen} />
{/* <Stack.Screen name="Welcome" component={RootStackScreen} /> */}
</Stack.Navigator>
) : (
<RootStackScreen />
)}
</NavigationContainer>
</AuthContext.Provider>
);
};
export default App;