90 lines
3.7 KiB
TypeScript
90 lines
3.7 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { ServerContext } from '@/state/server';
|
|
import Modal from '@/components/elements/Modal';
|
|
import tw from 'twin.macro';
|
|
import Button from '@/components/elements/Button';
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
import useFlash from '@/plugins/useFlash';
|
|
import { SocketEvent } from '@/components/server/events';
|
|
import { useStoreState } from 'easy-peasy';
|
|
|
|
const SteamDiskSpaceFeature = () => {
|
|
const [visible, setVisible] = useState(false);
|
|
const [loading] = useState(false);
|
|
|
|
const status = ServerContext.useStoreState((state) => state.status.value);
|
|
const { clearFlashes } = useFlash();
|
|
const { connected, instance } = ServerContext.useStoreState((state) => state.socket);
|
|
const isAdmin = useStoreState((state) => state.user.data!.rootAdmin);
|
|
|
|
useEffect(() => {
|
|
if (!connected || !instance || status === 'running') return;
|
|
|
|
const errors = ['steamcmd needs 250mb of free disk space to update', '0x202 after update job'];
|
|
|
|
const listener = (line: string) => {
|
|
if (errors.some((p) => line.toLowerCase().includes(p))) {
|
|
setVisible(true);
|
|
}
|
|
};
|
|
|
|
instance.addListener(SocketEvent.CONSOLE_OUTPUT, listener);
|
|
|
|
return () => {
|
|
instance.removeListener(SocketEvent.CONSOLE_OUTPUT, listener);
|
|
};
|
|
}, [connected, instance, status]);
|
|
|
|
useEffect(() => {
|
|
clearFlashes('feature:steamDiskSpace');
|
|
}, []);
|
|
|
|
return (
|
|
<Modal
|
|
visible={visible}
|
|
onDismissed={() => setVisible(false)}
|
|
closeOnBackground={false}
|
|
showSpinnerOverlay={loading}
|
|
>
|
|
<FlashMessageRender key={'feature:steamDiskSpace'} css={tw`mb-4`} />
|
|
{isAdmin ? (
|
|
<>
|
|
<div css={tw`mt-4 sm:flex items-center`}>
|
|
<h2 css={tw`text-2xl mb-4 text-neutral-100 `}>Out of available disk space...</h2>
|
|
</div>
|
|
<p css={tw`mt-4`}>
|
|
This server has run out of available disk space and cannot complete the install or update
|
|
process.
|
|
</p>
|
|
<p css={tw`mt-4`}>
|
|
Ensure the machine has enough disk space by typing{' '}
|
|
<code css={tw`font-mono bg-neutral-900 rounded py-1 px-2`}>df -h</code> on the machine hosting
|
|
this server. Delete files or increase the available disk space to resolve the issue.
|
|
</p>
|
|
<div css={tw`mt-8 sm:flex items-center justify-end`}>
|
|
<Button onClick={() => setVisible(false)} css={tw`w-full sm:w-auto border-transparent`}>
|
|
Close
|
|
</Button>
|
|
</div>
|
|
</>
|
|
) : (
|
|
<>
|
|
<div css={tw`mt-4 sm:flex items-center`}>
|
|
<h2 css={tw`text-2xl mb-4 text-neutral-100`}>Out of available disk space...</h2>
|
|
</div>
|
|
<p css={tw`mt-4`}>
|
|
This server has run out of available disk space and cannot complete the install or update
|
|
process. Please get in touch with the administrator(s) and inform them of disk space issues.
|
|
</p>
|
|
<div css={tw`mt-8 sm:flex items-center justify-end`}>
|
|
<Button onClick={() => setVisible(false)} css={tw`w-full sm:w-auto border-transparent`}>
|
|
Close
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)}
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default SteamDiskSpaceFeature;
|