mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-08 09:07:44 +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>
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" type="text/css" href="dist/index.css" />
|
|
</head>
|
|
<body class="flex flex-col h-screen overflow-hidden">
|
|
<div class="bg-gray-100 border-b border-gray-200 pt-4 pb-2">
|
|
<header class="container mx-auto px-4 flex flex-row items-center">
|
|
<h1 class="text-3xl font-bold grow">Tailscale Connect</h1>
|
|
<div class="text-gray-600" id="state">Loading…</div>
|
|
</header>
|
|
</div>
|
|
<div
|
|
id="content"
|
|
class="flex-grow flex flex-col justify-center overflow-hidden"
|
|
>
|
|
<form
|
|
id="ssh-form"
|
|
class="container mx-auto px-4 hidden flex justify-center"
|
|
>
|
|
<input type="text" class="input username" placeholder="Username" />
|
|
<div class="select-with-arrow mx-2">
|
|
<select class="select"></select>
|
|
</div>
|
|
<input
|
|
type="submit"
|
|
class="button bg-green-500 border-green-500 text-white hover:bg-green-600 hover:border-green-600"
|
|
value="SSH"
|
|
/>
|
|
</form>
|
|
<div id="no-ssh" class="container mx-auto px-4 hidden text-center">
|
|
None of your machines have
|
|
<a href="https://tailscale.com/kb/1193/tailscale-ssh/" class="link"
|
|
>Tailscale SSH</a
|
|
>
|
|
enabled. Give it a try!
|
|
</div>
|
|
</div>
|
|
<script src="dist/index.js"></script>
|
|
</body>
|
|
</html>
|