-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
124 lines (120 loc) · 4.21 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
import React, { useState } from "react";
import { StyleSheet, Text, View } from "react-native";
import SignIn from "./app/screens/SignIn";
import SignUp from "./app/screens/SignUp";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import Profile from "./app/screens/Profile";
import EditProfile from "./app/screens/EditProfile";
import NewPost from "./app/screens/NewPost";
import Launch from "./app/screens/Launch";
import Report from "./app/screens/Report";
import Messages from "./app/screens/Messages";
import NewFriendReport from "./app/screens/NewFriendReport";
import ForgotPassword from "./app/screens/ForgotPassword";
import DayAttendanceUser from "./app/screens/DayAttendanceUser";
import { NavigationContainer } from "@react-navigation/native";
import NavBarFamily from "./app/components/NavBarFamily";
import NavBarStaff from "./app/components/NavBarStaff";
import AttendanceHistory from "./app/screens/AttendanceHistory";
import { StatusBar } from "react-native";
import useAuthStore from "./app/stores/auth";
import BlockedUsers from "./app/screens/BlockedUser";
const Stack = createNativeStackNavigator();
export default function App() {
const { userId } = useAuthStore();
return (
<>
<StatusBar backgroundColor="#000000" barStyle="dark-content" />
<NavigationContainer>
<Stack.Navigator
initialRouteName={userId ? "Launch" : "SignIn"}
screenOptions={{
headerShown: false,
gestureEnabled: false,
gestureDirection: "horizontal",
}}>
{userId === null ? (
<>
<Stack.Screen name="SignIn" component={SignIn} />
<Stack.Screen name="ForgotPassword" component={ForgotPassword} />
<Stack.Screen name="SignUp" component={SignUp} />
</>
) : (
<>
<Stack.Screen name="Launch" component={Launch} />
<Stack.Screen
name="Profile"
component={Profile}
options={{
gestureEnabled: true,
gestureDirection: "horizontal",
}}
/>
<Stack.Screen
name="EditProfile"
component={EditProfile}
options={{
gestureEnabled: true,
gestureDirection: "horizontal",
}}
/>
<Stack.Screen
name="NewPost"
component={NewPost}
options={{
gestureEnabled: true,
gestureDirection: "horizontal",
}}
/>
<Stack.Screen name="UserTabs" component={NavBarFamily} />
<Stack.Screen name="StaffTabs" component={NavBarStaff} />
<Stack.Screen name="BlockedUsers" component={BlockedUsers} />
<Stack.Screen
name="Report"
component={Report}
options={{
gestureEnabled: true,
gestureDirection: "horizontal",
}}
/>
<Stack.Screen
name="AttendanceHistory"
component={AttendanceHistory}
options={{ headerShown: true }}
/>
<Stack.Screen
name="DayAttendanceUser"
component={DayAttendanceUser}
options={{ headerShown: true, headerBackTitle: "Back" }}
/>
<Stack.Screen
name="Messages"
component={Messages}
options={{
gestureEnabled: true,
gestureDirection: "horizontal",
}}
/>
<Stack.Screen
name="NewFriendReport"
component={NewFriendReport}
options={{
gestureEnabled: true,
gestureDirection: "horizontal",
}}
/>
</>
)}
</Stack.Navigator>
</NavigationContainer>
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});