-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
187 lines (179 loc) · 6.35 KB
/
App.js
File metadata and controls
187 lines (179 loc) · 6.35 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
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { Provider } from "react-redux";
import { configureStore, combineReducers } from "@reduxjs/toolkit";
import user from "./reducers/users";
import LandingScreen from "./screens/Stack/LandingScreen";
import LoginScreen from "./screens/Stack/LoginScreen";
import RegisterScreen from "./screens/Stack/RegisterScreen";
import SettingsScreen from "./screens/Stack/SettingsScreen";
import AddActivityScreen from "./screens/Stack/AddActivityScreen";
import CreateTripScreen from "./screens/Stack/CreateTripScreen";
import ViewDocumentsScreen from "./screens/Stack/ViewDocumentsScreen";
import ShowActivityScreen from "./screens/Stack/ShowActivityScreen";
import EditActivityScreen from "./screens/Stack/EditActivityScreen";
import MapScreen from "./screens/Stack/MapScreen";
import HomeScreen from "./screens/Stack/HomeScreen";
import TripScreen from "./screens/TabNavigator/TripScreen";
import HelpScreen from "./screens/TabNavigator/HelpScreen";
import DocumentsScreen from "./screens/TabNavigator/DocumentsScreen";
import { FileText, Plane, LifeBuoy } from "lucide-react-native";
import HeaderSettingsButton from "./components/HeaderSettingsButton";
import HeaderLogoutButton from "./components/HeaderLogoutButton";
import HeaderHomeButton from "./components/HeaderHomeButton";
import AsyncStorage from "@react-native-async-storage/async-storage";
import { persistStore, persistReducer } from "redux-persist";
import { PersistGate } from "redux-persist/integration/react";
//Ligne à commenter ou dé-commenter si besoin de vider le cache au reload de l'app
//AsyncStorage.clear()
const reducers = combineReducers({user})
const persistConfig = {
key: 'TripHub',
storage: AsyncStorage
}
const store = configureStore({
reducer: persistReducer(persistConfig, reducers),
middleware: (getDefaultMiddleware) => getDefaultMiddleware({serializableCheck: false})
})
const persistor = persistStore(store)
const Stack = createNativeStackNavigator();
const Tab = createBottomTabNavigator();
const TabNavigator = () => {
return (
<Tab.Navigator
screenOptions={({ route }) => ({
tabBarIcon: ({ color, size, focused }) => {
let iconComponent;
if (route.name === "Trip") {
iconComponent = <Plane stroke={color} size={size} />;
} else if (route.name === "Docs") {
iconComponent = <FileText stroke={color} size={size} />;
} else if (route.name === "Help") {
iconComponent = <LifeBuoy stroke={color} size={size} />;
}
return iconComponent;
},
tabBarActiveTintColor: "#F58549",
tabBarInactiveTintColor: "gray",
headerShown: false,
headerTitle: "",
headerShown: true,
headerTintColor: "#F58549",
headerRight: () => <HeaderSettingsButton onTabNavigator={true} />,
headerLeft: () => <HeaderHomeButton onTabNavigator={true} />,
})}
>
<Tab.Screen name="Trip" component={TripScreen} />
<Tab.Screen name="Docs" component={DocumentsScreen} />
<Tab.Screen name="Help" component={HelpScreen} />
</Tab.Navigator>
);
};
export default function App() {
return (
<Provider store={store}>
<PersistGate persistor={persistor}>
<NavigationContainer>
<Stack.Navigator
screenOptions={{
headerShown: false,
headerBackTitleVisible: false,
headerTitle: "",
}}
>
<Stack.Screen name="Landing" component={LandingScreen} />
<Stack.Screen
name="Login"
component={LoginScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="Register"
component={RegisterScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="Settings"
component={SettingsScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="Home"
component={HomeScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
headerRight: () => <HeaderSettingsButton />,
headerLeft: () => <HeaderLogoutButton />,
}}
/>
<Stack.Screen
name="AddActivity"
component={AddActivityScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="CreateTrip"
component={CreateTripScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="ViewDocuments"
component={ViewDocumentsScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="ShowActivity"
component={ShowActivityScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="Map"
component={MapScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="EditActivity"
component={EditActivityScreen}
options={{
headerShown: true,
headerTintColor: "#F58549",
}}
/>
<Stack.Screen
name="TabNavigator"
component={TabNavigator}
options={{ headerShown: false }}
/>
</Stack.Navigator>
</NavigationContainer>
</PersistGate>
</Provider>
);
}