2021-01-02 10:58:24 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
|
|
|
|
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-01-02 10:58:24 +00:00
|
|
|
import { BrowserRouter as Router, Route, Switch, Redirect } from "react-router-dom";
|
|
|
|
|
|
|
|
import NotificationBar from "./components/NotificationBar";
|
|
|
|
import NotificationsContext from "./hooks/NotificationsContext";
|
|
|
|
import { Notification } from "./models/Notifications";
|
2019-11-18 23:37:36 +00:00
|
|
|
import {
|
2021-01-02 10:58:24 +00:00
|
|
|
FirstFactorRoute,
|
|
|
|
ResetPasswordStep2Route,
|
|
|
|
ResetPasswordStep1Route,
|
|
|
|
RegisterSecurityKeyRoute,
|
2019-11-18 23:37:36 +00:00
|
|
|
RegisterOneTimePasswordRoute,
|
|
|
|
LogoutRoute,
|
|
|
|
} from "./Routes";
|
2021-01-20 12:07:40 +00:00
|
|
|
import * as themes from "./themes";
|
2021-01-02 10:58:24 +00:00
|
|
|
import { getBasePath } from "./utils/BasePath";
|
2021-01-20 12:07:40 +00:00
|
|
|
import { getRememberMe, getResetPassword, getTheme } from "./utils/Configuration";
|
2021-01-02 10:58:24 +00:00
|
|
|
import RegisterOneTimePassword from "./views/DeviceRegistration/RegisterOneTimePassword";
|
|
|
|
import RegisterSecurityKey from "./views/DeviceRegistration/RegisterSecurityKey";
|
|
|
|
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";
|
|
|
|
|
|
|
|
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;
|
|
|
|
default:
|
|
|
|
return themes.Light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-18 23:37:36 +00:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [notification, setNotification] = useState(null as Notification | null);
|
2019-12-07 16:40:42 +00:00
|
|
|
|
2019-11-18 23:37:36 +00:00
|
|
|
return (
|
2021-01-20 12:07:40 +00:00
|
|
|
<ThemeProvider theme={Theme()}>
|
|
|
|
<CssBaseline />
|
|
|
|
<NotificationsContext.Provider value={{ notification, setNotification }}>
|
|
|
|
<Router basename={getBasePath()}>
|
|
|
|
<NotificationBar onClose={() => setNotification(null)} />
|
|
|
|
<Switch>
|
|
|
|
<Route path={ResetPasswordStep1Route} exact>
|
|
|
|
<ResetPasswordStep1 />
|
|
|
|
</Route>
|
|
|
|
<Route path={ResetPasswordStep2Route} exact>
|
|
|
|
<ResetPasswordStep2 />
|
|
|
|
</Route>
|
|
|
|
<Route path={RegisterSecurityKeyRoute} exact>
|
|
|
|
<RegisterSecurityKey />
|
|
|
|
</Route>
|
|
|
|
<Route path={RegisterOneTimePasswordRoute} exact>
|
|
|
|
<RegisterOneTimePassword />
|
|
|
|
</Route>
|
|
|
|
<Route path={LogoutRoute} exact>
|
|
|
|
<SignOut />
|
|
|
|
</Route>
|
|
|
|
<Route path={FirstFactorRoute}>
|
|
|
|
<LoginPortal rememberMe={getRememberMe()} resetPassword={getResetPassword()} />
|
|
|
|
</Route>
|
|
|
|
<Route path="/">
|
|
|
|
<Redirect to={FirstFactorRoute} />
|
|
|
|
</Route>
|
|
|
|
</Switch>
|
|
|
|
</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;
|