trails/apps/planner/app/components/NotesPanel.tsx
Ullrich Schäfer 205e2bbbe0
Fix notes not loading on session reload
- Initialize CodeMirror with existing Y.Text content (doc: yjs.notes.toString())
  so text is visible immediately, not just after the next remote change
- Use dedicated Y.UndoManager for notes instead of sharing with waypoints
  undo manager (different tracked origins caused conflicts)
- Use yUndoManagerKeymap for proper Yjs-aware undo/redo

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 03:00:51 +02:00

105 lines
2.7 KiB
TypeScript

import { useEffect, useRef } from "react";
import { useTranslation } from "react-i18next";
import { EditorView, keymap, placeholder } from "@codemirror/view";
import { EditorState } from "@codemirror/state";
import { defaultKeymap } from "@codemirror/commands";
import { yCollab, yUndoManagerKeymap } from "y-codemirror.next";
import * as Y from "yjs";
import type { YjsState } from "~/lib/use-yjs";
interface NotesPanelProps {
yjs: YjsState;
}
const theme = EditorView.theme({
"&": {
height: "100%",
fontSize: "13px",
},
".cm-scroller": {
overflow: "auto",
fontFamily: "inherit",
},
".cm-content": {
padding: "12px",
caretColor: "#1f2937",
},
".cm-line": {
lineHeight: "1.5",
},
"&.cm-focused": {
outline: "none",
},
".cm-ySelectionInfo": {
fontSize: "10px",
fontFamily: "system-ui, sans-serif",
padding: "1px 4px",
borderRadius: "3px",
opacity: "0.9",
fontWeight: "500",
position: "absolute",
top: "-1.2em",
left: "-1px",
whiteSpace: "nowrap",
},
});
export function NotesPanel({ yjs }: NotesPanelProps) {
const { t } = useTranslation("planner");
const containerRef = useRef<HTMLDivElement>(null);
const viewRef = useRef<EditorView | null>(null);
useEffect(() => {
if (!containerRef.current) return;
// Set awareness user fields for cursor display
const localState = yjs.awareness.getLocalState() as Record<string, unknown> | null;
const user = localState?.user as { name: string; color: string } | undefined;
if (user) {
yjs.awareness.setLocalStateField("user", {
...user,
colorLight: user.color + "30",
});
}
// Dedicated undo manager for notes (separate from waypoints undo)
const notesUndoManager = new Y.UndoManager(yjs.notes);
const state = EditorState.create({
doc: yjs.notes.toString(),
extensions: [
keymap.of([...yUndoManagerKeymap, ...defaultKeymap]),
EditorView.lineWrapping,
placeholder(t("notes.placeholder")),
theme,
yCollab(yjs.notes, yjs.awareness, {
undoManager: notesUndoManager,
}),
],
});
const view = new EditorView({
state,
parent: containerRef.current,
});
viewRef.current = view;
return () => {
view.destroy();
notesUndoManager.destroy();
viewRef.current = null;
};
}, [yjs]);
return (
<div className="flex h-full flex-col">
<div className="border-b border-gray-200 px-4 py-3">
<h2 className="text-sm font-medium text-gray-900">
{t("sidebar.notes")}
</h2>
</div>
<div ref={containerRef} className="flex-1 overflow-hidden" />
</div>
);
}