playwright/packages/web/src/components/xtermWrapper.tsx
2023-03-21 18:20:48 -07:00

154 lines
4.5 KiB
TypeScript

/*
Copyright (c) Microsoft Corporation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import * as React from 'react';
import './xtermWrapper.css';
import type { ITheme, Terminal } from 'xterm';
import type { FitAddon } from 'xterm-addon-fit';
import type { XtermModule } from './xtermModule';
import { currentTheme, addThemeListener, removeThemeListener } from '@web/theme';
import { useMeasure } from '@web/uiUtils';
export type XtermDataSource = {
pending: (string | Uint8Array)[];
clear: () => void,
write: (data: string | Uint8Array) => void;
resize: (cols: number, rows: number) => void;
};
export const XtermWrapper: React.FC<{ source: XtermDataSource }> = ({
source,
}) => {
const [measure, xtermElement] = useMeasure<HTMLDivElement>();
const [theme, setTheme] = React.useState(currentTheme());
const [modulePromise] = React.useState<Promise<XtermModule>>(import('./xtermModule').then(m => m.default));
const terminal = React.useRef<{ terminal: Terminal, fitAddon: FitAddon } | null>(null);
React.useEffect(() => {
addThemeListener(setTheme);
return () => removeThemeListener(setTheme);
}, []);
React.useEffect(() => {
const oldSourceWrite = source.write;
const oldSourceClear = source.clear;
(async () => {
// Always load the module first.
const { Terminal, FitAddon } = await modulePromise;
const element = xtermElement.current;
if (!element)
return;
const terminalTheme = theme === 'dark-mode' ? darkTheme : lightTheme;
if (terminal.current && terminal.current.terminal.options.theme === terminalTheme)
return;
if (terminal.current)
element.textContent = '';
const newTerminal = new Terminal({
convertEol: true,
fontSize: 13,
scrollback: 10000,
fontFamily: 'var(--vscode-editor-font-family)',
theme: terminalTheme,
});
const fitAddon = new FitAddon();
newTerminal.loadAddon(fitAddon);
for (const p of source.pending)
newTerminal.write(p);
source.write = (data => {
source.pending.push(data);
newTerminal.write(data);
});
source.clear = () => {
source.pending = [];
newTerminal.clear();
};
newTerminal.open(element);
fitAddon.fit();
terminal.current = { terminal: newTerminal, fitAddon };
})();
return () => {
source.clear = oldSourceClear;
source.write = oldSourceWrite;
};
}, [modulePromise, terminal, xtermElement, source, theme]);
React.useEffect(() => {
// Fit reads data from the terminal itself, which updates lazily, probably on some timer
// or mutation observer. Work around it.
setTimeout(() => {
if (!terminal.current)
return;
terminal.current.fitAddon.fit();
source.resize(terminal.current.terminal.cols, terminal.current.terminal.rows);
}, 250);
}, [measure, source]);
return <div data-testid='output' className='xterm-wrapper' style={{ flex: 'auto' }} ref={xtermElement}></div>;
};
const lightTheme: ITheme = {
foreground: '#383a42',
background: '#fafafa',
cursor: '#383a42',
black: '#000000',
red: '#e45649',
green: '#50a14f',
yellow: '#c18401',
blue: '#4078f2',
magenta: '#a626a4',
cyan: '#0184bc',
white: '#a0a0a0',
brightBlack: '#000000',
brightRed: '#e06c75',
brightGreen: '#98c379',
brightYellow: '#d19a66',
brightBlue: '#4078f2',
brightMagenta: '#a626a4',
brightCyan: '#0184bc',
brightWhite: '#383a42',
selectionBackground: '#d7d7d7',
selectionForeground: '#383a42',
};
const darkTheme: ITheme = {
foreground: '#f8f8f2',
background: '#1e1e1e',
cursor: '#f8f8f0',
black: '#000000',
red: '#ff5555',
green: '#50fa7b',
yellow: '#f1fa8c',
blue: '#bd93f9',
magenta: '#ff79c6',
cyan: '#8be9fd',
white: '#bfbfbf',
brightBlack: '#4d4d4d',
brightRed: '#ff6e6e',
brightGreen: '#69ff94',
brightYellow: '#ffffa5',
brightBlue: '#d6acff',
brightMagenta: '#ff92df',
brightCyan: '#a4ffff',
brightWhite: '#e6e6e6',
selectionBackground: '#44475a',
selectionForeground: '#f8f8f2',
};