mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-15 19:47:57 +01:00
2c4d937ffa
* Migration to TS * Change to typescript * Fix css style issue due to bootstrap. * Fix eslit errors * Remove print button on try
102 lines
4.4 KiB
TypeScript
102 lines
4.4 KiB
TypeScript
import React, { ReactElement } from 'react';
|
|
import { IntlProvider } from 'react-intl';
|
|
import { Route, Switch, Redirect, BrowserRouter as Router } from 'react-router-dom';
|
|
import RegistrationSuccessPage from './components/registration-success-page';
|
|
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';
|
|
import MapsPage from './components/maps-page';
|
|
import CssBaseline from '@mui/material/CssBaseline';
|
|
import { ThemeProvider, Theme, StyledEngineProvider } from '@mui/material/styles';
|
|
import ReactGA from 'react-ga';
|
|
import EditorPage from './components/editor-page';
|
|
import AppConfig from './classes/app-config';
|
|
import withSessionExpirationHandling from './components/HOCs/withSessionExpirationHandling';
|
|
|
|
|
|
declare module '@mui/styles/defaultTheme' {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
interface DefaultTheme extends Theme { }
|
|
}
|
|
|
|
// Google Analytics Initialization.
|
|
ReactGA.initialize(AppConfig.getGoogleAnalyticsAccount());
|
|
|
|
const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
refetchIntervalInBackground: false,
|
|
staleTime: 5 * 1000 * 60, // 10 minutes
|
|
},
|
|
},
|
|
});
|
|
|
|
const App = (): ReactElement => {
|
|
const locale = AppI18n.getBrowserLocale();
|
|
const EnhacedEditorPage = withSessionExpirationHandling(EditorPage);
|
|
|
|
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>
|
|
<Switch>
|
|
<Route exact path="/">
|
|
<Redirect to="/c/login" />
|
|
</Route>
|
|
<Route path="/c/login"
|
|
component={LoginPage}
|
|
/>
|
|
<Route
|
|
path="/c/registration"
|
|
component={RegistationPage}
|
|
/>
|
|
<Route
|
|
path="/c/registration-success"
|
|
component={RegistrationSuccessPage}
|
|
/>
|
|
<Route
|
|
path="/c/forgot-password"
|
|
component={ForgotPasswordPage}
|
|
/>
|
|
<Route
|
|
path="/c/forgot-password-success"
|
|
component={ForgotPasswordSuccessPage}
|
|
/>
|
|
<Route
|
|
exact path="/c/maps/"
|
|
component={withSessionExpirationHandling(MapsPage)}
|
|
/>
|
|
<Route exact path="/c/maps/:id/edit">
|
|
<EnhacedEditorPage isTryMode={false}/>
|
|
</Route>
|
|
<Route exact path="/c/maps/:id/try">
|
|
<EnhacedEditorPage isTryMode={true} />
|
|
</Route>
|
|
</Switch>
|
|
</Router>
|
|
</ThemeProvider>
|
|
</StyledEngineProvider>
|
|
</IntlProvider>
|
|
</QueryClientProvider>
|
|
</Provider>
|
|
) : (
|
|
<div>Loading ... </div>
|
|
);
|
|
};
|
|
|
|
export default App;
|