2022-06-26 02:29:41 +01:00
|
|
|
import React, { useEffect, useState } from 'react';
|
2022-06-20 22:26:47 +01:00
|
|
|
import { Button } from '@/components/elements/button/index';
|
|
|
|
import Can from '@/components/elements/Can';
|
|
|
|
import { ServerContext } from '@/state/server';
|
2022-06-21 23:43:59 +01:00
|
|
|
import { PowerAction } from '@/components/server/console/ServerConsoleContainer';
|
2022-06-20 22:26:47 +01:00
|
|
|
import { Dialog } from '@/components/elements/dialog';
|
|
|
|
|
|
|
|
interface PowerButtonProps {
|
|
|
|
className?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ({ className }: PowerButtonProps) => {
|
|
|
|
const [ open, setOpen ] = useState(false);
|
|
|
|
const status = ServerContext.useStoreState(state => state.status.value);
|
|
|
|
const instance = ServerContext.useStoreState(state => state.socket.instance);
|
|
|
|
|
|
|
|
const killable = status === 'stopping';
|
|
|
|
const onButtonClick = (action: PowerAction | 'kill-confirmed', e: React.MouseEvent<HTMLButtonElement, MouseEvent>): void => {
|
|
|
|
e.preventDefault();
|
|
|
|
if (action === 'kill') {
|
|
|
|
return setOpen(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (instance) {
|
|
|
|
setOpen(false);
|
|
|
|
instance.send('set state', action === 'kill-confirmed' ? 'kill' : action);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-06-26 02:29:41 +01:00
|
|
|
useEffect(() => {
|
|
|
|
if (status === 'offline') {
|
|
|
|
setOpen(false);
|
|
|
|
}
|
|
|
|
}, [ status ]);
|
|
|
|
|
2022-06-20 22:26:47 +01:00
|
|
|
return (
|
|
|
|
<div className={className}>
|
|
|
|
<Dialog.Confirm
|
|
|
|
open={open}
|
|
|
|
hideCloseIcon
|
|
|
|
onClose={() => setOpen(false)}
|
|
|
|
title={'Forcibly Stop Process'}
|
|
|
|
confirm={'Continue'}
|
|
|
|
onConfirmed={onButtonClick.bind(this, 'kill-confirmed')}
|
|
|
|
>
|
|
|
|
Forcibly stopping a server can lead to data corruption.
|
|
|
|
</Dialog.Confirm>
|
|
|
|
<Can action={'control.start'}>
|
|
|
|
<Button
|
2022-06-21 23:43:59 +01:00
|
|
|
className={'w-full sm:w-24'}
|
2022-06-20 22:26:47 +01:00
|
|
|
disabled={status !== 'offline'}
|
|
|
|
onClick={onButtonClick.bind(this, 'start')}
|
|
|
|
>
|
|
|
|
Start
|
|
|
|
</Button>
|
|
|
|
</Can>
|
|
|
|
<Can action={'control.restart'}>
|
|
|
|
<Button.Text
|
2022-06-21 23:43:59 +01:00
|
|
|
className={'w-full sm:w-24'}
|
2022-06-20 22:26:47 +01:00
|
|
|
disabled={!status}
|
|
|
|
onClick={onButtonClick.bind(this, 'restart')}
|
|
|
|
>
|
|
|
|
Restart
|
|
|
|
</Button.Text>
|
|
|
|
</Can>
|
|
|
|
<Can action={'control.stop'}>
|
|
|
|
<Button.Danger
|
2022-06-21 23:43:59 +01:00
|
|
|
className={'w-full sm:w-24'}
|
2022-06-20 22:26:47 +01:00
|
|
|
disabled={status === 'offline'}
|
|
|
|
onClick={onButtonClick.bind(this, killable ? 'kill' : 'stop')}
|
|
|
|
>
|
|
|
|
{killable ? 'Kill' : 'Stop'}
|
|
|
|
</Button.Danger>
|
|
|
|
</Can>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|