fix: AI chat receives live editor content instead of stale disk content

handleContentChange now syncs content to tab state on every editor
change (not just on Cmd+S save). This ensures the AI panel's context
snapshot always contains the current editor body, fixing the bug where
the AI reported empty note bodies for unsaved edits.

Root cause: pendingContentRef buffered content for save but never
updated notes.tabs[].content, so activeTab?.content (used by the AI
context builder) always reflected the last-saved disk content.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Test
2026-03-08 15:05:01 +01:00
parent bcfd37d481
commit a4468289a2
2 changed files with 22 additions and 2 deletions

View File

@@ -171,6 +171,22 @@ describe('useEditorSave', () => {
// (We'll check via the next handleSave call)
})
it('handleContentChange syncs content to tab state immediately', () => {
const { result } = renderSaveHook()
act(() => {
result.current.handleContentChange('/test/note.md', '---\ntitle: T\n---\n\n# T\n\nLive edits')
})
// setTabs must be called on every content change (not just on save)
// so that consumers like the AI panel see current editor content
expect(setTabs).toHaveBeenCalled()
const updater = setTabs.mock.calls[0][0]
const tabs = [{ entry: { path: '/test/note.md' }, content: 'stale' }]
const updated = updater(tabs)
expect(updated[0].content).toBe('---\ntitle: T\n---\n\n# T\n\nLive edits')
})
it('save updates tab content with edited body, not original (regression)', async () => {
const { result } = renderSaveHook()

View File

@@ -66,10 +66,14 @@ export function useEditorSave({ updateVaultContent, setTabs, setToastMessage, on
}
}, [flushPending, setToastMessage, onAfterSave, saveNote, onNotePersisted])
/** Called by Editor onChange — buffers the latest content without saving */
/** Called by Editor onChange — buffers the latest content and syncs tab state
* so consumers (e.g. AI panel) always see current editor content. */
const handleContentChange = useCallback((path: string, content: string) => {
pendingContentRef.current = { path, content }
}, [])
setTabs((prev: Tab[]) =>
prev.map((t) => t.entry.path === path ? { ...t, content } : t)
)
}, [setTabs])
/** Save pending content for a specific path (used before rename) */
const savePendingForPath = useCallback(