2023-06-15 06:45:21 +00:00
|
|
|
import React from "react";
|
2023-06-06 14:39:47 +00:00
|
|
|
import { Route, Routes } from "react-router-dom";
|
|
|
|
import "./App.css";
|
|
|
|
import { AuthApi } from "./api/AuthApi";
|
2023-07-08 10:51:03 +00:00
|
|
|
import { DeleteAccountRoute } from "./routes/DeleteAccountRoute";
|
|
|
|
import { FamiliesListRoute } from "./routes/FamiliesListRoute";
|
2023-06-06 14:39:47 +00:00
|
|
|
import { NotFoundRoute } from "./routes/NotFound";
|
2023-06-15 06:45:21 +00:00
|
|
|
import { ProfileRoute } from "./routes/ProfileRoute";
|
2023-06-09 08:45:01 +00:00
|
|
|
import { LoginRoute } from "./routes/auth/LoginRoute";
|
2023-06-15 06:45:21 +00:00
|
|
|
import { NewAccountRoute } from "./routes/auth/NewAccountRoute";
|
2023-06-09 08:45:01 +00:00
|
|
|
import { OIDCCbRoute } from "./routes/auth/OIDCCbRoute";
|
2023-06-09 16:55:36 +00:00
|
|
|
import { PasswordForgottenRoute } from "./routes/auth/PasswordForgottenRoute";
|
2023-06-12 14:25:38 +00:00
|
|
|
import { ResetPasswordRoute } from "./routes/auth/ResetPasswordRoute";
|
2023-07-08 10:51:03 +00:00
|
|
|
import { FamilyHomeRoute } from "./routes/family/FamilyHomeRoute";
|
2023-06-15 06:45:21 +00:00
|
|
|
import { BaseAuthenticatedPage } from "./widgets/BaseAuthenticatedPage";
|
2023-07-08 09:59:55 +00:00
|
|
|
import { BaseFamilyRoute } from "./widgets/BaseFamilyRoute";
|
2023-07-08 10:51:03 +00:00
|
|
|
import { BaseLoginPage } from "./widgets/BaseLoginpage";
|
2023-07-09 15:02:43 +00:00
|
|
|
import { FamilyUsersListRoute } from "./routes/family/FamilyUsersListRoute";
|
2023-07-12 15:44:39 +00:00
|
|
|
import { FamilySettingsRoute } from "./routes/family/FamilySettingsRoute";
|
2023-06-15 06:45:21 +00:00
|
|
|
|
|
|
|
interface AuthContext {
|
|
|
|
signedIn: boolean;
|
|
|
|
setSignedIn: (signedIn: boolean) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const AuthContextK = React.createContext<AuthContext | null>(null);
|
2023-06-06 08:52:50 +00:00
|
|
|
|
2023-06-09 16:55:36 +00:00
|
|
|
/**
|
|
|
|
* Core app
|
|
|
|
*/
|
2023-06-15 06:45:21 +00:00
|
|
|
export function App(): React.ReactElement {
|
|
|
|
const [signedIn, setSignedIn] = React.useState(AuthApi.SignedIn);
|
|
|
|
|
|
|
|
const context: AuthContext = {
|
|
|
|
signedIn: signedIn,
|
|
|
|
setSignedIn: (s) => setSignedIn(s),
|
|
|
|
};
|
2023-06-09 08:45:01 +00:00
|
|
|
|
2023-06-06 08:52:50 +00:00
|
|
|
return (
|
2023-07-08 14:54:26 +00:00
|
|
|
<AuthContextK.Provider value={context}>
|
|
|
|
<Routes>
|
|
|
|
<Route path="delete_account" element={<DeleteAccountRoute />} />
|
2023-06-15 07:33:41 +00:00
|
|
|
|
2023-07-08 14:54:26 +00:00
|
|
|
{signedIn ? (
|
|
|
|
<Route path="*" element={<BaseAuthenticatedPage />}>
|
|
|
|
<Route path="" element={<FamiliesListRoute />} />
|
|
|
|
<Route path="profile" element={<ProfileRoute />} />
|
|
|
|
<Route path="family/:familyId/*" element={<BaseFamilyRoute />}>
|
|
|
|
<Route path="" element={<FamilyHomeRoute />} />
|
2023-07-12 15:44:39 +00:00
|
|
|
<Route path="settings" element={<FamilySettingsRoute />} />
|
2023-07-09 15:02:43 +00:00
|
|
|
<Route path="users" element={<FamilyUsersListRoute />} />
|
2023-07-08 09:59:55 +00:00
|
|
|
<Route path="*" element={<NotFoundRoute />} />
|
|
|
|
</Route>
|
2023-07-08 14:54:26 +00:00
|
|
|
<Route path="*" element={<NotFoundRoute />} />
|
|
|
|
</Route>
|
|
|
|
) : (
|
|
|
|
<Route path="*" element={<BaseLoginPage />}>
|
|
|
|
<Route path="" element={<LoginRoute />} />
|
|
|
|
<Route path="oidc_cb" element={<OIDCCbRoute />} />
|
|
|
|
<Route path="new-account" element={<NewAccountRoute />} />
|
|
|
|
<Route
|
|
|
|
path="password_forgotten"
|
|
|
|
element={<PasswordForgottenRoute />}
|
|
|
|
/>
|
|
|
|
<Route path="reset_password" element={<ResetPasswordRoute />} />
|
|
|
|
<Route path="*" element={<NotFoundRoute />} />
|
|
|
|
</Route>
|
|
|
|
)}
|
|
|
|
</Routes>
|
|
|
|
</AuthContextK.Provider>
|
2023-06-06 08:52:50 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-06-15 06:45:21 +00:00
|
|
|
export function useAuth(): AuthContext {
|
|
|
|
return React.useContext(AuthContextK)!;
|
|
|
|
}
|