-
Notifications
You must be signed in to change notification settings - Fork 1
/
Navigate.tsx
244 lines (227 loc) · 6.8 KB
/
Navigate.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
import React from "react";
import { StyleSheet } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { primary } from "./src/styles/colors";
import { MaterialIcons, Ionicons } from "@expo/vector-icons";
import LoginScreen from "./src/screens/LoginScreen";
import PickUpSignUp from "./src/screens/PickUpSignUp";
import SignUpCompany from "./src/screens/SignUpCompany";
import CadastroScreen from "./src/screens/CadastroScreen";
import PetStoreScreen from "./src/screens/PetStoreScreen";
import StoreList from "./src/screens/Stores/StoreList";
import StorePage from "./src/screens/Stores/StorePage";
import ListPets from "./src/screens/Pets";
import PetDetails from "./src/screens/PetDetails";
import Padrinhos from "./src/screens/Padrinhos/Padrinhos";
import Profile from "./src/screens/Profile";
// --- TELAS DE EMPRESA
import CompanyHomeScreen from "./src/screens/CompanyHomeScreen";
import OrdersScreen from "./src/screens/OrdersScreen";
import StoreProfileScreen from "./src/screens/StoreProfileScreen";
import ItemUserScreen from "./src/screens/ItemVisualization/ItemUserScreen";
import CadastroProdutoScreen from "./src/screens/CadastroProdutoScreen";
import ItemCompanyScreen from "./src/screens/ItemVisualization/ItemCompanyScreen";
import EditarProdutoScreen from "./src/screens/EditarProdutoScreen";
import CategoryVisualizationScreen from "./src/screens/CategoryVisualization/CategoryVisualizationScreen";
const Stack = createStackNavigator();
const Tab = createBottomTabNavigator();
function TabPetOwner() {
return (
<Tab.Navigator
screenOptions={{
headerShown: false,
tabBarActiveTintColor: primary,
tabBarStyle: style.tab,
}}
>
<Tab.Screen
name="PetStoreStack"
component={PetStoreStack}
options={{
tabBarLabel: "PetStore",
tabBarIcon: ({ color, size }) => (
<MaterialIcons
name="local-grocery-store"
size={size}
color={color}
/>
),
}}
/>
<Tab.Screen name="Padrinhos" component={Padrinhos} />
<Tab.Screen
name="PetStack"
component={PetStack}
options={{
tabBarLabel: "Meus Pets",
tabBarIcon: ({ color, size }) => (
<MaterialIcons name="home" size={size} color={color} />
),
}}
/>
<Tab.Screen
name="Profile"
component={Profile}
options={{
tabBarLabel: "Meu perfil",
tabBarIcon: ({ color, size }) => (
<Ionicons name="person-circle-outline" size={size} color={color} />
),
}}
/>
</Tab.Navigator>
);
}
function MyStore() {
return (
<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Screen name="CompanyHomeScreen" component={CompanyHomeScreen} />
<Stack.Screen
name="CadastroProdutoScreen"
component={CadastroProdutoScreen}
/>
<Stack.Screen
name="EditarProdutoScreen"
component={EditarProdutoScreen}
/>
<Stack.Screen name="ItemCompanyScreen" component={ItemCompanyScreen} />
</Stack.Navigator>
);
}
function TabCompany() {
return (
<Tab.Navigator
screenOptions={{
headerShown: false,
tabBarActiveTintColor: primary,
tabBarStyle: style.tab,
}}
>
<Tab.Screen
name="MyStore"
component={MyStore}
options={{
tabBarLabel: "Minha Loja",
}}
/>
<Tab.Screen
name="OrdersScreen"
component={OrdersScreen}
options={{
tabBarLabel: "Pedidos",
}}
/>
<Tab.Screen
name="StoreProfileScreen"
component={StoreProfileScreen}
options={{
tabBarLabel: "Meu perfil",
tabBarIcon: ({ color, size }) => (
<Ionicons name="person-circle-outline" size={size} color={color} />
),
}}
/>
</Tab.Navigator>
);
}
function AuthStack() {
return (
<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Screen name="LoginScreen" component={LoginScreen} />
<Stack.Screen name="PickUpSignUp" component={PickUpSignUp} />
<Stack.Screen name="CadastroScreen" component={CadastroScreen} />
<Stack.Screen name="SignUpCompany" component={SignUpCompany} />
</Stack.Navigator>
);
}
function PetStack() {
return (
<Stack.Navigator
screenOptions={{ headerShown: false }}
initialRouteName="Pets"
>
<Stack.Screen name="Pets" component={ListPets} />
<Stack.Screen name="PetInfo" component={PetDetails} />
</Stack.Navigator>
);
}
function PetStoreStack() {
return (
<Stack.Navigator
screenOptions={{ headerShown: false }}
initialRouteName="PetStore"
>
<Stack.Screen name="PetStore" component={PetStoreScreen} />
<Stack.Screen name="StoreStack" component={StoreStack} />
<Stack.Screen
name="CategoryVisualizationScreen"
component={CategoryVisualizationScreen}
/>
<Stack.Screen name="ItemUserScreen" component={ItemUserScreen} />
</Stack.Navigator>
);
}
function StoreStack() {
return (
<Stack.Navigator
screenOptions={{ headerShown: false }}
initialRouteName="StoreList"
>
<Stack.Screen name="StoreList" component={StoreList} />
<Stack.Screen name="StorePage" component={StorePage} />
<Stack.Screen name="ItemUserScreen" component={ItemUserScreen} />
</Stack.Navigator>
);
}
export default function NavigateTo() {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Auth"
component={AuthStack}
options={{ headerShown: false }}
/>
<Stack.Screen
name="TabPetOwner"
component={TabPetOwner}
options={{ headerShown: false }}
/>
<Stack.Screen
name="TabCompany"
component={TabCompany}
options={{ headerShown: false }}
/>
<Stack.Screen
name="MyStore"
component={MyStore}
options={{ headerShown: false }}
/>
<Stack.Screen
name="PetStoreStack"
component={PetStoreStack}
options={{ headerShown: false }}
/>
<Stack.Screen
name="StoreStack"
component={StoreStack}
options={{ headerShown: false }}
/>
<Stack.Screen
name="PetStack"
component={PetStack}
options={{ headerShown: false }}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const style = StyleSheet.create({
tab: {
position: "absolute",
height: "6%",
paddingBottom: 5,
},
});