-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.tsx
284 lines (270 loc) · 7.85 KB
/
App.tsx
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
281
282
283
284
/**
* Generated with the TypeScript template
* https://github.com/react-native-community/react-native-template-typescript
*
* @format
*/
import "react-native-gesture-handler";
import React, { useEffect, useState } from "react";
import {
Image,
SafeAreaView,
StatusBar,
Text,
View,
ScrollView,
} from "react-native";
import Icon from "react-native-vector-icons/FontAwesome";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { UserRegistration } from "./UserRegistration";
import { UserLogIn } from "./UserLogIn";
import { UserLogOut } from "./UserLogOut";
import { Profile } from "./Profile";
import Styles from "./Styles";
import { AuthContextProvider } from "./context/AuthContext";
import { GoogleSignin } from "@react-native-google-signin/google-signin";
import auth, { FirebaseAuthTypes } from "@react-native-firebase/auth";
import FlashMessage from "react-native-flash-message";
import ScheduleScreen from "./Schedule";
import ScavengerHuntEnter from "./ScavengerHuntEnter";
function UserRegistrationScreen() {
return (
<>
<StatusBar />
<SafeAreaView style={Styles.login_container}>
<View style={Styles.login_header}>
<Image style={Styles.login_header_logo} />
<Text style={Styles.login_header_text_bold}>
{"User Registration"}
</Text>
</View>
<UserRegistration />
</SafeAreaView>
</>
);
}
function UserLogInScreen() {
return (
<>
<StatusBar />
<SafeAreaView style={Styles.login_container}>
<View style={Styles.login_header}>
<Image style={Styles.login_header_logo} />
<Text style={Styles.login_header_text_bold}>{"User Login"}</Text>
</View>
<UserLogIn />
</SafeAreaView>
</>
);
}
export function LogoTitle() {
return (
<View
style={{
flex: 1,
flexDirection: "row",
flexWrap: "wrap",
alignItems: "center",
}}
>
<Image
style={{ width: 30, height: 30 }}
source={require("./assets/UGAHacks_General_Byte.png")}
/>
<Text style={{ color: "white", marginTop: 15, padding: 5, fontSize: 22 }}>
UGAHacks ByteMobile
</Text>
</View>
);
}
function HomeScreen() {
return (
<>
<StatusBar />
<SafeAreaView style={Styles.login_container}>
<ScrollView>
<View
style={{
flex: 1,
flexDirection: "row",
flexWrap: "wrap",
alignItems: "center",
justifyContent: "center",
}}
>
<Image
style={{ width: 40, height: 40, marginTop: 10 }}
source={require("./assets/byte_mini.png")}
/>
<Text style={{ color: "white", padding: 5, fontSize: 36 }}>
UGAHacks 8
</Text>
</View>
<Text
style={{
color: "white",
padding: 5,
fontSize: 18,
textAlign: "center",
marginBottom: 20,
}}
>
Create your own adventure!
</Text>
<Profile />
<UserLogOut />
</ScrollView>
</SafeAreaView>
</>
);
}
// This method instantiates and creates a new StackNavigator
const Stack = createStackNavigator();
const App = () => {
GoogleSignin.configure({
webClientId:
"436222925278-3qrh1gl95i39bv1mjj07k72csce2mgfg.apps.googleusercontent.com",
});
const Tab = createBottomTabNavigator();
const [loading, setLoading] = useState(true);
const [user, setUser] = useState<FirebaseAuthTypes.User | null>(null);
type RootStackParamList = {
Scavenger_Hunt: undefined;
Clue: {
clue: string;
clueAnswer: string;
nextQuestion: string;
nextAnswer: string;
clue_num: number;
};
Question: {
question: string;
answer: string;
question_num: number;
};
};
const RootStack = createStackNavigator<RootStackParamList>();
useEffect(() => {
auth().onAuthStateChanged((userState) => {
setUser(userState);
if (loading) {
setLoading(false);
}
});
}, []);
if (loading) {
return null;
}
return (
<AuthContextProvider>
<NavigationContainer>
{!user ? (
<Stack.Navigator
screenOptions={{
headerStyle: {
backgroundColor: "#DC4141",
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "bold",
color: "white",
},
}}
>
<Stack.Group>
<Stack.Screen
name="Login"
component={UserLogInScreen}
options={{ headerTitle: () => <LogoTitle /> }}
/>
<Stack.Screen
name="Sign Up"
component={UserRegistrationScreen}
options={{ headerTitle: () => <LogoTitle /> }}
/>
</Stack.Group>
</Stack.Navigator>
) : (
<>
<Tab.Navigator
screenOptions={{
tabBarStyle: {
backgroundColor: "black",
},
tabBarActiveTintColor: "white",
tabBarInactiveTintColor: "white",
tabBarActiveBackgroundColor: "#DC4141",
headerStyle: {
backgroundColor: "#DC4141",
},
headerTintColor: "black",
headerTitleStyle: {
fontWeight: "bold",
color: "white",
},
}}
>
<Tab.Group>
<Tab.Screen
name="Profile"
component={HomeScreen}
options={{
headerTitle: () => <LogoTitle />,
tabBarIcon: ({}) => {
return (
<Image
style={{ width: 25, height: 25 }}
source={require("./assets/byte_mini.png")}
/>
);
},
}}
/>
<Tab.Screen
name="Schedule"
options={{
headerTitle: () => <LogoTitle />,
tabBarIcon: ({}) => {
return <Icon name="calendar" size={25} color="white" />;
},
}}
>
{(props) => (
<ScheduleScreen isFavoriteSchedule={false} {...props} />
)}
</Tab.Screen>
<Tab.Screen
name="My Schedule"
options={{
headerTitle: () => <LogoTitle />,
tabBarIcon: ({}) => {
return <Icon name="star" size={25} color="white" />;
},
}}
>
{(props) => (
<ScheduleScreen isFavoriteSchedule={true} {...props} />
)}
</Tab.Screen>
<Tab.Screen
name="Scavenger Hunt"
component={ScavengerHuntEnter}
options={{
headerTitle: () => <LogoTitle />,
tabBarIcon: ({}) => {
return <Icon name="search" size={25} color="white" />;
},
}}
/>
</Tab.Group>
</Tab.Navigator>
</>
)}
<FlashMessage position="top" />
</NavigationContainer>
</AuthContextProvider>
);
};
export default App;