feat(ipc): notebookApi — list/create/rename/setColor/delete/moveNote

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
th-kim0823
2026-05-15 10:23:38 +09:00
parent 4d070bb6c7
commit a0e6bc53b2
5 changed files with 173 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ import { refreshVisionCache } from './services/VisionDetect.js';
import { registerCaptureApi } from './ipc/captureApi.js';
import { registerInboxApi, pushNoteUpdated, pushOllamaStatus } from './ipc/inboxApi.js';
import { registerSettingsApi, navigateInbox } from './ipc/settingsApi.js';
import { NotebookRepository } from './repository/NotebookRepository.js';
import { registerNotebookApi } from './ipc/notebookApi.js';
import { createInboxWindow, getInboxWindow } from './windows/inboxWindow.js';
import {
createQuickCaptureWindow, showQuickCapture, getQuickCaptureWindow
@@ -101,6 +103,8 @@ app.whenReady().then(async () => {
}
const db = openDb(paths.dbFile);
const repo = new NoteRepository(db);
const notebookRepo = new NotebookRepository(db);
registerNotebookApi({ repo: notebookRepo });
const store = new MediaStore(paths.profileDir);
const continuity = new ContinuityService(db);
const intent = new IntentService(repo);

View File

@@ -0,0 +1,51 @@
import electron from 'electron';
const { ipcMain } = electron;
import type { NotebookRepository } from '../repository/NotebookRepository.js';
export interface NotebookIpcDeps {
repo: NotebookRepository;
}
export function registerNotebookApi(deps: NotebookIpcDeps): void {
ipcMain.handle('notebook:list', () => deps.repo.list());
ipcMain.handle('notebook:create', (_e, input: { name: string; color?: string }) => {
if (!input.name || input.name.trim().length === 0) {
return { ok: false as const, reason: 'empty_name' };
}
try {
const nb = deps.repo.create({ name: input.name.trim(), color: input.color ?? null });
return { ok: true as const, notebook: nb };
} catch (e) {
const msg = (e as Error).message;
if (msg.includes('UNIQUE')) return { ok: false as const, reason: 'duplicate_name' };
return { ok: false as const, reason: msg };
}
});
ipcMain.handle('notebook:rename', (_e, id: string, name: string) => {
if (!name || name.trim().length === 0) {
return { ok: false as const, reason: 'empty_name' };
}
try {
deps.repo.rename(id, name.trim());
return { ok: true as const };
} catch (e) {
const msg = (e as Error).message;
if (msg.includes('UNIQUE')) return { ok: false as const, reason: 'duplicate_name' };
return { ok: false as const, reason: msg };
}
});
ipcMain.handle('notebook:set-color', (_e, id: string, color: string | null) => {
deps.repo.setColor(id, color);
return { ok: true as const };
});
ipcMain.handle('notebook:delete', (_e, id: string) => deps.repo.delete(id));
ipcMain.handle('notebook:move-note', (_e, noteId: string, notebookId: string) => {
deps.repo.moveNote(noteId, notebookId);
return { ok: true as const };
});
}