Add src/App.jsx

This commit is contained in:
Eric Lay 2026-03-11 08:36:13 -05:00
parent b797871679
commit a5f65b28bf
1 changed files with 80 additions and 0 deletions

80
src/App.jsx Normal file
View File

@ -0,0 +1,80 @@
import { Toaster } from "@/components/ui/toaster"
import { QueryClientProvider } from '@tanstack/react-query'
import { queryClientInstance } from '@/lib/query-client'
import { pagesConfig } from './pages.config'
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import PageNotFound from './lib/PageNotFound';
import { AuthProvider, useAuth } from '@/lib/AuthContext';
import UserNotRegisteredError from '@/components/UserNotRegisteredError';
const { Pages, Layout, mainPage } = pagesConfig;
const mainPageKey = mainPage ?? Object.keys(Pages)[0];
const MainPage = mainPageKey ? Pages[mainPageKey] : <></>;
const LayoutWrapper = ({ children, currentPageName }) => Layout ?
<Layout currentPageName={currentPageName}>{children}</Layout>
: <>{children}</>;
const AuthenticatedApp = () => {
const { isLoadingAuth, isLoadingPublicSettings, authError, navigateToLogin } = useAuth();
// Show loading spinner while checking app public settings or auth
if (isLoadingPublicSettings || isLoadingAuth) {
return (
<div className="fixed inset-0 flex items-center justify-center">
<div className="w-8 h-8 border-4 border-slate-200 border-t-slate-800 rounded-full animate-spin"></div>
</div>
);
}
// Handle authentication errors
if (authError) {
if (authError.type === 'user_not_registered') {
return <UserNotRegisteredError />;
} else if (authError.type === 'auth_required') {
// Redirect to login automatically
navigateToLogin();
return null;
}
}
// Render the main app
return (
<Routes>
<Route path="/" element={
<LayoutWrapper currentPageName={mainPageKey}>
<MainPage />
</LayoutWrapper>
} />
{Object.entries(Pages).map(([path, Page]) => (
<Route
key={path}
path={`/${path}`}
element={
<LayoutWrapper currentPageName={path}>
<Page />
</LayoutWrapper>
}
/>
))}
<Route path="*" element={<PageNotFound />} />
</Routes>
);
};
function App() {
return (
<AuthProvider>
<QueryClientProvider client={queryClientInstance}>
<Router>
<AuthenticatedApp />
</Router>
<Toaster />
</QueryClientProvider>
</AuthProvider>
)
}
export default App