-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
267 lines (259 loc) · 8.56 KB
/
App.js
File metadata and controls
267 lines (259 loc) · 8.56 KB
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
/** @format */
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Pressable, Text, View, Platform } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { useState, useEffect, useCallback } from "react";
import { AntDesign } from "@expo/vector-icons";
import { PaperProvider } from "react-native-paper";
import { HeaderBackButton } from "@react-navigation/elements";
import theme from "./src/styles/theme";
import ClubManagePage from "./src/pages/Club/ClubManagePage";
import LoginPage from "./src/pages/Login/LoginPage";
import NavContainer from "./src/components/NavContainer";
import KaKaoLogin from "./src/components/Kakao";
import HomeDetailPage from "./src/pages/Home/HomeDetailPage/HomeDetailPage";
import CreateClubPostPage from "./src/pages/Club/CreateClubPostPage/CreateClubPostPage";
import FindAddress from "./src/components/FindAddress";
import SplashPage from "./src/pages/Splash/SplashPage";
import ProfileSetting from "./src/pages/Profile/ProfileSetting/ProfileSetting";
import ContactUs from "./src/pages/Profile/ProfileSetting/ContactUs";
import AlarmSetting from "./src/pages/Profile/ProfileSetting/AlarmSetting";
import AccountInfo from "./src/pages/Profile/ProfileSetting/AccountInfo";
import ChatSettingPage from "./src/pages/Chat/ChatSettingPage/ChatSettingPage";
import ChatDetailPage from "./src/pages/Chat/ChatDetailPage/ChatDetailPage";
import UnivAuth from "./src/pages/Profile/UniAuth/UnivAuth";
import LoginModal from "./src/modals/LoginModal/LoginModal";
import SearchBar from "./src/pages/Search/SearhBar";
import SearchContent from "./src/pages/Search/SearchContent";
import AlarmPage from "./src/pages/AlarmPage/AlarmPage";
const Stack = createStackNavigator();
export default function App() {
const [isLogin, setIsLogin] = useState(false);
const [appIsReady, setAppIsReady] = useState(false);
return (
<PaperProvider>
<NavigationContainer>
<LoginModal />
<Stack.Navigator
initialRouteName="SplashPage"
screenOptions={{
headerShown: false,
}}
>
<Stack.Screen
name="SplashPage"
component={SplashPage}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Login"
component={LoginPage}
options={{ gestureEnabled: false }}
/>
<Stack.Screen
name="Home"
component={NavContainer}
options={{ gestureEnabled: false }}
/>
<Stack.Screen
name="KaKaoLogin"
component={KaKaoLogin}
options={{
gestureEnabled: false,
headerShown: true,
title: "",
headerBackTitle: " ",
headerTintColor: "black",
}}
/>
<Stack.Screen
name="ClubManagePage"
component={ClubManagePage}
options={{
gestureEnabled: false,
headerShown: true,
title: "신청 관리",
headerBackTitle: " ",
headerTintColor: "black",
}}
/>
<Stack.Screen
name="HomeDetailPage"
component={HomeDetailPage}
options={({ route }) => ({
gestureEnabled: false,
title: route.params?.title,
headerShown: true,
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="ProfileSetting"
component={ProfileSetting}
options={{
gestureEnabled: false,
headerShown: true,
headerBackTitle: " ",
headerTintColor: "black",
title: "설정",
}}
/>
<Stack.Screen
name="CreateClubPostPage"
component={CreateClubPostPage}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "모임만들기",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="FindAddress"
component={FindAddress}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: " ",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="AccountInfo"
component={AccountInfo}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "계정 정보",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="ContactUs"
component={ContactUs}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "문의하기",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="AlarmSetting"
component={AlarmSetting}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "알림설정",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="ChatDetailPage"
component={ChatDetailPage}
options={({ navigation, route }) => ({
headerRight: () => (
<Pressable
onPress={() =>
navigation.navigate("ChatSettingPage", {
roomId: route.params.roomId,
})
}
style={{ marginRight: 20 }}
>
<AntDesign name="ellipsis1" size={24} color="black" />
</Pressable>
),
gestureEnabled: false,
headerShown: true,
title: route.params?.roomName,
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="ChatSettingPage"
component={ChatSettingPage}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "채팅 설정",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="UnivAuth"
component={UnivAuth}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "학교 이메일 인증",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
<Stack.Screen
name="Search"
component={SearchContent}
options={({ navigation, route }) => ({
headerLeft: ({ onPress }) => (
<View
style={{
flex: 1,
flexDirection: "row",
alignItems: "center",
}}
>
<HeaderBackButton
labelVisible={false}
tintColor="black"
onPress={onPress}
/>
<SearchBar />
</View>
),
headerTitle: " ",
headerBackVisible: true,
gestureEnabled: false,
headerShown: true,
headerBackTitle: " ",
headerTintColor: "black",
headerStyle: {
shadowColor: "transparent",
elevation: 0,
},
})}
/>
<Stack.Screen
name="AlarmPage"
component={AlarmPage}
options={({ route }) => ({
gestureEnabled: false,
headerShown: true,
title: "알림",
headerBackTitle: " ",
headerTintColor: "black",
})}
/>
</Stack.Navigator>
<StatusBar style="auto" />
</NavigationContainer>
</PaperProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});