Add multi-host terminal: NAS + VPS side-by-side

This commit is contained in:
Gan, Jimmy
2026-02-20 00:53:29 +08:00
parent c345f647c7
commit a882f45f2e
4 changed files with 99 additions and 56 deletions
+83 -53
View File
@@ -1,12 +1,17 @@
<script>
import { onMount } from "svelte";
import { onDestroy } from "svelte";
let termEl;
let connected = $state(false);
let error = $state("");
const hosts = [
{ id: "nas", label: "NAS" },
{ id: "vps", label: "VPS" },
];
onMount(async () => {
try {
let mobileHost = $state("nas");
let terminals = $state({});
let cleanups = [];
function initTerminal(el, hostId) {
(async () => {
const { Terminal } = await import("@xterm/xterm");
const { FitAddon } = await import("@xterm/addon-fit");
await import("@xterm/xterm/css/xterm.css");
@@ -34,34 +39,17 @@
});
const fit = new FitAddon();
term.loadAddon(fit);
term.open(termEl);
term.open(el);
fit.fit();
const proto = location.protocol === "https:" ? "wss:" : "ws:";
const token = localStorage.getItem("token") || "";
const ws = new WebSocket(`${proto}//${location.host}/ws/terminal?token=${encodeURIComponent(token)}`);
const ws = new WebSocket(
`${proto}//${location.host}/ws/terminal?token=${encodeURIComponent(token)}&host=${hostId}`
);
ws.binaryType = "arraybuffer";
ws.onopen = () => {
connected = true;
const buf = new Uint8Array(5);
buf[0] = 0x01;
new DataView(buf.buffer).setUint16(1, term.cols);
new DataView(buf.buffer).setUint16(3, term.rows);
ws.send(buf);
};
ws.onmessage = (e) => term.write(new Uint8Array(e.data));
ws.onclose = () => {
connected = false;
term.write("\r\n\x1b[90m[Connection closed]\x1b[0m");
};
ws.onerror = () => {
error = "WebSocket connection failed. Terminal requires Tailscale access.";
};
term.onData((data) => ws.readyState === 1 && ws.send(new TextEncoder().encode(data)));
const ro = new ResizeObserver(() => {
fit.fit();
function sendSize() {
if (ws.readyState === 1) {
const buf = new Uint8Array(5);
buf[0] = 0x01;
@@ -69,39 +57,81 @@
new DataView(buf.buffer).setUint16(3, term.rows);
ws.send(buf);
}
}
ws.onopen = () => {
terminals[hostId] = { connected: true, error: "" };
sendSize();
};
ws.onmessage = (e) => term.write(new Uint8Array(e.data));
ws.onclose = () => {
terminals[hostId] = { ...terminals[hostId], connected: false };
term.write("\r\n\x1b[90m[Connection closed]\x1b[0m");
};
ws.onerror = () => {
terminals[hostId] = { connected: false, error: "WebSocket connection failed" };
};
term.onData((data) => ws.readyState === 1 && ws.send(new TextEncoder().encode(data)));
const ro = new ResizeObserver(() => {
fit.fit();
sendSize();
});
ro.observe(termEl);
} catch (e) {
error = "Failed to initialize terminal: " + e.message;
}
});
ro.observe(el);
cleanups.push(() => {
ro.disconnect();
ws.close();
term.dispose();
});
})();
}
onDestroy(() => cleanups.forEach((fn) => fn()));
function statusFor(hostId) {
const t = terminals[hostId];
if (!t) return { connected: false, error: "" };
return t;
}
</script>
<div class="space-y-4">
<div class="flex items-center justify-between">
<div>
<h1 class="text-2xl font-bold text-surface-900 tracking-tight">Terminal</h1>
<p class="text-sm text-surface-400 mt-1">
{#if connected}
<span class="inline-flex items-center gap-1.5">
<span class="w-1.5 h-1.5 rounded-full bg-emerald-500"></span>
Connected
</span>
{:else if error}
<span class="text-rose-500">{error}</span>
{:else}
<span class="inline-flex items-center gap-1.5">
<span class="w-1.5 h-1.5 rounded-full bg-amber-400 animate-pulse"></span>
Connecting...
</span>
{/if}
</p>
<div class="mt-2 md:hidden">
<select
class="bg-surface-800 text-surface-200 border border-surface-600 rounded-lg px-3 py-1.5 text-sm"
bind:value={mobileHost}
>
{#each hosts as h}
<option value={h.id}>{h.label}</option>
{/each}
</select>
</div>
</div>
</div>
<div
bind:this={termEl}
class="h-[calc(100vh-10rem)] rounded-xl overflow-hidden shadow-lg border border-surface-700"
style="background: #0f172a;"
></div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
{#each hosts as h (h.id)}
<div class="hidden md:block" class:!block={mobileHost === h.id}>
<div class="flex items-center gap-2 mb-2 text-sm text-surface-400">
<span class="font-medium text-surface-200">{h.label}</span>
{#if statusFor(h.id).connected}
<span class="w-1.5 h-1.5 rounded-full bg-emerald-500"></span> Connected
{:else if statusFor(h.id).error}
<span class="text-rose-500">{statusFor(h.id).error}</span>
{:else}
<span class="w-1.5 h-1.5 rounded-full bg-amber-400 animate-pulse"></span> Connecting...
{/if}
</div>
<div
use:initTerminal={h.id}
class="h-[calc(100vh-12rem)] rounded-xl overflow-hidden shadow-lg border border-surface-700"
style="background: #0f172a;"
></div>
</div>
{/each}
</div>
</div>