import React, { createRef, useEffect, useMemo } from 'react'; import { ITerminalOptions, Terminal } from 'xterm'; import * as TerminalFit from 'xterm/lib/addons/fit/fit'; import SpinnerOverlay from '@/components/elements/SpinnerOverlay'; import { ServerContext } from '@/state/server'; 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', }; const terminalProps: ITerminalOptions = { disableStdin: true, cursorStyle: 'underline', allowTransparency: true, fontSize: 12, fontFamily: 'Menlo, Monaco, Consolas, monospace', rows: 30, theme: theme, }; export default () => { const ref = createRef(); const terminal = useMemo(() => new Terminal({ ...terminalProps }), []); const connected = ServerContext.useStoreState(state => state.socket.connected); const instance = ServerContext.useStoreState(state => state.socket.instance); const handleConsoleOutput = (line: string) => terminal.writeln( line.replace(/(?:\r\n|\r|\n)$/im, '') + '\u001b[0m', ); const handleDaemonErrorOutput = (line: string) => terminal.writeln( '\u001b[1m\u001b[41m[Internal] ' + line.replace(/(?:\r\n|\r|\n)$/im, '') + '\u001b[0m', ); const handlePowerChangeEvent = (state: string) => terminal.writeln( '\u001b[1m\u001b[33m[Status Change] Server marked as ' + state + '...\u001b[0m', ); const handleCommandKeydown = (e: React.KeyboardEvent) => { if (e.key !== 'Enter' || (e.key === 'Enter' && e.currentTarget.value.length < 1)) { return; } instance && instance.send('send command', e.currentTarget.value); e.currentTarget.value = ''; }; useEffect(() => { if (ref.current && !terminal.element) { terminal.open(ref.current); // @see https://github.com/xtermjs/xterm.js/issues/2265 // @see https://github.com/xtermjs/xterm.js/issues/2230 TerminalFit.fit(terminal); } }, [ ref.current ]); useEffect(() => { if (connected && instance) { terminal.clear(); instance.addListener('status', handlePowerChangeEvent); instance.addListener('console output', handleConsoleOutput); instance.addListener('daemon error', handleDaemonErrorOutput); instance.send('send logs'); } return () => { instance && instance.removeListener('console output', handleConsoleOutput) .removeListener('daemon error', handleDaemonErrorOutput) .removeListener('status', handlePowerChangeEvent); }; }, [ connected, instance ]); return (
$
handleCommandKeydown(e)} />
); };