forked from giovannimirarchi420/reservation-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
230 lines (213 loc) · 8.92 KB
/
App.jsx
File metadata and controls
230 lines (213 loc) · 8.92 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
import React, { useContext, useEffect } from 'react';
import { BrowserRouter as Router, Navigate, Route, Routes, useNavigate } from 'react-router-dom';
import MainLayout from './components/Layout/MainLayout';
import BookingCalendar from './components/Booking/BookingCalendar';
import AdminPanel from './components/Admin/AdminPanel';
import ProfileManagement from './components/Profile/ProfileManagement';
import Dashboard from './components/Dashboard/Dashboard';
import MyBookingsPage from './components/Booking/MyBookingsPage';
import NotificationsPage from './components/Notifications/NotificationsPage';
import SiteManagement from './components/Admin/SiteManagement';
import IsoManagement from './components/Admin/IsoManagement';
import { AuthContext } from './context/AuthContext';
import { SiteContext } from './context/SiteContext';
import { Box, CircularProgress, Typography } from '@mui/material';
import { ErrorProvider, useError } from './context/ErrorContext';
import ErrorNotification from './components/Common/ErrorNotification';
import ResourceExplorer from './components/Resources/ResourceExplorer';
import { SiteRoles } from './services/siteService';
// Initialize the global error handler
const ErrorInitializer = ({ children }) => {
const { handleApiError } = useError();
useEffect(() => {
// Inject the error handler into the global environment
// Will be accessible from API service modules
window.__errorHandler = handleApiError;
return () => {
// Remove the error handler when the component unmounts
delete window.__errorHandler;
};
}, [handleApiError]);
return children;
};
// Wrapper component for routes with layout
const LayoutWrapper = ({ element, currentSection, requiredRole }) => {
const { currentUser, loading, isAuthorized } = useContext(AuthContext);
const { canManageSites } = useContext(SiteContext);
const navigate = useNavigate();
if (loading) {
return (
<Box sx={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '100vh', flexDirection: 'column', gap: 2 }}>
<CircularProgress />
<Typography>Loading...</Typography>
</Box>
);
}
if (!currentUser) {
return <Navigate to="/" replace />;
}
// Special handling for sites section - use canManageSites
if (currentSection === 'sites' && !canManageSites()) {
return <Navigate to="/calendar" replace />;
}
// Regular role-based permission check for other sections
else if (requiredRole && !isAuthorized(requiredRole)) {
// If user attempts to access dashboard but is not admin, redirect to calendar
if (currentSection === 'dashboard') {
return <Navigate to="/calendar" replace />;
}
// For other admin-only sections, redirect to home
return <Navigate to="/calendar" replace />;
}
const handleSectionChange = (section) => {
switch(section) {
case 'dashboard':
navigate('/');
break;
case 'calendar':
navigate('/calendar');
break;
case 'mybookings':
navigate('/mybookings');
break;
case 'admin':
navigate('/admin');
break;
case 'profile':
navigate('/profile');
break;
case 'notifications':
navigate('/notifications');
break;
case 'resources':
navigate('/resources');
break;
case 'sites':
navigate('/sites');
break;
case 'isos': // <-- AGGIUNTO: Caso per la navigazione ISO
navigate('/isos');
break;
default:
navigate('/');
}
};
return (
<MainLayout currentSection={currentSection} onSectionChange={handleSectionChange}>
{element}
</MainLayout>
);
};
const App = () => {
const { currentUser } = useContext(AuthContext);
return (
<ErrorProvider>
<ErrorInitializer>
<Router>
<Routes>
<Route
path="/"
element={
<LayoutWrapper
element={<Dashboard />}
currentSection="dashboard"
requiredRole={SiteRoles.SITE_ADMIN}
/>
}
/>
<Route
path="/resources"
element={
<LayoutWrapper
element={<ResourceExplorer />}
currentSection="resources"
requiredRole={SiteRoles.USER}
/>
}
/>
<Route
path="/calendar"
element={
<LayoutWrapper
element={<BookingCalendar />}
currentSection="calendar"
requiredRole={SiteRoles.USER}
/>
}
/>
<Route
path="/mybookings"
element={
<LayoutWrapper
element={<MyBookingsPage />}
currentSection="mybookings"
requiredRole={SiteRoles.USER}
/>
}
/>
<Route
path="/admin"
element={
<LayoutWrapper
element={<AdminPanel />}
currentSection="admin"
requiredRole={SiteRoles.SITE_ADMIN}
/>
}
/>
{/* --- NUOVA ROTTA GESTIONE ISO --- */}
<Route
path="/isos"
element={
<LayoutWrapper
element={<IsoManagement />}
currentSection="isos"
requiredRole={SiteRoles.SITE_ADMIN}
/>
}
/>
{/* ------------------------------- */}
<Route
path="/profile"
element={
<LayoutWrapper
element={<ProfileManagement />}
currentSection="profile"
requiredRole={SiteRoles.USER}
/>
}
/>
<Route
path="/notifications"
element={
<LayoutWrapper
element={<NotificationsPage />}
currentSection="notifications"
requiredRole={SiteRoles.USER}
/>
}
/>
{/* Route for site management - now uses custom canManageSites check */}
<Route
path="/sites"
element={
<LayoutWrapper
element={<SiteManagement />}
currentSection="sites"
requiredRole={null} /* Custom check in LayoutWrapper */
/>
}
/>
{/* Route for Keycloak redirects */}
<Route path="/callback" element={<Navigate to="/" replace />} />
{/* Fallback route */}
<Route path="*" element={<Navigate to="/calendar" replace />} />
</Routes>
{/* Error notification component */}
<ErrorNotification />
</Router>
</ErrorInitializer>
</ErrorProvider>
);
};
export default App;