2021-02-17 06:51:59 +01:00
|
|
|
import React, { ReactElement } from 'react';
|
2020-12-26 06:39:54 +01:00
|
|
|
import { IntlProvider } from 'react-intl';
|
|
|
|
import { Route, Switch, Redirect, BrowserRouter as Router } from 'react-router-dom';
|
2020-12-05 08:47:02 +01:00
|
|
|
|
2020-12-12 05:06:42 +01:00
|
|
|
import RegistrationSuccessPage from './components/registration-success-page';
|
|
|
|
import ForgotPasswordSuccessPage from './components/forgot-password-success-page';
|
|
|
|
import RegistationPage from './components/registration-page';
|
2020-12-08 08:34:01 +01:00
|
|
|
import LoginPage from './components/login-page';
|
2021-02-05 08:05:46 +01:00
|
|
|
import store from "./redux/store";
|
2020-12-08 08:34:01 +01:00
|
|
|
import { ForgotPasswordPage } from './components/forgot-password-page';
|
2020-12-25 02:39:06 +01:00
|
|
|
import { Provider } from 'react-redux';
|
2020-12-27 18:58:21 +01:00
|
|
|
import { QueryClient, QueryClientProvider } from 'react-query';
|
2021-01-25 19:39:53 +01:00
|
|
|
import { theme } from './theme'
|
2021-02-15 01:33:36 +01:00
|
|
|
import AppI18n, { Locales } from './classes/app-i18n';
|
|
|
|
import MapsPage from './components/maps-page';
|
2021-02-16 19:05:41 +01:00
|
|
|
import CssBaseline from '@material-ui/core/CssBaseline';
|
|
|
|
import { ThemeProvider } from '@material-ui/core/styles';
|
2020-12-05 08:47:02 +01:00
|
|
|
|
2021-02-02 09:20:35 +01:00
|
|
|
const queryClient = new QueryClient({
|
|
|
|
defaultOptions: {
|
|
|
|
queries: {
|
|
|
|
refetchIntervalInBackground: false,
|
2021-02-13 19:10:02 +01:00
|
|
|
staleTime: 5 * 1000 * 60 // 10 minutes
|
2021-02-02 09:20:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-02-17 06:51:59 +01:00
|
|
|
const App = ():ReactElement => {
|
2021-02-15 02:53:37 +01:00
|
|
|
const appi18n = new AppI18n();
|
|
|
|
const locale = appi18n.getBrowserLocale();
|
2020-12-05 08:47:02 +01:00
|
|
|
|
2021-02-15 01:33:36 +01:00
|
|
|
return locale.message ? (
|
2020-12-25 02:39:06 +01:00
|
|
|
<Provider store={store}>
|
2021-02-13 19:10:02 +01:00
|
|
|
<QueryClientProvider client={queryClient}>
|
2021-02-17 06:51:59 +01:00
|
|
|
<IntlProvider locale={locale.code} defaultLocale={Locales.EN.code} messages={locale.message as Record<string, string> }>
|
2021-02-15 01:33:36 +01:00
|
|
|
<CssBaseline />
|
2021-02-13 19:10:02 +01:00
|
|
|
<ThemeProvider theme={theme}>
|
|
|
|
<Router>
|
|
|
|
<Switch>
|
|
|
|
<Route exact path="/">
|
|
|
|
<Redirect to="/c/login" />
|
|
|
|
</Route>
|
|
|
|
<Route path="/c/login" component={LoginPage} />
|
|
|
|
<Route path="/c/registration">
|
|
|
|
<RegistationPage />
|
|
|
|
</Route>
|
|
|
|
<Route path="/c/registration-success" component={RegistrationSuccessPage} />
|
|
|
|
<Route path="/c/forgot-password">
|
|
|
|
<ForgotPasswordPage />
|
|
|
|
</Route>
|
|
|
|
<Route path="/c/forgot-password-success" component={ForgotPasswordSuccessPage} />
|
|
|
|
<Route path="/c/maps/">
|
|
|
|
<MapsPage />
|
|
|
|
</Route>
|
|
|
|
</Switch>
|
|
|
|
</Router>
|
|
|
|
</ThemeProvider>
|
|
|
|
</IntlProvider>
|
|
|
|
</QueryClientProvider>
|
2020-12-25 02:39:06 +01:00
|
|
|
</Provider>
|
|
|
|
|
2021-02-15 01:33:36 +01:00
|
|
|
) : (<div>Loading ... </div>)
|
2020-12-05 08:47:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|