2022-11-16 22:15:34 +01:00
|
|
|
import React, { ReactElement, Suspense, useEffect } from 'react';
|
2022-11-12 18:08:14 +01:00
|
|
|
import { FormattedMessage, IntlProvider } from 'react-intl';
|
2022-11-16 22:15:34 +01:00
|
|
|
import { Route, Routes, BrowserRouter as Router, useNavigate } from 'react-router-dom';
|
2021-02-23 08:02:15 +01:00
|
|
|
import ForgotPasswordSuccessPage from './components/forgot-password-success-page';
|
|
|
|
import RegistationPage from './components/registration-page';
|
|
|
|
import LoginPage from './components/login-page';
|
|
|
|
import store from './redux/store';
|
|
|
|
import { ForgotPasswordPage } from './components/forgot-password-page';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { QueryClient, QueryClientProvider } from 'react-query';
|
|
|
|
import { theme } from './theme';
|
|
|
|
import AppI18n, { Locales } from './classes/app-i18n';
|
2022-02-06 01:42:43 +01:00
|
|
|
import CssBaseline from '@mui/material/CssBaseline';
|
|
|
|
import { ThemeProvider, Theme, StyledEngineProvider } from '@mui/material/styles';
|
2022-05-29 19:22:57 +02:00
|
|
|
import ReactGA from 'react-ga4';
|
2022-02-16 05:39:52 +01:00
|
|
|
import AppConfig from './classes/app-config';
|
2022-02-22 19:43:16 +01:00
|
|
|
import withSessionExpirationHandling from './components/HOCs/withSessionExpirationHandling';
|
2022-08-16 05:35:27 +02:00
|
|
|
import RegistrationSuccessPage from './components/registration-success-page';
|
2022-11-17 02:10:40 +01:00
|
|
|
import EditorPage from './components/editor-page';
|
2021-02-27 21:15:48 +01:00
|
|
|
|
2022-08-16 05:00:49 +02:00
|
|
|
const MapsPage = React.lazy(() => import('./components/maps-page'));
|
2022-02-06 01:42:43 +01:00
|
|
|
|
|
|
|
declare module '@mui/styles/defaultTheme' {
|
2022-07-09 03:34:52 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
|
|
interface DefaultTheme extends Theme {}
|
2022-02-06 01:42:43 +01:00
|
|
|
}
|
|
|
|
|
2021-02-27 21:15:48 +01:00
|
|
|
// Google Analytics Initialization.
|
2022-05-30 01:32:51 +02:00
|
|
|
ReactGA.initialize([
|
2022-07-09 03:34:52 +02:00
|
|
|
{
|
|
|
|
trackingId: AppConfig.getGoogleAnalyticsAccount(),
|
|
|
|
},
|
2022-05-30 01:32:51 +02:00
|
|
|
]);
|
2020-12-05 08:47:02 +01:00
|
|
|
|
2021-02-02 09:20:35 +01:00
|
|
|
const queryClient = new QueryClient({
|
2022-07-09 03:34:52 +02:00
|
|
|
defaultOptions: {
|
|
|
|
queries: {
|
|
|
|
refetchIntervalInBackground: false,
|
|
|
|
staleTime: 5 * 1000 * 60, // 10 minutes
|
2021-02-23 07:37:29 +01:00
|
|
|
},
|
2022-07-09 03:34:52 +02:00
|
|
|
},
|
2021-02-23 08:02:15 +01:00
|
|
|
});
|
2021-02-02 09:20:35 +01:00
|
|
|
|
2022-11-16 22:15:34 +01:00
|
|
|
// eslint-disable-next-line react/prop-types
|
|
|
|
function Redirect({ to }) {
|
|
|
|
const navigate = useNavigate();
|
|
|
|
useEffect(() => {
|
|
|
|
navigate(to);
|
|
|
|
});
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-02-23 07:37:29 +01:00
|
|
|
const App = (): ReactElement => {
|
2022-07-09 03:34:52 +02:00
|
|
|
const locale = AppI18n.getDefaultLocale();
|
|
|
|
const EnhacedEditorPage = withSessionExpirationHandling(EditorPage);
|
2022-02-21 03:50:03 +01:00
|
|
|
|
2022-07-09 03:34:52 +02:00
|
|
|
return locale.message ? (
|
|
|
|
<Provider store={store}>
|
|
|
|
<QueryClientProvider client={queryClient}>
|
|
|
|
<IntlProvider
|
|
|
|
locale={locale.code}
|
|
|
|
defaultLocale={Locales.EN.code}
|
|
|
|
messages={locale.message as Record<string, string>}
|
|
|
|
>
|
|
|
|
<StyledEngineProvider injectFirst>
|
|
|
|
<ThemeProvider theme={theme}>
|
|
|
|
<CssBaseline />
|
|
|
|
<Router>
|
2022-11-16 22:15:34 +01:00
|
|
|
<Routes>
|
|
|
|
<Route path="/" element={<Redirect to="/c/login" />} />
|
|
|
|
<Route path="/c/login" element={<LoginPage />} />
|
|
|
|
<Route path="/c/registration" element={<RegistationPage />} />
|
|
|
|
<Route path="/c/registration-success" element={<RegistrationSuccessPage />} />
|
|
|
|
<Route path="/c/forgot-password" element={<ForgotPasswordPage />} />
|
|
|
|
<Route
|
|
|
|
path="/c/forgot-password-success"
|
|
|
|
element={<ForgotPasswordSuccessPage />}
|
|
|
|
/>
|
|
|
|
<Route
|
|
|
|
path="/c/maps/"
|
|
|
|
element={
|
|
|
|
<Suspense
|
|
|
|
fallback={
|
|
|
|
<div>
|
|
|
|
<FormattedMessage id="dialog.loading" defaultMessage="Loading ..." />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<MapsPage />
|
|
|
|
</Suspense>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<Route
|
|
|
|
path="/c/maps/:id/edit"
|
|
|
|
element={<EnhacedEditorPage isTryMode={false} />}
|
|
|
|
/>
|
|
|
|
<Route path="/c/maps/:id/try" element={<EnhacedEditorPage isTryMode={true} />} />
|
|
|
|
</Routes>
|
2022-07-09 03:34:52 +02:00
|
|
|
</Router>
|
|
|
|
</ThemeProvider>
|
|
|
|
</StyledEngineProvider>
|
|
|
|
</IntlProvider>
|
|
|
|
</QueryClientProvider>
|
|
|
|
</Provider>
|
|
|
|
) : (
|
|
|
|
<div>Loading ... </div>
|
|
|
|
);
|
2021-02-23 08:02:15 +01:00
|
|
|
};
|
2020-12-05 08:47:02 +01:00
|
|
|
|
2021-02-23 08:02:15 +01:00
|
|
|
export default App;
|