-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
213 lines (186 loc) · 6.52 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
/* eslint-disable prettier/prettier */
import React, { useEffect } from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import LoginScreen from './LoginScreen';
import MainScreen from './MainScreen';
import SplashScreen from './SplashScreen';
import { AuthContext } from './AuthContext';
import MainScreenToFinale from './MainScreenToFinale';
import { useLocalStorage } from './useLocalStorage';
import TaskToFinale from './TaskToFinale';
import MyAchivements from './MyAchivements';
import TaskOptions from './TaskOptions';
import SubSurvey from './SubSurvey';
import MiddleScreen from './MiddleScreen';
import { GlobalProvider, GlobalContext } from './GlobalContext';
const Stack = createStackNavigator();
function App() {
const [username, setUsername] = useLocalStorage('username', '');
const [hasSurvey, setHasSurvey] = useLocalStorage('hasSurvey', false);
const [userToken, setUserToken] = useLocalStorage('userToken', '');
const [questionIndex, setQuestionIndex] = useLocalStorage('questionIndex', 0);
const [answers, setAnswers] = useLocalStorage('answers', []);
// const { answers, setAnswers } = useContext(GlobalContext);
const [savingValue, setSavingValue] = useLocalStorage('savingValue', 0);
const [totalValue, setTotalValue] = useLocalStorage('totalValue', 0);
const [questions, setQuestions] = useLocalStorage('questions', []);
const [questionsw, setQuestionsw] = useLocalStorage('questionsw', []);
const [selectedTasks, setSelectedTasks] = useLocalStorage('selectedTasks', []);
// const { globalArray, setGlobalArray } = useContext(GlobalContext);
const [state, dispatch] = React.useReducer(
(prevState, action) => {
switch (action.type) {
case 'RESTORE_TOKEN':
return {
...prevState,
userToken: action.token,
isLoading: false,
hasSurvey: action.hasSurvey,
};
case 'SIGN_IN':
return {
...prevState,
isLoading: false,
isSignout: false,
userToken: action.token,
hasSurvey: action.hasSurvey,
};
case 'TAKE_TEST':
return {
...prevState,
hasSurvey: action.hasSurvey,
};
case 'SIGN_OUT':
return {
...prevState,
isSignout: true,
userToken: '',
hasSurvey: action.hasSurvey
};
case 'RESET_STATE':
return {
isLoading: true,
isSignout: false,
userToken: null,
hasSurvey: null,
questionIndex: 0,
answers: []
};
}
},
{
isLoading: false,
isSignout: true,
userToken: null,
hasSurvey: null,
questionIndex: 0,
answers: []
}
);
useEffect(() => {
const bootstrapAsync = async () => {
dispatch({ type: 'RESTORE_TOKEN', token: userToken, hasSurvey: hasSurvey });
};
bootstrapAsync();
}, [userToken,hasSurvey]);
const authContext = React.useMemo(
() => ({
signIn: async (data) => {
if (data.userToken !== '') {
setUserToken(data.userToken);
dispatch({ type: 'SIGN_IN', token: data.userToken,hasSurvey: hasSurvey });
// console.log('state:', state);
}
},
signOut: () => {
setUserToken('')
setUsername('')
dispatch({ type: 'SIGN_OUT',hasSurvey:false})
}
,
takeTest: () => {
setHasSurvey(true);
dispatch({ type: 'TAKE_TEST', hasSurvey: true });
},
signUp: async (data) => {
dispatch({ type: 'SIGN_IN', token: 'dummy-auth-token' });
},
resetState: () => {
setQuestionIndex(0)
setAnswers([])
setSavingValue(0)
setTotalValue(0)
setQuestions([])
setSelectedTasks([])
// setQuestionsw([])
dispatch({ type: 'RESET_STATE' });
}
})
//,[setHasSurvey]
);
return (
<GlobalProvider>
<AuthContext.Provider value={authContext}>
<NavigationContainer>
<Stack.Navigator>
{state.isLoading ? (
// Uygulama yüklenirken Splash ekranını göster
<Stack.Screen name="Splash" component={SplashScreen} />
) : state.userToken == '' ? (
// Kullanıcı oturumu açmadıysa giriş ekranını göster
<Stack.Screen
name="Login"
component={LoginScreen}
options={{
title: 'Sign in',
}}
/>
) : (
// Kullanıcı oturum açtıysa ana ekranı göster - anket yok
(state.hasSurvey ?
<Stack.Group>
<Stack.Screen
name="MainScreenToFinale"
component={MainScreenToFinale}
options={{
title: 'WaterApp',
}}
/>
<Stack.Screen name="TaskToFinale" component={TaskToFinale} options={{
title: 'Complete your tasks',
}} />
<Stack.Screen name="MyAchivements" component={MyAchivements} options={{
title: 'The Achivements',
}} />
<Stack.Screen name="TaskOptions" component={TaskOptions} options={{
title: 'Choose a task to do!',
}} />
<Stack.Screen name="SubSurvey" component={SubSurvey} options={{
title: 'become more conscious?',
}} />
<Stack.Screen name="MiddleScreen" component={MiddleScreen} options={{
title: 'Training...',
}} />
</Stack.Group>
: <Stack.Group>
<Stack.Screen
name="Main"
component={MainScreen}
options={{
title: 'WATER APP',
}}
/>
<Stack.Screen name="TaskToFinale" component={TaskToFinale} />
<Stack.Screen name="MyAchivements" component={MyAchivements} />
<Stack.Screen name="TaskOptions" component={TaskOptions} />
</Stack.Group>
)
)}
</Stack.Navigator>
</NavigationContainer>
</AuthContext.Provider>
</GlobalProvider>
);
}
export default App;