Files
bakery-ia/frontend/src/router/AppRouter.tsx

295 lines
8.7 KiB
TypeScript
Raw Normal View History

2025-08-28 10:41:04 +02:00
import React, { Suspense } from 'react';
import { Routes, Route, Navigate } from 'react-router-dom';
import { ProtectedRoute } from './ProtectedRoute';
import { LoadingSpinner } from '../components/shared/LoadingSpinner';
import { AppShell } from '../components/layout';
// Lazy load the pages we actually have
const LandingPage = React.lazy(() => import('../pages/public/LandingPage'));
const LoginPage = React.lazy(() => import('../pages/public/LoginPage'));
const RegisterPage = React.lazy(() => import('../pages/public/RegisterPage'));
const DashboardPage = React.lazy(() => import('../pages/app/DashboardPage'));
// Operations pages
const InventoryPage = React.lazy(() => import('../pages/app/operations/inventory/InventoryPage'));
const ProductionPage = React.lazy(() => import('../pages/app/operations/production/ProductionPage'));
const RecipesPage = React.lazy(() => import('../pages/app/operations/recipes/RecipesPage'));
const ProcurementPage = React.lazy(() => import('../pages/app/operations/procurement/ProcurementPage'));
const OrdersPage = React.lazy(() => import('../pages/app/operations/orders/OrdersPage'));
const POSPage = React.lazy(() => import('../pages/app/operations/pos/POSPage'));
// Analytics pages
const ForecastingPage = React.lazy(() => import('../pages/app/analytics/forecasting/ForecastingPage'));
const SalesAnalyticsPage = React.lazy(() => import('../pages/app/analytics/sales-analytics/SalesAnalyticsPage'));
const AIInsightsPage = React.lazy(() => import('../pages/app/analytics/ai-insights/AIInsightsPage'));
const PerformanceAnalyticsPage = React.lazy(() => import('../pages/app/analytics/performance/PerformanceAnalyticsPage'));
// Communications pages
const PreferencesPage = React.lazy(() => import('../pages/app/communications/preferences/PreferencesPage'));
// Settings pages
2025-08-28 23:40:44 +02:00
const ProfilePage = React.lazy(() => import('../pages/app/settings/profile/ProfilePage'));
2025-08-28 10:41:04 +02:00
const BakeryConfigPage = React.lazy(() => import('../pages/app/settings/bakery-config/BakeryConfigPage'));
const TeamPage = React.lazy(() => import('../pages/app/settings/team/TeamPage'));
2025-09-01 19:21:12 +02:00
const SubscriptionPage = React.lazy(() => import('../pages/app/settings/subscription/SubscriptionPage'));
2025-08-28 10:41:04 +02:00
// Data pages
const WeatherPage = React.lazy(() => import('../pages/app/data/weather/WeatherPage'));
const TrafficPage = React.lazy(() => import('../pages/app/data/traffic/TrafficPage'));
const EventsPage = React.lazy(() => import('../pages/app/data/events/EventsPage'));
// Onboarding pages
2025-09-03 14:06:38 +02:00
const OnboardingPage = React.lazy(() => import('../pages/app/onboarding/OnboardingPage'));
2025-08-28 10:41:04 +02:00
export const AppRouter: React.FC = () => {
return (
<Suspense fallback={<LoadingSpinner overlay text="Cargando aplicación..." />}>
<Routes>
{/* Public Routes */}
<Route path="/" element={<LandingPage />} />
<Route path="/login" element={<LoginPage />} />
<Route path="/register" element={<RegisterPage />} />
{/* Protected Routes with AppShell Layout */}
<Route
path="/app"
element={
<ProtectedRoute>
<AppShell>
<DashboardPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/dashboard"
element={
<ProtectedRoute>
<AppShell>
<DashboardPage />
</AppShell>
</ProtectedRoute>
}
/>
{/* Operations Routes */}
<Route
path="/app/operations/inventory"
element={
<ProtectedRoute>
<AppShell>
<InventoryPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/operations/production"
element={
<ProtectedRoute>
<AppShell>
<ProductionPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/operations/recipes"
element={
<ProtectedRoute>
<AppShell>
<RecipesPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/operations/procurement"
element={
<ProtectedRoute>
<AppShell>
<ProcurementPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/operations/orders"
element={
<ProtectedRoute>
<AppShell>
<OrdersPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/operations/pos"
element={
<ProtectedRoute>
<AppShell>
<POSPage />
</AppShell>
</ProtectedRoute>
}
/>
{/* Analytics Routes */}
<Route
path="/app/analytics/forecasting"
element={
<ProtectedRoute>
<AppShell>
<ForecastingPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/analytics/sales"
element={
<ProtectedRoute>
<AppShell>
<SalesAnalyticsPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/analytics/ai-insights"
element={
<ProtectedRoute>
<AppShell>
<AIInsightsPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/analytics/performance"
element={
<ProtectedRoute>
<AppShell>
<PerformanceAnalyticsPage />
</AppShell>
</ProtectedRoute>
}
/>
{/* Communications Routes */}
<Route
2025-09-02 08:38:49 +02:00
path="/app/communications/preferences"
2025-08-28 10:41:04 +02:00
element={
<ProtectedRoute>
<AppShell>
2025-09-02 08:38:49 +02:00
<PreferencesPage />
2025-08-28 10:41:04 +02:00
</AppShell>
</ProtectedRoute>
}
/>
2025-09-02 08:38:49 +02:00
{/* Settings Routes */}
2025-08-28 10:41:04 +02:00
<Route
2025-09-02 08:38:49 +02:00
path="/app/settings/preferences"
2025-08-28 10:41:04 +02:00
element={
<ProtectedRoute>
<AppShell>
<PreferencesPage />
</AppShell>
</ProtectedRoute>
}
/>
{/* Settings Routes */}
2025-08-28 23:40:44 +02:00
<Route
path="/app/settings/profile"
element={
<ProtectedRoute>
<AppShell>
<ProfilePage />
</AppShell>
</ProtectedRoute>
}
/>
2025-08-28 10:41:04 +02:00
<Route
path="/app/settings/bakery-config"
element={
<ProtectedRoute>
<AppShell>
<BakeryConfigPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/settings/team"
element={
<ProtectedRoute>
<AppShell>
<TeamPage />
</AppShell>
</ProtectedRoute>
}
/>
2025-09-01 19:21:12 +02:00
<Route
path="/app/settings/subscription"
element={
<ProtectedRoute>
<AppShell>
<SubscriptionPage />
</AppShell>
</ProtectedRoute>
}
2025-08-28 10:41:04 +02:00
/>
{/* Data Routes */}
<Route
path="/app/data/weather"
element={
<ProtectedRoute>
<AppShell>
<WeatherPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/data/traffic"
element={
<ProtectedRoute>
<AppShell>
<TrafficPage />
</AppShell>
</ProtectedRoute>
}
/>
<Route
path="/app/data/events"
element={
<ProtectedRoute>
<AppShell>
<EventsPage />
</AppShell>
</ProtectedRoute>
}
/>
2025-09-03 14:06:38 +02:00
{/* Onboarding Route - New Complete Flow */}
2025-08-28 10:41:04 +02:00
<Route
2025-09-03 14:06:38 +02:00
path="/app/onboarding"
2025-08-28 10:41:04 +02:00
element={
<ProtectedRoute>
2025-09-03 14:06:38 +02:00
<OnboardingPage />
2025-08-28 10:41:04 +02:00
</ProtectedRoute>
}
/>
{/* Default redirects */}
<Route path="/app/*" element={<Navigate to="/app/dashboard" replace />} />
<Route path="*" element={<Navigate to="/" replace />} />
</Routes>
</Suspense>
);
};
export default AppRouter;