trails/apps/planner/app/lib/vite-yjs-plugin.ts
Ullrich Schäfer 55806fc84a
Fix waypoint drag, host election, segment routing, debug panel
Waypoint drag:
- Use observeDeep instead of observe to detect Y.Map property changes

Host election:
- Extracted to host-election.ts with 8 unit tests
- Simple rule: lowest real client ID is always host, deterministic
- Always sets role (host or participant), no missing roles
- Filters server docs (empty awareness state) from election

BRouter routing:
- Route segment-by-segment like bikerouter.de (one request per
  waypoint pair), guarantees route passes through every waypoint
- Merge GeoJSON segments with accumulated stats
- 8 unit tests for segment merging and waypoint splitting

Awareness cleanup:
- Track client IDs per WebSocket connection
- Immediately remove awareness on WebSocket close

Debug panel:
- Visibility + expanded state persisted in localStorage
- Hotkey (Shift+Cmd+Option+T) toggles visibility
- Labels server docs as (server)
- All logic self-contained in YjsDebugPanel.tsx

User identity:
- Color and name persisted in localStorage across reloads

Tests: 32 total (16 existing + 8 host election + 8 routing)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-23 08:52:52 +01:00

154 lines
5.7 KiB
TypeScript

import type { Plugin } from "vite";
import { WebSocketServer, type WebSocket } from "ws";
import * as Y from "yjs";
import * as syncProtocol from "y-protocols/sync";
import * as awarenessProtocol from "y-protocols/awareness";
import * as encoding from "lib0/encoding";
import * as decoding from "lib0/decoding";
const messageSync = 0;
const messageAwareness = 1;
/**
* Vite plugin that runs a Yjs sync server in dev mode.
* Implements the y-websocket protocol for full compatibility.
*/
export function yjsDevPlugin(): Plugin {
const docs = new Map<string, Y.Doc>();
const awarenessMap = new Map<string, awarenessProtocol.Awareness>();
// Map each WebSocket to its doc name and the awareness client IDs it owns
const conns = new Map<WebSocket, { docName: string; clientIds: Set<number> }>();
function getDoc(docName: string): { doc: Y.Doc; awareness: awarenessProtocol.Awareness } {
let doc = docs.get(docName);
let awareness = awarenessMap.get(docName);
if (!doc) {
doc = new Y.Doc();
docs.set(docName, doc);
awareness = new awarenessProtocol.Awareness(doc);
awarenessMap.set(docName, awareness);
// Broadcast doc updates to all connections in this room
doc.on("update", (update: Uint8Array, origin: unknown) => {
const encoder = encoding.createEncoder();
encoding.writeVarUint(encoder, messageSync);
syncProtocol.writeUpdate(encoder, update);
const message = encoding.toUint8Array(encoder);
for (const [ws, meta] of conns) {
// Don't send back to the origin connection
if (meta.docName === docName && ws !== origin && ws.readyState === ws.OPEN) {
ws.send(message);
}
}
});
awareness.on("update", ({ added, updated, removed }: { added: number[]; updated: number[]; removed: number[] }) => {
const changedClients = added.concat(updated, removed);
const encoder = encoding.createEncoder();
encoding.writeVarUint(encoder, messageAwareness);
encoding.writeVarUint8Array(encoder, awarenessProtocol.encodeAwarenessUpdate(awareness!, changedClients));
const message = encoding.toUint8Array(encoder);
for (const [ws, meta] of conns) {
if (meta.docName === docName && ws.readyState === ws.OPEN) {
ws.send(message);
}
}
});
}
return { doc, awareness: awareness! };
}
function handleMessage(ws: WebSocket, message: Uint8Array, docName: string) {
const { doc, awareness } = getDoc(docName);
const decoder = decoding.createDecoder(message);
const messageType = decoding.readVarUint(decoder);
switch (messageType) {
case messageSync: {
const encoder = encoding.createEncoder();
encoding.writeVarUint(encoder, messageSync);
syncProtocol.readSyncMessage(decoder, encoder, doc, ws);
const resp = encoding.toUint8Array(encoder);
if (encoding.length(encoder) > 1) {
ws.send(resp);
}
break;
}
case messageAwareness: {
const update = decoding.readVarUint8Array(decoder);
awarenessProtocol.applyAwarenessUpdate(awareness, update, ws);
// Track which client IDs this WebSocket is responsible for
// by checking what was added/updated in this awareness update
const meta = conns.get(ws);
if (meta) {
awareness.getStates().forEach((_state, clientId) => {
// The awareness meta stores which "origin" (ws) last updated each client
const awarenessClientMeta = awareness.meta.get(clientId);
if (awarenessClientMeta) {
// If this client ID was just updated from this connection, track it
meta.clientIds.add(clientId);
}
});
}
break;
}
}
}
return {
name: "yjs-dev-websocket",
configureServer(server) {
const wss = new WebSocketServer({ noServer: true });
server.httpServer?.on("upgrade", (request, socket, head) => {
const url = new URL(request.url ?? "", `http://${request.headers.host}`);
if (!url.pathname.startsWith("/sync/")) return;
const docName = url.pathname.slice("/sync/".length);
wss.handleUpgrade(request, socket, head, (ws) => {
const { doc, awareness } = getDoc(docName);
conns.set(ws, { docName, clientIds: new Set() });
// Send sync step 1
const encoder = encoding.createEncoder();
encoding.writeVarUint(encoder, messageSync);
syncProtocol.writeSyncStep1(encoder, doc);
ws.send(encoding.toUint8Array(encoder));
// Send current awareness states
const awarenessStates = awareness.getStates();
if (awarenessStates.size > 0) {
const awarenessEncoder = encoding.createEncoder();
encoding.writeVarUint(awarenessEncoder, messageAwareness);
encoding.writeVarUint8Array(
awarenessEncoder,
awarenessProtocol.encodeAwarenessUpdate(awareness, Array.from(awarenessStates.keys())),
);
ws.send(encoding.toUint8Array(awarenessEncoder));
}
ws.on("message", (data: ArrayBuffer) => {
handleMessage(ws, new Uint8Array(data), docName);
});
ws.on("close", () => {
const meta = conns.get(ws);
if (meta && meta.clientIds.size > 0) {
// Immediately remove awareness states for all clients on this connection
awarenessProtocol.removeAwarenessStates(
awareness,
Array.from(meta.clientIds),
null,
);
}
conns.delete(ws);
});
});
});
},
};
}