From d47d1a014a71ae65cbbf1b384eed87c6fe078b07 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 2 May 2026 11:58:13 +0900 Subject: feat(note-types): make note type CRUD work fully offline-first MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CreateNoteTypeModal, DeleteNoteTypeModal, and the NoteTypeEditor (which covers field add/edit/delete/reorder) now write through the local IndexedDB repositories and fire-and-forget syncActionAtom, mirroring the deck-CRUD pattern. The dead EditNoteTypeModal — never imported — is removed. The local hasNotes / hasNoteFieldValues guards mirror the server's delete-time checks so a note type with attached notes, or a field with saved values, can't be silently soft-deleted offline. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/client/components/DeleteNoteTypeModal.tsx | 34 ++++++++++++++------------- 1 file changed, 18 insertions(+), 16 deletions(-) (limited to 'src/client/components/DeleteNoteTypeModal.tsx') diff --git a/src/client/components/DeleteNoteTypeModal.tsx b/src/client/components/DeleteNoteTypeModal.tsx index 2fbf808..121761b 100644 --- a/src/client/components/DeleteNoteTypeModal.tsx +++ b/src/client/components/DeleteNoteTypeModal.tsx @@ -1,7 +1,7 @@ -import { useAtomValue } from "jotai"; +import { useSetAtom } from "jotai"; import { useState } from "react"; -import { ApiClientError, apiClient } from "../api"; -import { isOnlineAtom } from "../atoms"; +import { syncActionAtom } from "../atoms"; +import { localNoteTypeRepository } from "../db/repositories"; interface NoteType { id: string; @@ -23,7 +23,7 @@ export function DeleteNoteTypeModal({ }: DeleteNoteTypeModalProps) { const [error, setError] = useState(null); const [isDeleting, setIsDeleting] = useState(false); - const isOnline = useAtomValue(isOnlineAtom); + const triggerSync = useSetAtom(syncActionAtom); const handleClose = () => { setError(null); @@ -37,19 +37,22 @@ export function DeleteNoteTypeModal({ setIsDeleting(true); try { - const res = await apiClient.rpc.api["note-types"][":id"].$delete({ - param: { id: noteType.id }, - }); - await apiClient.handleResponse(res); + if (await localNoteTypeRepository.hasNotes(noteType.id)) { + setError("Cannot delete note type with existing notes."); + return; + } + + const deleted = await localNoteTypeRepository.delete(noteType.id); + if (!deleted) { + setError("Note type not found."); + return; + } onNoteTypeDeleted(); onClose(); - } catch (err) { - if (err instanceof ApiClientError) { - setError(err.message); - } else { - setError("Failed to delete note type. Please try again."); - } + void triggerSync().catch(() => {}); + } catch { + setError("Failed to delete note type. Please try again."); } finally { setIsDeleting(false); } @@ -132,8 +135,7 @@ export function DeleteNoteTypeModal({