2019-12-22 05:51:42 +00:00
|
|
|
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
2019-09-18 05:54:16 +00:00
|
|
|
import { ITerminalOptions, Terminal } from 'xterm';
|
2019-06-29 23:14:32 +00:00
|
|
|
import * as TerminalFit from 'xterm/lib/addons/fit/fit';
|
|
|
|
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
|
2019-09-06 06:05:24 +00:00
|
|
|
import { ServerContext } from '@/state/server';
|
2019-12-22 22:33:08 +00:00
|
|
|
import styled from 'styled-components';
|
2020-03-30 05:12:50 +00:00
|
|
|
import Can from '@/components/elements/Can';
|
|
|
|
import { usePermissions } from '@/plugins/usePermissions';
|
|
|
|
import classNames from 'classnames';
|
2019-06-29 23:14:32 +00:00
|
|
|
|
|
|
|
const theme = {
|
|
|
|
background: 'transparent',
|
|
|
|
cursor: 'transparent',
|
|
|
|
black: '#000000',
|
|
|
|
red: '#E54B4B',
|
|
|
|
green: '#9ECE58',
|
|
|
|
yellow: '#FAED70',
|
|
|
|
blue: '#396FE2',
|
|
|
|
magenta: '#BB80B3',
|
|
|
|
cyan: '#2DDAFD',
|
|
|
|
white: '#d0d0d0',
|
|
|
|
brightBlack: 'rgba(255, 255, 255, 0.2)',
|
|
|
|
brightRed: '#FF5370',
|
|
|
|
brightGreen: '#C3E88D',
|
|
|
|
brightYellow: '#FFCB6B',
|
|
|
|
brightBlue: '#82AAFF',
|
|
|
|
brightMagenta: '#C792EA',
|
|
|
|
brightCyan: '#89DDFF',
|
|
|
|
brightWhite: '#ffffff',
|
|
|
|
};
|
|
|
|
|
2019-09-18 05:54:16 +00:00
|
|
|
const terminalProps: ITerminalOptions = {
|
2019-09-06 06:05:24 +00:00
|
|
|
disableStdin: true,
|
|
|
|
cursorStyle: 'underline',
|
|
|
|
allowTransparency: true,
|
|
|
|
fontSize: 12,
|
|
|
|
fontFamily: 'Menlo, Monaco, Consolas, monospace',
|
|
|
|
rows: 30,
|
|
|
|
theme: theme,
|
2019-09-18 05:54:16 +00:00
|
|
|
};
|
2019-06-29 23:14:32 +00:00
|
|
|
|
2019-12-22 22:33:08 +00:00
|
|
|
const TerminalDiv = styled.div`
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
${tw`bg-neutral-900`};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2019-09-06 06:05:24 +00:00
|
|
|
export default () => {
|
2020-01-18 23:26:15 +00:00
|
|
|
const TERMINAL_PRELUDE = '\u001b[1m\u001b[33mcontainer@pterodactyl~ \u001b[0m';
|
2019-12-22 05:51:42 +00:00
|
|
|
const [ terminalElement, setTerminalElement ] = useState<HTMLDivElement | null>(null);
|
|
|
|
const useRef = useCallback(node => setTerminalElement(node), []);
|
2019-09-18 05:54:16 +00:00
|
|
|
const terminal = useMemo(() => new Terminal({ ...terminalProps }), []);
|
2019-12-07 20:13:46 +00:00
|
|
|
const { connected, instance } = ServerContext.useStoreState(state => state.socket);
|
2020-03-30 05:12:50 +00:00
|
|
|
const [ canSendCommands ] = usePermissions([ 'control.console']);
|
2019-06-30 00:18:17 +00:00
|
|
|
|
2020-01-18 23:26:15 +00:00
|
|
|
const handleConsoleOutput = (line: string, prelude = false) => terminal.writeln(
|
|
|
|
(prelude ? TERMINAL_PRELUDE : '') + line.replace(/(?:\r\n|\r|\n)$/im, '') + '\u001b[0m',
|
2019-09-06 06:05:24 +00:00
|
|
|
);
|
|
|
|
|
2019-09-28 20:09:47 +00:00
|
|
|
const handleDaemonErrorOutput = (line: string) => terminal.writeln(
|
2020-01-18 23:26:15 +00:00
|
|
|
TERMINAL_PRELUDE + '\u001b[1m\u001b[41m' + line.replace(/(?:\r\n|\r|\n)$/im, '') + '\u001b[0m',
|
2019-09-28 20:09:47 +00:00
|
|
|
);
|
|
|
|
|
2019-09-28 20:45:09 +00:00
|
|
|
const handlePowerChangeEvent = (state: string) => terminal.writeln(
|
2020-01-18 23:26:15 +00:00
|
|
|
TERMINAL_PRELUDE + 'Server marked as ' + state + '...\u001b[0m',
|
2019-09-28 20:45:09 +00:00
|
|
|
);
|
|
|
|
|
2019-09-18 05:54:23 +00:00
|
|
|
const handleCommandKeydown = (e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
|
|
if (e.key !== 'Enter' || (e.key === 'Enter' && e.currentTarget.value.length < 1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
instance && instance.send('send command', e.currentTarget.value);
|
|
|
|
e.currentTarget.value = '';
|
|
|
|
};
|
|
|
|
|
2019-09-06 06:05:24 +00:00
|
|
|
useEffect(() => {
|
2019-12-22 05:51:42 +00:00
|
|
|
if (connected && terminalElement && !terminal.element) {
|
|
|
|
terminal.open(terminalElement);
|
2019-06-30 00:18:17 +00:00
|
|
|
|
2019-06-30 01:28:23 +00:00
|
|
|
// @see https://github.com/xtermjs/xterm.js/issues/2265
|
|
|
|
// @see https://github.com/xtermjs/xterm.js/issues/2230
|
2019-09-06 06:05:24 +00:00
|
|
|
TerminalFit.fit(terminal);
|
2020-02-11 17:37:12 +00:00
|
|
|
|
|
|
|
// Add support for copying terminal text.
|
|
|
|
terminal.attachCustomKeyEventHandler((e: KeyboardEvent) => {
|
|
|
|
// Ctrl + C
|
|
|
|
if (e.ctrlKey && (e.key === 'c')) {
|
|
|
|
document.execCommand('copy');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
2019-06-30 01:28:23 +00:00
|
|
|
}
|
2019-12-22 05:51:42 +00:00
|
|
|
}, [ terminal, connected, terminalElement ]);
|
2019-06-29 23:14:32 +00:00
|
|
|
|
2019-09-06 06:05:24 +00:00
|
|
|
useEffect(() => {
|
|
|
|
if (connected && instance) {
|
|
|
|
terminal.clear();
|
2019-06-29 23:14:32 +00:00
|
|
|
|
2019-09-28 20:45:09 +00:00
|
|
|
instance.addListener('status', handlePowerChangeEvent);
|
2019-09-18 05:54:23 +00:00
|
|
|
instance.addListener('console output', handleConsoleOutput);
|
2020-01-18 23:26:15 +00:00
|
|
|
instance.addListener('install output', handleConsoleOutput);
|
|
|
|
instance.addListener('daemon message', line => handleConsoleOutput(line, true));
|
2019-09-28 20:09:47 +00:00
|
|
|
instance.addListener('daemon error', handleDaemonErrorOutput);
|
2019-09-06 06:05:24 +00:00
|
|
|
instance.send('send logs');
|
2019-06-30 00:18:17 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 06:05:24 +00:00
|
|
|
return () => {
|
2019-09-28 20:09:47 +00:00
|
|
|
instance && instance.removeListener('console output', handleConsoleOutput)
|
2020-01-18 23:26:15 +00:00
|
|
|
.removeListener('install output', handleConsoleOutput)
|
|
|
|
.removeListener('daemon message', line => handleConsoleOutput(line, true))
|
2019-09-28 20:45:09 +00:00
|
|
|
.removeListener('daemon error', handleDaemonErrorOutput)
|
|
|
|
.removeListener('status', handlePowerChangeEvent);
|
2019-09-06 06:05:24 +00:00
|
|
|
};
|
2019-12-07 20:13:46 +00:00
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
2019-09-06 06:05:24 +00:00
|
|
|
}, [ connected, instance ]);
|
2019-06-30 01:28:23 +00:00
|
|
|
|
2019-09-06 06:05:24 +00:00
|
|
|
return (
|
|
|
|
<div className={'text-xs font-mono relative'}>
|
|
|
|
<SpinnerOverlay visible={!connected} size={'large'}/>
|
|
|
|
<div
|
2020-03-30 05:12:50 +00:00
|
|
|
className={classNames('rounded-t p-2 bg-black w-full', {
|
|
|
|
'rounded-b': !canSendCommands,
|
|
|
|
})}
|
2019-09-06 06:05:24 +00:00
|
|
|
style={{
|
|
|
|
minHeight: '16rem',
|
2019-09-18 04:59:35 +00:00
|
|
|
maxHeight: '32rem',
|
2019-09-06 06:05:24 +00:00
|
|
|
}}
|
|
|
|
>
|
2019-12-22 22:33:08 +00:00
|
|
|
<TerminalDiv id={'terminal'} ref={useRef}/>
|
2019-09-06 06:05:24 +00:00
|
|
|
</div>
|
2020-03-30 05:12:50 +00:00
|
|
|
{canSendCommands &&
|
2019-09-06 06:05:24 +00:00
|
|
|
<div className={'rounded-b bg-neutral-900 text-neutral-100 flex'}>
|
|
|
|
<div className={'flex-no-shrink p-2 font-bold'}>$</div>
|
|
|
|
<div className={'w-full'}>
|
2019-09-18 05:54:23 +00:00
|
|
|
<input
|
|
|
|
type={'text'}
|
|
|
|
disabled={!instance || !connected}
|
|
|
|
className={'bg-transparent text-neutral-100 p-2 pl-0 w-full'}
|
|
|
|
onKeyDown={e => handleCommandKeydown(e)}
|
|
|
|
/>
|
2019-06-29 23:14:32 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-30 05:12:50 +00:00
|
|
|
}
|
2019-09-06 06:05:24 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|