-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
421 lines (393 loc) · 12.5 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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import { BottomSheetModalProvider } from "@gorhom/bottom-sheet";
import AsyncStorage from "@react-native-async-storage/async-storage";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { DefaultTheme, NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import * as Sentry from "@sentry/react-native";
import { useFonts } from "expo-font";
import { LinearGradient } from "expo-linear-gradient";
import * as Linking from "expo-linking";
import * as SplashScreen from "expo-splash-screen";
import { requestTrackingPermissionsAsync } from "expo-tracking-transparency";
import { NativeBaseProvider } from "native-base";
import { useEffect } from "react";
import { LogBox, View } from "react-native";
import { GestureHandlerRootView } from "react-native-gesture-handler";
import Toast from "react-native-toast-message";
import CustomHeader2 from "./components/CustomHeader2/CustomHeader";
import FeedbackModal from "./components/FeedbackModal/FeedbackModal";
import MenuModal from "./components/MenuModal/MenuModal";
import TabBar2 from "./components/Tabbar2/Tabbar2";
import fonts from "./config/fonts";
import { AuthProvider } from "./context/auth/AuthContext";
import { MenuProvider } from "./context/menu/MenuContext";
import { SocketProvider } from "./context/socket/SocketContext";
import { SoundProvider } from "./context/sound/SoundContext";
import { TrackingProvider } from "./context/tracking/TrackingContext";
import { UpdateProvider } from "./context/update/UpdateContext";
import CategoriesListView from "./screens/categoriesListView";
import CategoryScreen2 from "./screens/categoryScreen2";
import ChallengeScreen from "./screens/challenge";
import Chat from "./screens/chat";
import Contribute from "./screens/contribute";
import CreateProfile from "./screens/createProfile";
import FeederScreen from "./screens/feeder";
import FriendsScreen from "./screens/friends";
import GameScreen from "./screens/game";
import GameOver3 from "./screens/gameover3/GameOver3";
import Homepage from "./screens/homepage";
import Leaderboards2 from "./screens/leaderboards2";
import Login2 from "./screens/login2";
import MatchHistory2 from "./screens/matchhistory2";
import NotificationsScreen from "./screens/notifications";
import PlayersScreen from "./screens/players";
import Profile2 from "./screens/profile2";
import PublicProfile from "./screens/publicProfile";
import QueueScreen2 from "./screens/queuescreen2";
import Royale from "./screens/royale";
import SettingsPage from "./screens/settings2";
import SignUpLogin from "./screens/signuplogin";
import SecondaryHomepage from "./screens/homepage/components/SecondaryHomepage";
Sentry.init({
dsn: "https://[email protected]/4506592682246144",
tracesSampleRate: 1.0,
});
SplashScreen.preventAutoHideAsync();
const prefix = Linking.createURL("/");
const Stack = createNativeStackNavigator();
const Tab = createBottomTabNavigator();
const linking = {
prefixes: [prefix, "quizarena.gg", "https://quizarena.gg"],
config: {},
getInitialURL: async () => {
// Get the initial URL if the app is opened via a deep link
const url = await Linking.getInitialURL();
return url;
},
subscribe(listener) {
const onReceiveURL = ({ url }) => {
// Parse the URL and extract the path and query
const { path, queryParams } = Linking.parse(url);
if (path === "invite") {
const id = queryParams.id;
// store into local storage
if (id) {
AsyncStorage.setItem("inviteId", id);
}
console.log("🚀 id:", id);
// set it inside params
listener(id);
}
};
Linking?.addEventListener("url", onReceiveURL);
},
};
function App() {
const [fontsLoaded] = useFonts(fonts);
useEffect(() => {
(async () => {
const { status } = await requestTrackingPermissionsAsync();
try {
if (status === "granted") {
console.log("Yay! I have user permission to track data");
} else {
console.log("Boo! I do not have user permission to track data");
}
} catch (e) {
// console.log(e);
}
})();
}, []);
useEffect(() => {
(async () => {
try {
await new Promise((resolve) => setTimeout(resolve, 600));
if (fontsLoaded) await SplashScreen.hideAsync();
} catch (e) {
console.warn(e);
SplashScreen.hideAsync();
}
})();
}, [fontsLoaded]);
useEffect(() => {
LogBox.ignoreLogs([
"In React 18, SSRProvider is not necessary and is a noop. You can remove it from your app.",
]);
LogBox.ignoreLogs([
"export 'TurboModuleRegistry' (imported as 'TurboModuleRegistry') was not found",
]);
}, []);
if (!fontsLoaded) return null;
const MyTheme = {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
background: "#fff",
},
};
const HomeStack = createNativeStackNavigator();
function HomeStackNavigator() {
return (
<HomeStack.Navigator>
<HomeStack.Screen
name="Homepage"
component={Homepage}
options={{ headerShown: false }}
/>
<HomeStack.Screen
name="SecondaryHomepage"
component={SecondaryHomepage}
options={{
headerShown: false,
}}
/>
</HomeStack.Navigator>
);
}
const ProfileStack = createNativeStackNavigator();
function ProfileStackNavigator() {
return (
<ProfileStack.Navigator>
<ProfileStack.Screen
name="ProfileMain"
component={Profile2}
options={{ headerShown: false }}
/>
<ProfileStack.Screen
name="MatchHistory"
component={MatchHistory2}
options={{ headerShown: false }}
/>
</ProfileStack.Navigator>
);
}
function HomeTabNavigator() {
return (
<Tab.Navigator tabBar={(props) => <TabBar2 {...props} />}>
<Tab.Screen
name="Home"
component={HomeStackNavigator}
options={{
headerShown: false,
}}
/>
<Tab.Screen
name="Categories"
component={SecondaryHomepage}
options={{
headerShown: false,
title: "Categories",
}}
/>
<Tab.Screen
name="Profile"
component={ProfileStackNavigator}
options={{
headerShown: false,
}}
/>
<Tab.Screen
name="Rankings"
component={Leaderboards2}
options={{
headerShown: false,
}}
/>
<Tab.Screen
name="Friends"
component={FriendsScreen}
options={{
headerShown: false,
}}
/>
</Tab.Navigator>
);
}
function StackNavigator() {
return (
<Stack.Navigator
// screenOptions={({ route }) => CustomHeader(route)}
screenOptions={{
header: (props) => <CustomHeader2 {...props} />,
}}
options={{
headerShadowVisible: false,
}}
>
{/* <Tab.Screen name='dev' component={GameOver3} options={{ headerShown: false }} /> */}
{/* change this component for specific page styling */}
{/* <Stack.Screen
name='GameOver3'
component={GameOver3}
options={{ title: 'Game Over', headerShown: false }}
/> */}
<Stack.Screen
name="Login2"
component={Login2}
options={{ title: "Welcome", headerShown: false }}
/>
<Stack.Screen
name="SignUpLogin"
component={SignUpLogin}
options={{
title: "SignUpLogin",
headerShown: false,
}}
/>
<Stack.Screen
name="CreateProfile"
component={CreateProfile}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="CategoryScreen"
component={CategoryScreen2}
options={{
headerShown: false,
headerShadowVisible: false,
}}
/>
<Stack.Screen
name="Contribute"
component={Contribute}
options={{ headerShown: true }}
/>
<Stack.Screen
name="PublicProfile"
component={PublicProfile}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Chat"
component={Chat}
options={{ headerShown: false }}
/>
{/* <Stack.Screen name='Drawer' component={DrawerNavigator} options={{ headerShown: false }} /> */}
<Stack.Screen
name="Queue"
component={QueueScreen2}
options={{ title: "Queue", headerShown: false }}
/>
<Stack.Screen
name="Game"
component={GameScreen}
options={{ title: "Game", headerShown: false }}
/>
<Stack.Screen
name="ProfileEdit"
component={SettingsPage}
options={{ title: "Profile Edit", headerShown: false }}
/>
<Stack.Screen
name="GameOver"
component={GameOver3}
options={{ title: "Game Over", headerShown: false }}
/>
<Stack.Screen
name="Players"
component={PlayersScreen}
options={{ title: "Players", headerShown: true }}
/>
<Stack.Screen
name="Notifications"
component={NotificationsScreen}
options={{ title: "Notifications", headerShown: false }}
/>
<Stack.Screen
name="Challenge"
component={ChallengeScreen}
options={{ title: "Challenge", headerShown: true }}
/>
<Stack.Screen
name="Categories"
component={HomeTabNavigator}
options={{ headerShown: true }}
/>
<Stack.Screen
name="Solo"
component={FeederScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="SecondaryHomepage"
component={SecondaryHomepage}
options={{ headerShown: true, title: "Explore Categories" }} // Customize the title as needed
/>
<Stack.Screen
name="MatchHistory"
component={MatchHistory2}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Feeder"
component={FeederScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Royale"
component={Royale}
options={{ headerShown: false }}
/>
<Stack.Screen
name="CategoriesListView"
component={CategoriesListView}
options={{ headerShown: false }}
/>
</Stack.Navigator>
);
}
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<BottomSheetModalProvider>
<View
style={{
flex: 1,
}}
>
<NativeBaseProvider>
<SocketProvider>
<SoundProvider>
<NavigationContainer
theme={MyTheme}
linking={linking}
onStateChange={(sat) => {
// console.log('🚀 sat:', sat);
// if (sat.routes[0].name === 'Game') return;
// if (sat.routes[0].name === 'GameOver' && !sat.routes[1]) return;
// playNavigationSound();
}}
>
<AuthProvider>
<TrackingProvider>
<MenuProvider>
<UpdateProvider>
<LinearGradient
colors={["#0f0c29", "#302b63", "#24243e"]}
style={{
flex: 1,
fontFeatureSettings: "'clig' off, 'liga' off",
}}
>
<FeedbackModal />
<MenuModal />
<StackNavigator />
</LinearGradient>
</UpdateProvider>
</MenuProvider>
</TrackingProvider>
</AuthProvider>
<Toast />
</NavigationContainer>
</SoundProvider>
</SocketProvider>
</NativeBaseProvider>
</View>
</BottomSheetModalProvider>
</GestureHandlerRootView>
);
}
export default Sentry.wrap(App);