-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppInner.tsx
252 lines (237 loc) · 8.42 KB
/
AppInner.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
import React from 'react';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import {createStackNavigator} from '@react-navigation/stack';
import {StyleSheet} from 'react-native';
import {
getFocusedRouteNameFromRoute,
ParamListBase,
RouteProp,
} from '@react-navigation/native';
import Health from './src/pages/Health';
import MissFound from './src/pages/MissFoundPages/MissFound';
import MyInfo from './src/pages/MyInfo';
import Home from './src/pages/Home';
import CameraGuide from './src/pages/AddDogProfilePages/CameraGuide';
import DogInfo from './src/pages/AddDogProfilePages/DogInfo';
import DogProfileResult from './src/pages/AddDogProfilePages/DogProfileResult';
import DogNoseCamera from './src/pages/AddDogProfilePages/DogNoseCamera';
import ProfileInfo from './src/pages/AddDogProfilePages/ProfileInfo';
import Found from './src/pages/MissFoundPages/Found';
import FoundCameraGuide from './src/pages/MissFoundPages/FoundCameraGuide';
import FoundDogNoseCamera from './src/pages/MissFoundPages/FoundDogNoseCamera';
import FoundPost from './src/pages/MissFoundPages/FoundPost';
import FoundResultFail from './src/pages/MissFoundPages/FoundResultFail';
import FoundResultSuccess from './src/pages/MissFoundPages/FoundResultSuccess';
import Miss from './src/pages/MissFoundPages/Miss';
import MissPost from './src/pages/MissFoundPages/MissPost';
import colorType from './src/styles/color';
import HomeIcon from './src/components/Icons/HomeIcon';
import HealthIcon from './src/components/Icons/HealthIcon';
import MissFoundIcon from './src/components/Icons/MissFoundIcon';
import ProfileIcon from './src/components/Icons/ProfileIcon';
import {
AddDogPageNavigation,
HealthPageNavigation,
MainPageNavigation,
ReportDogPageNavigation,
} from './types/navigation';
import Notification from './src/pages/Notification';
import FoundDetail from './src/pages/MissFoundPages/FoundDetail';
import MissDetail from './src/pages/MissFoundPages/MissDetail';
const Tab = createBottomTabNavigator<MainPageNavigation>();
const AddDogStack = createStackNavigator<AddDogPageNavigation>();
const ReportDogStack = createStackNavigator<ReportDogPageNavigation>();
const HealthDogStack = createStackNavigator<HealthPageNavigation>();
const HomeTabBarIcon = ({color}: {color: string}) => (
<HomeIcon width={25} height={25} fill={color} />
);
const HealthTabBarIcon = ({color}: {color: string}) => (
<HealthIcon width={25} height={25} fill={color} />
);
const MissFoundTabBarIcon = ({color}: {color: string}) => (
<MissFoundIcon width={25} height={25} fill={color} stroke={color} />
);
const ProfileTabBarIcon = ({color}: {color: string}) => (
<ProfileIcon width={25} height={25} fill={color} />
);
const HomeStack = () => {
return (
<AddDogStack.Navigator
screenOptions={{
headerShown: false,
cardStyle: {backgroundColor: colorType.white},
}}>
<AddDogStack.Screen name="HomeMain" component={Home} />
<AddDogStack.Screen name="CameraGuide" component={CameraGuide} />
<AddDogStack.Screen name="DogInfo" component={DogInfo} />
<AddDogStack.Screen
name="DogProfileResult"
component={DogProfileResult}
/>
<AddDogStack.Screen name="DogNoseCamera" component={DogNoseCamera} />
<AddDogStack.Screen name="ProfileInfo" component={ProfileInfo} />
<AddDogStack.Screen name="Notification" component={Notification} />
<ReportDogStack.Screen name="MissFoundMain" component={MissFound} />
<ReportDogStack.Screen name="Miss" component={Miss} />
<ReportDogStack.Screen name="MissPost" component={MissPost} />
<ReportDogStack.Screen name="MissDetail" component={MissDetail} />
<ReportDogStack.Screen name="Found" component={Found} />
<ReportDogStack.Screen name="FoundPost" component={FoundPost} />
<ReportDogStack.Screen name="FoundDetail" component={FoundDetail} />
<ReportDogStack.Screen
name="FoundCameraGuide"
component={FoundCameraGuide}
/>
<ReportDogStack.Screen
name="FoundDogNoseCamera"
component={FoundDogNoseCamera}
/>
<ReportDogStack.Screen
name="FoundResultFail"
component={FoundResultFail}
/>
<ReportDogStack.Screen
name="FoundResultSuccess"
component={FoundResultSuccess}
/>
</AddDogStack.Navigator>
);
};
const MissFoundStack = () => {
return (
<ReportDogStack.Navigator
screenOptions={{
headerShown: false,
cardStyle: {backgroundColor: colorType.white},
}}>
<ReportDogStack.Screen name="MissFoundMain" component={MissFound} />
<ReportDogStack.Screen name="Miss" component={Miss} />
<ReportDogStack.Screen name="MissPost" component={MissPost} />
<ReportDogStack.Screen name="Found" component={Found} />
<ReportDogStack.Screen
name="FoundCameraGuide"
component={FoundCameraGuide}
/>
<ReportDogStack.Screen
name="FoundDogNoseCamera"
component={FoundDogNoseCamera}
/>
<ReportDogStack.Screen name="FoundPost" component={FoundPost} />
<ReportDogStack.Screen
name="FoundResultFail"
component={FoundResultFail}
/>
<ReportDogStack.Screen
name="FoundResultSuccess"
component={FoundResultSuccess}
/>
<AddDogStack.Screen name="HomeMain" component={Home} />
<ReportDogStack.Screen name="Notification" component={Notification} />
<ReportDogStack.Screen name="FoundDetail" component={FoundDetail} />
<ReportDogStack.Screen name="MissDetail" component={MissDetail} />
</ReportDogStack.Navigator>
);
};
const HealthStack = () => {
return (
<HealthDogStack.Navigator
screenOptions={{
headerShown: false,
cardStyle: {backgroundColor: colorType.white},
}}>
<HealthDogStack.Screen name="HealthMain" component={Health} />
<HealthDogStack.Screen name="Notification" component={Notification} />
<ReportDogStack.Screen name="FoundDetail" component={FoundDetail} />
<ReportDogStack.Screen name="MissDetail" component={MissDetail} />
</HealthDogStack.Navigator>
);
};
function AppInner() {
const tabBarActiveTintColor = colorType.blue[600];
const tabBarInactiveTintColor = colorType.gray[300];
const getTabBarVisibility = (route: RouteProp<ParamListBase, string>) => {
const routeName = getFocusedRouteNameFromRoute(route) ?? '';
if (
routeName === 'CameraGuide' ||
routeName === 'DogInfo' ||
routeName === 'DogNoseCamera' ||
routeName === 'DogProfileResult' ||
routeName === 'ProfileInfo' ||
routeName === 'MissPost' ||
routeName === 'MissDetail' ||
routeName === 'FoundDetail' ||
routeName === 'FoundPost' ||
routeName === 'FoundCameraGuide' ||
routeName === 'FoundDogNoseCamera' ||
routeName === 'FoundResultFail' ||
routeName === 'FoundResultSuccess' ||
routeName === 'Notification'
) {
return false;
}
return true;
};
return (
<Tab.Navigator
screenOptions={({route}) => ({
tabBarActiveTintColor: tabBarActiveTintColor,
tabBarInactiveTintColor: tabBarInactiveTintColor,
tabBarStyle: {
display: getTabBarVisibility(route) ? 'flex' : 'none',
height: 60,
},
tabBarLabelStyle: styles.tabBarLabel,
tabBarHideOnKeyboard: true,
})}>
<Tab.Screen
name="Home"
component={HomeStack}
options={{
title: '홈',
tabBarIcon: HomeTabBarIcon,
unmountOnBlur: true,
headerShown: false,
}}
/>
<Tab.Screen
name="Health"
component={HealthStack}
options={{
title: '건강 일지',
tabBarIcon: HealthTabBarIcon,
unmountOnBlur: true,
headerShown: false,
}}
/>
<Tab.Screen
name="MissFound"
component={MissFoundStack}
options={{
title: '실종/발견 신고',
tabBarIcon: MissFoundTabBarIcon,
unmountOnBlur: true,
headerShown: false,
}}
/>
<Tab.Screen
name="MyInfo"
component={MyInfo}
options={{
title: '내 정보',
tabBarIcon: ProfileTabBarIcon,
unmountOnBlur: true,
headerShown: false,
}}
/>
</Tab.Navigator>
);
}
const styles = StyleSheet.create({
tabBar: {
height: 60,
},
tabBarLabel: {
marginBottom: 6,
},
});
export default AppInner;