Add multiplayer awareness: participant list, name editing, cursor styling, join/leave toasts

Implement the planner-multiplayer-awareness OpenSpec change:

- Add setUserName to use-yjs.ts that persists to localStorage and syncs via awareness
- Create ParticipantList component showing all session participants with color dots,
  host badge, and inline name editing for the local user
- Replace plain text cursor labels with SVG pointer arrows and styled name tags
  (colored background, drop shadow, rounded corners, z-index below map controls)
- Track awareness add/remove events and display auto-dismissing toasts (3s)
  when participants join or leave the session
- Add i18n keys for participant UI in English and German

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-25 04:11:58 +01:00
parent 068b474f94
commit 9b4f4c6759
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9
7 changed files with 292 additions and 24 deletions

View file

@ -1,13 +1,15 @@
import { Suspense, lazy, useState, useCallback, useEffect } from "react";
import { Suspense, lazy, useState, useCallback, useEffect, useRef } from "react";
import { useTranslation } from "react-i18next";
import { Link } from "react-router";
import type { TFunction } from "i18next";
import * as Sentry from "@sentry/react";
import { useYjs } from "~/lib/use-yjs";
import { useYjs, type YjsState } from "~/lib/use-yjs";
import { useRouting } from "~/lib/use-routing";
import { ProfileSelector } from "~/components/ProfileSelector";
import { ExportButton } from "~/components/ExportButton";
import { SaveToJournalButton } from "~/components/SaveToJournalButton";
import { YjsDebugPanel } from "~/components/YjsDebugPanel";
import { ParticipantList } from "~/components/ParticipantList";
const PlannerMap = lazy(() =>
import("~/components/PlannerMap").then((m) => ({ default: m.PlannerMap })),
@ -19,6 +21,89 @@ const ElevationChart = lazy(() =>
import("~/components/ElevationChart").then((m) => ({ default: m.ElevationChart })),
);
interface Toast {
id: number;
message: string;
}
let toastIdCounter = 0;
function useAwarenessToasts(yjs: YjsState | null, t: TFunction) {
const [toasts, setToasts] = useState<Toast[]>([]);
const namesCacheRef = useRef<Map<number, string>>(new Map());
const initializedRef = useRef(false);
useEffect(() => {
if (!yjs) return;
const addToast = (message: string) => {
const id = ++toastIdCounter;
setToasts((prev) => [...prev, { id, message }]);
setTimeout(() => {
setToasts((prev) => prev.filter((toast) => toast.id !== id));
}, 3000);
};
const handleChange = (
changes: { added: number[]; updated: number[]; removed: number[] },
) => {
const states = yjs.awareness.getStates();
const localId = yjs.awareness.clientID;
// On first change, seed the cache with current participants and skip toasts
if (!initializedRef.current) {
states.forEach((state, clientId) => {
const user = (state as Record<string, unknown>).user as { name: string } | undefined;
if (user?.name) {
namesCacheRef.current.set(clientId, user.name);
}
});
initializedRef.current = true;
return;
}
// Update cache for any updated clients
for (const clientId of changes.updated) {
const state = states.get(clientId) as Record<string, unknown> | undefined;
const user = state?.user as { name: string } | undefined;
if (user?.name) {
namesCacheRef.current.set(clientId, user.name);
}
}
for (const clientId of changes.added) {
if (clientId === localId) continue;
const state = states.get(clientId) as Record<string, unknown> | undefined;
const user = state?.user as { name: string } | undefined;
const name = user?.name;
if (name) {
namesCacheRef.current.set(clientId, name);
addToast(t("participants.joined", { name }));
}
}
for (const clientId of changes.removed) {
if (clientId === localId) continue;
const name = namesCacheRef.current.get(clientId);
namesCacheRef.current.delete(clientId);
if (name) {
addToast(t("participants.left", { name }));
}
}
};
yjs.awareness.on("change", handleChange);
return () => {
yjs.awareness.off("change", handleChange);
initializedRef.current = false;
namesCacheRef.current.clear();
};
}, [yjs, t]);
return toasts;
}
interface SessionViewProps {
sessionId: string;
callbackUrl?: string;
@ -31,8 +116,9 @@ export function SessionView({ sessionId, callbackUrl, callbackToken, returnUrl,
const { t } = useTranslation("planner");
useEffect(() => { Sentry.setTag("session_id", sessionId); }, [sessionId]);
const yjs = useYjs(sessionId, initialWaypoints);
const { isHost, computing, routeStats, requestRoute } = useRouting(yjs);
const { computing, routeStats, requestRoute } = useRouting(yjs);
const [highlightPosition, setHighlightPosition] = useState<[number, number] | null>(null);
const toasts = useAwarenessToasts(yjs, t);
const handleElevationHover = useCallback((pos: [number, number] | null) => {
setHighlightPosition(pos);
@ -54,6 +140,7 @@ export function SessionView({ sessionId, callbackUrl, callbackToken, returnUrl,
{t("title")}
</Link>
<ProfileSelector yjs={yjs} />
<ParticipantList yjs={yjs} />
</div>
<div className="flex items-center gap-3">
{callbackUrl && callbackToken && (
@ -68,11 +155,6 @@ export function SessionView({ sessionId, callbackUrl, callbackToken, returnUrl,
{computing && (
<span className="text-xs text-blue-600">{t("computingRoute")}</span>
)}
{isHost && (
<span className="rounded-full bg-green-100 px-2 py-0.5 text-xs text-green-700">
{t("host")}
</span>
)}
<span className="text-sm text-gray-500">
{yjs.connected ? t("connected") : t("connecting")} · {sessionId.slice(0, 8)}
</span>
@ -109,6 +191,18 @@ export function SessionView({ sessionId, callbackUrl, callbackToken, returnUrl,
</aside>
</div>
<YjsDebugPanel yjs={yjs} />
{toasts.length > 0 && (
<div className="fixed bottom-4 left-1/2 z-50 flex -translate-x-1/2 flex-col gap-2">
{toasts.map((toast) => (
<div
key={toast.id}
className="rounded-lg bg-gray-800 px-4 py-2 text-sm text-white shadow-lg animate-[fadeIn_0.2s_ease-out]"
>
{toast.message}
</div>
))}
</div>
)}
</>
);
}