2022-06-12 15:56:00 +00:00
|
|
|
import React, { lazy } from 'react';
|
2019-06-10 00:29:10 +00:00
|
|
|
import { hot } from 'react-hot-loader/root';
|
2022-02-05 17:08:43 +00:00
|
|
|
import { Route, Router, Switch } from 'react-router-dom';
|
2019-06-22 23:45:51 +00:00
|
|
|
import { StoreProvider } from 'easy-peasy';
|
|
|
|
import { store } from '@/state';
|
2019-12-16 02:05:44 +00:00
|
|
|
import { SiteSettings } from '@/state/settings';
|
2020-04-10 19:41:08 +00:00
|
|
|
import ProgressBar from '@/components/elements/ProgressBar';
|
2021-01-31 02:01:32 +00:00
|
|
|
import { NotFound } from '@/components/elements/ScreenBlock';
|
2022-06-05 18:34:29 +00:00
|
|
|
import tw from 'twin.macro';
|
2020-07-03 21:50:37 +00:00
|
|
|
import GlobalStylesheet from '@/assets/css/GlobalStylesheet';
|
2020-12-28 18:10:01 +00:00
|
|
|
import { history } from '@/components/history';
|
2020-12-06 21:56:14 +00:00
|
|
|
import { setupInterceptors } from '@/api/interceptors';
|
2022-05-28 17:32:35 +00:00
|
|
|
import AuthenticatedRoute from '@/components/elements/AuthenticatedRoute';
|
|
|
|
import { ServerContext } from '@/state/server';
|
2022-06-05 18:34:29 +00:00
|
|
|
import '@/assets/tailwind.css';
|
2022-06-12 15:56:00 +00:00
|
|
|
import Spinner from '@/components/elements/Spinner';
|
|
|
|
|
2022-06-26 19:13:52 +00:00
|
|
|
const DashboardRouter = lazy(() => import(/* webpackChunkName: "dashboard" */ '@/routers/DashboardRouter'));
|
|
|
|
const ServerRouter = lazy(() => import(/* webpackChunkName: "server" */ '@/routers/ServerRouter'));
|
|
|
|
const AuthenticationRouter = lazy(() => import(/* webpackChunkName: "auth" */ '@/routers/AuthenticationRouter'));
|
2019-06-10 00:29:10 +00:00
|
|
|
|
2019-12-16 02:05:44 +00:00
|
|
|
interface ExtendedWindow extends Window {
|
|
|
|
SiteConfiguration?: SiteSettings;
|
2019-06-23 00:07:28 +00:00
|
|
|
PterodactylUser?: {
|
|
|
|
uuid: string;
|
|
|
|
username: string;
|
|
|
|
email: string;
|
2020-07-03 20:55:33 +00:00
|
|
|
/* eslint-disable camelcase */
|
2019-06-23 00:07:28 +00:00
|
|
|
root_admin: boolean;
|
|
|
|
use_totp: boolean;
|
|
|
|
language: string;
|
|
|
|
updated_at: string;
|
|
|
|
created_at: string;
|
2020-07-03 20:55:33 +00:00
|
|
|
/* eslint-enable camelcase */
|
2019-06-23 00:07:28 +00:00
|
|
|
};
|
|
|
|
}
|
2019-06-22 23:45:51 +00:00
|
|
|
|
2020-12-06 21:56:14 +00:00
|
|
|
setupInterceptors(history);
|
|
|
|
|
2019-06-23 00:07:28 +00:00
|
|
|
const App = () => {
|
2022-06-26 19:13:52 +00:00
|
|
|
const { PterodactylUser, SiteConfiguration } = window as ExtendedWindow;
|
2019-12-16 02:05:44 +00:00
|
|
|
if (PterodactylUser && !store.getState().user.data) {
|
2019-06-23 00:07:28 +00:00
|
|
|
store.getActions().user.setUserData({
|
2019-12-16 02:05:44 +00:00
|
|
|
uuid: PterodactylUser.uuid,
|
|
|
|
username: PterodactylUser.username,
|
|
|
|
email: PterodactylUser.email,
|
|
|
|
language: PterodactylUser.language,
|
|
|
|
rootAdmin: PterodactylUser.root_admin,
|
|
|
|
useTotp: PterodactylUser.use_totp,
|
|
|
|
createdAt: new Date(PterodactylUser.created_at),
|
|
|
|
updatedAt: new Date(PterodactylUser.updated_at),
|
2019-06-23 00:07:28 +00:00
|
|
|
});
|
2019-06-12 06:12:03 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 02:05:44 +00:00
|
|
|
if (!store.getState().settings.data) {
|
|
|
|
store.getActions().settings.setSettings(SiteConfiguration!);
|
|
|
|
}
|
|
|
|
|
2019-06-23 00:07:28 +00:00
|
|
|
return (
|
2020-07-03 21:50:37 +00:00
|
|
|
<>
|
2022-06-26 19:13:52 +00:00
|
|
|
<GlobalStylesheet />
|
2020-07-03 21:50:37 +00:00
|
|
|
<StoreProvider store={store}>
|
2022-06-26 19:13:52 +00:00
|
|
|
<ProgressBar />
|
2020-12-27 19:18:33 +00:00
|
|
|
<div css={tw`mx-auto w-auto`}>
|
|
|
|
<Router history={history}>
|
|
|
|
<Switch>
|
2022-05-28 17:32:35 +00:00
|
|
|
<Route path={'/auth'}>
|
2022-06-12 15:56:00 +00:00
|
|
|
<Spinner.Suspense>
|
2022-06-26 19:13:52 +00:00
|
|
|
<AuthenticationRouter />
|
2022-06-12 15:56:00 +00:00
|
|
|
</Spinner.Suspense>
|
2022-05-28 17:32:35 +00:00
|
|
|
</Route>
|
|
|
|
<AuthenticatedRoute path={'/server/:id'}>
|
2022-06-12 15:56:00 +00:00
|
|
|
<Spinner.Suspense>
|
|
|
|
<ServerContext.Provider>
|
2022-06-26 19:13:52 +00:00
|
|
|
<ServerRouter />
|
2022-06-12 15:56:00 +00:00
|
|
|
</ServerContext.Provider>
|
|
|
|
</Spinner.Suspense>
|
2022-05-28 17:32:35 +00:00
|
|
|
</AuthenticatedRoute>
|
|
|
|
<AuthenticatedRoute path={'/'}>
|
2022-06-12 15:56:00 +00:00
|
|
|
<Spinner.Suspense>
|
2022-06-26 19:13:52 +00:00
|
|
|
<DashboardRouter />
|
2022-06-12 15:56:00 +00:00
|
|
|
</Spinner.Suspense>
|
2022-05-28 17:32:35 +00:00
|
|
|
</AuthenticatedRoute>
|
|
|
|
<Route path={'*'}>
|
2022-06-26 19:13:52 +00:00
|
|
|
<NotFound />
|
2022-05-28 17:32:35 +00:00
|
|
|
</Route>
|
2020-12-27 19:18:33 +00:00
|
|
|
</Switch>
|
|
|
|
</Router>
|
|
|
|
</div>
|
2020-07-03 21:50:37 +00:00
|
|
|
</StoreProvider>
|
|
|
|
</>
|
2019-06-23 00:07:28 +00:00
|
|
|
);
|
|
|
|
};
|
2019-06-10 00:29:10 +00:00
|
|
|
|
|
|
|
export default hot(App);
|