2021-06-17 06:42:03 +00:00
|
|
|
import React, { useState, useEffect } from "react";
|
2021-01-02 10:58:24 +00:00
|
|
|
|
|
|
|
import { config as faConfig } from "@fortawesome/fontawesome-svg-core";
|
2021-01-20 12:07:40 +00:00
|
|
|
import { CssBaseline, ThemeProvider } from "@material-ui/core";
|
2021-11-05 02:36:52 +00:00
|
|
|
import { BrowserRouter as Router, Route, Routes } from "react-router-dom";
|
2021-01-02 10:58:24 +00:00
|
|
|
|
2021-06-19 08:20:43 +00:00
|
|
|
import NotificationBar from "@components/NotificationBar";
|
2019-11-18 23:37:36 +00:00
|
|
|
import {
|
2022-03-03 11:20:43 +00:00
|
|
|
ConsentRoute,
|
|
|
|
IndexRoute,
|
|
|
|
LogoutRoute,
|
|
|
|
RegisterOneTimePasswordRoute,
|
|
|
|
RegisterWebauthnRoute,
|
2021-01-02 10:58:24 +00:00
|
|
|
ResetPasswordStep2Route,
|
|
|
|
ResetPasswordStep1Route,
|
2021-06-19 08:20:43 +00:00
|
|
|
} from "@constants/Routes";
|
|
|
|
import NotificationsContext from "@hooks/NotificationsContext";
|
|
|
|
import { Notification } from "@models/Notifications";
|
|
|
|
import * as themes from "@themes/index";
|
|
|
|
import { getBasePath } from "@utils/BasePath";
|
2021-12-01 03:32:58 +00:00
|
|
|
import { getDuoSelfEnrollment, getRememberMe, getResetPassword, getTheme } from "@utils/Configuration";
|
2021-06-19 08:20:43 +00:00
|
|
|
import RegisterOneTimePassword from "@views/DeviceRegistration/RegisterOneTimePassword";
|
2022-03-03 11:20:43 +00:00
|
|
|
import RegisterWebauthn from "@views/DeviceRegistration/RegisterWebauthn";
|
2021-06-19 08:20:43 +00:00
|
|
|
import ConsentView from "@views/LoginPortal/ConsentView/ConsentView";
|
|
|
|
import LoginPortal from "@views/LoginPortal/LoginPortal";
|
|
|
|
import SignOut from "@views/LoginPortal/SignOut/SignOut";
|
|
|
|
import ResetPasswordStep1 from "@views/ResetPassword/ResetPasswordStep1";
|
|
|
|
import ResetPasswordStep2 from "@views/ResetPassword/ResetPasswordStep2";
|
2021-01-02 10:58:24 +00:00
|
|
|
|
|
|
|
import "@fortawesome/fontawesome-svg-core/styles.css";
|
2020-04-25 22:12:55 +00:00
|
|
|
|
|
|
|
faConfig.autoAddCss = false;
|
2019-11-18 23:37:36 +00:00
|
|
|
|
2021-01-20 12:07:40 +00:00
|
|
|
function Theme() {
|
|
|
|
switch (getTheme()) {
|
|
|
|
case "dark":
|
|
|
|
return themes.Dark;
|
|
|
|
case "grey":
|
|
|
|
return themes.Grey;
|
2021-06-17 06:42:03 +00:00
|
|
|
case "auto":
|
|
|
|
return window.matchMedia("(prefers-color-scheme: dark)").matches ? themes.Dark : themes.Light;
|
2021-01-20 12:07:40 +00:00
|
|
|
default:
|
|
|
|
return themes.Light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-18 23:37:36 +00:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [notification, setNotification] = useState(null as Notification | null);
|
2021-06-17 06:42:03 +00:00
|
|
|
const [theme, setTheme] = useState(Theme());
|
|
|
|
useEffect(() => {
|
|
|
|
if (getTheme() === "auto") {
|
|
|
|
const query = window.matchMedia("(prefers-color-scheme: dark)");
|
|
|
|
// MediaQueryLists does not inherit from EventTarget in Internet Explorer
|
|
|
|
if (query.addEventListener) {
|
|
|
|
query.addEventListener("change", (e) => {
|
|
|
|
setTheme(e.matches ? themes.Dark : themes.Light);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, []);
|
2019-11-18 23:37:36 +00:00
|
|
|
return (
|
2021-06-17 06:42:03 +00:00
|
|
|
<ThemeProvider theme={theme}>
|
2021-01-20 12:07:40 +00:00
|
|
|
<CssBaseline />
|
|
|
|
<NotificationsContext.Provider value={{ notification, setNotification }}>
|
|
|
|
<Router basename={getBasePath()}>
|
|
|
|
<NotificationBar onClose={() => setNotification(null)} />
|
2021-11-05 02:36:52 +00:00
|
|
|
<Routes>
|
|
|
|
<Route path={ResetPasswordStep1Route} element={<ResetPasswordStep1 />} />
|
|
|
|
<Route path={ResetPasswordStep2Route} element={<ResetPasswordStep2 />} />
|
2022-03-03 11:20:43 +00:00
|
|
|
<Route path={RegisterWebauthnRoute} element={<RegisterWebauthn />} />
|
2021-11-05 02:36:52 +00:00
|
|
|
<Route path={RegisterOneTimePasswordRoute} element={<RegisterOneTimePassword />} />
|
|
|
|
<Route path={LogoutRoute} element={<SignOut />} />
|
|
|
|
<Route path={ConsentRoute} element={<ConsentView />} />
|
|
|
|
<Route
|
2022-03-03 11:20:43 +00:00
|
|
|
path={`${IndexRoute}*`}
|
2021-12-01 03:32:58 +00:00
|
|
|
element={
|
|
|
|
<LoginPortal
|
|
|
|
duoSelfEnrollment={getDuoSelfEnrollment()}
|
|
|
|
rememberMe={getRememberMe()}
|
|
|
|
resetPassword={getResetPassword()}
|
|
|
|
/>
|
|
|
|
}
|
2021-11-05 02:36:52 +00:00
|
|
|
/>
|
|
|
|
</Routes>
|
2021-01-20 12:07:40 +00:00
|
|
|
</Router>
|
|
|
|
</NotificationsContext.Provider>
|
|
|
|
</ThemeProvider>
|
2019-11-18 23:37:36 +00:00
|
|
|
);
|
2021-01-02 10:58:24 +00:00
|
|
|
};
|
2019-11-18 23:37:36 +00:00
|
|
|
|
|
|
|
export default App;
|