2020-10-04 02:36:26 +00:00
|
|
|
import React, { lazy, memo } from 'react';
|
2019-07-10 04:25:57 +00:00
|
|
|
import { ServerContext } from '@/state/server';
|
2020-03-30 05:12:50 +00:00
|
|
|
import Can from '@/components/elements/Can';
|
2020-04-26 20:21:39 +00:00
|
|
|
import ContentContainer from '@/components/elements/ContentContainer';
|
2020-07-04 22:40:41 +00:00
|
|
|
import tw from 'twin.macro';
|
2020-08-26 04:39:00 +00:00
|
|
|
import ServerContentBlock from '@/components/elements/ServerContentBlock';
|
2020-10-04 02:36:26 +00:00
|
|
|
import ServerDetailsBlock from '@/components/server/ServerDetailsBlock';
|
|
|
|
import isEqual from 'react-fast-compare';
|
|
|
|
import PowerControls from '@/components/server/PowerControls';
|
2021-07-09 18:58:06 +00:00
|
|
|
import { EulaModalFeature } from 'feature/index';
|
2021-03-04 03:31:39 +00:00
|
|
|
import ErrorBoundary from '@/components/elements/ErrorBoundary';
|
2021-05-16 19:35:49 +00:00
|
|
|
import Spinner from '@/components/elements/Spinner';
|
2019-09-18 05:33:14 +00:00
|
|
|
|
2020-07-04 22:40:41 +00:00
|
|
|
export type PowerAction = 'start' | 'stop' | 'restart' | 'kill';
|
2019-09-28 20:29:49 +00:00
|
|
|
|
2019-10-12 22:29:45 +00:00
|
|
|
const ChunkedConsole = lazy(() => import(/* webpackChunkName: "console" */'@/components/server/Console'));
|
|
|
|
const ChunkedStatGraphs = lazy(() => import(/* webpackChunkName: "graphs" */'@/components/server/StatGraphs'));
|
2019-06-29 05:17:29 +00:00
|
|
|
|
2020-10-04 02:36:26 +00:00
|
|
|
const ServerConsole = () => {
|
2020-08-26 04:39:00 +00:00
|
|
|
const isInstalling = ServerContext.useStoreState(state => state.server.data!.isInstalling);
|
2020-12-16 16:34:47 +00:00
|
|
|
const isTransferring = ServerContext.useStoreState(state => state.server.data!.isTransferring);
|
2020-12-27 19:18:33 +00:00
|
|
|
const eggFeatures = ServerContext.useStoreState(state => state.server.data!.eggFeatures, isEqual);
|
2020-05-16 07:16:06 +00:00
|
|
|
|
2019-06-29 23:59:50 +00:00
|
|
|
return (
|
2020-09-13 17:02:25 +00:00
|
|
|
<ServerContentBlock title={'Console'} css={tw`flex flex-wrap`}>
|
2020-10-03 18:21:09 +00:00
|
|
|
<div css={tw`w-full lg:w-1/4`}>
|
2020-10-04 02:36:26 +00:00
|
|
|
<ServerDetailsBlock/>
|
2020-12-16 16:34:47 +00:00
|
|
|
{isInstalling ?
|
2020-07-04 22:40:41 +00:00
|
|
|
<div css={tw`mt-4 rounded bg-yellow-500 p-3`}>
|
2020-04-26 20:21:39 +00:00
|
|
|
<ContentContainer>
|
2020-07-04 22:40:41 +00:00
|
|
|
<p css={tw`text-sm text-yellow-900`}>
|
2020-04-26 20:21:39 +00:00
|
|
|
This server is currently running its installation process and most actions are
|
|
|
|
unavailable.
|
|
|
|
</p>
|
|
|
|
</ContentContainer>
|
2020-03-30 05:12:50 +00:00
|
|
|
</div>
|
2020-12-16 16:34:47 +00:00
|
|
|
:
|
|
|
|
isTransferring ?
|
|
|
|
<div css={tw`mt-4 rounded bg-yellow-500 p-3`}>
|
|
|
|
<ContentContainer>
|
|
|
|
<p css={tw`text-sm text-yellow-900`}>
|
|
|
|
This server is currently being transferred to another node and all actions
|
|
|
|
are unavailable.
|
|
|
|
</p>
|
|
|
|
</ContentContainer>
|
|
|
|
</div>
|
|
|
|
:
|
|
|
|
<Can action={[ 'control.start', 'control.stop', 'control.restart' ]} matchAny>
|
|
|
|
<PowerControls/>
|
|
|
|
</Can>
|
2020-04-26 20:21:39 +00:00
|
|
|
}
|
2019-09-18 04:59:35 +00:00
|
|
|
</div>
|
2020-10-03 18:21:09 +00:00
|
|
|
<div css={tw`w-full lg:w-3/4 mt-4 lg:mt-0 lg:pl-4`}>
|
2021-05-16 19:35:49 +00:00
|
|
|
<Spinner.Suspense>
|
2021-03-04 03:31:39 +00:00
|
|
|
<ErrorBoundary>
|
|
|
|
<ChunkedConsole/>
|
|
|
|
</ErrorBoundary>
|
2019-12-07 19:11:40 +00:00
|
|
|
<ChunkedStatGraphs/>
|
2021-05-16 19:35:49 +00:00
|
|
|
</Spinner.Suspense>
|
2020-11-03 04:52:41 +00:00
|
|
|
{eggFeatures.includes('eula') &&
|
|
|
|
<React.Suspense fallback={null}>
|
|
|
|
<EulaModalFeature/>
|
|
|
|
</React.Suspense>
|
|
|
|
}
|
2019-09-29 20:23:15 +00:00
|
|
|
</div>
|
2020-08-26 04:39:00 +00:00
|
|
|
</ServerContentBlock>
|
2019-06-29 23:59:50 +00:00
|
|
|
);
|
|
|
|
};
|
2020-10-04 02:36:26 +00:00
|
|
|
|
|
|
|
export default memo(ServerConsole, isEqual);
|