mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
9a2171e4ea
Makes the terminal container DOM node as large as the window (except for the header) via flexbox. The xterm.js terminal is then sized to fit via xterm-addon-fit. Once we have a computed rows/columns size, and we can tell the SSH session of the computed size. Required introducing an IPNSSHSession type to allow the JS to control the SSH session once opened. That alse allows us to programatically close it, which we do when the user closes the window with the session still active. I initially wanted to open the terminal in a new window instead (so that it could be resizable independently of the main window), but xterm.js does not appear to work well in that mode (possibly because it adds an IntersectionObserver to pause rendering when the window is not visible, and it ends up doing that when the parent window is hidden -- see xtermjs/xterm.js@87dca56dee) Fixes #5150 Signed-off-by: Mihai Parparita <mihai@tailscale.com>
22 lines
423 B
JSON
22 lines
423 B
JSON
{
|
|
"name": "tsconnect",
|
|
"version": "0.0.1",
|
|
"license": "BSD-3-Clause",
|
|
"devDependencies": {
|
|
"@types/golang-wasm-exec": "^1.15.0",
|
|
"@types/qrcode": "^1.4.2",
|
|
"qrcode": "^1.5.0",
|
|
"tailwindcss": "^3.1.6",
|
|
"typescript": "^4.7.4",
|
|
"xterm": "^4.18.0",
|
|
"xterm-addon-fit": "^0.5.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "tsc --noEmit"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 80
|
|
}
|
|
}
|