From 858178d6878229c0ac413d3ea5a4f799d6114ecb Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 7 Dec 2025 18:29:26 +0900 Subject: feat(client): add edit card modal with form validation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add EditCardModal component allowing users to edit existing cards. Includes Edit button on each card in the deck detail page and comprehensive unit tests. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/client/components/EditCardModal.tsx | 210 ++++++++++++++++++++++++++++++++ 1 file changed, 210 insertions(+) create mode 100644 src/client/components/EditCardModal.tsx (limited to 'src/client/components/EditCardModal.tsx') diff --git a/src/client/components/EditCardModal.tsx b/src/client/components/EditCardModal.tsx new file mode 100644 index 0000000..2d04581 --- /dev/null +++ b/src/client/components/EditCardModal.tsx @@ -0,0 +1,210 @@ +import { type FormEvent, useEffect, useState } from "react"; +import { ApiClientError, apiClient } from "../api"; + +interface Card { + id: string; + front: string; + back: string; +} + +interface EditCardModalProps { + isOpen: boolean; + deckId: string; + card: Card | null; + onClose: () => void; + onCardUpdated: () => void; +} + +export function EditCardModal({ + isOpen, + deckId, + card, + onClose, + onCardUpdated, +}: EditCardModalProps) { + const [front, setFront] = useState(""); + const [back, setBack] = useState(""); + const [error, setError] = useState(null); + const [isSubmitting, setIsSubmitting] = useState(false); + + // Sync form state when card changes + useEffect(() => { + if (card) { + setFront(card.front); + setBack(card.back); + setError(null); + } + }, [card]); + + const handleClose = () => { + setError(null); + onClose(); + }; + + const handleSubmit = async (e: FormEvent) => { + e.preventDefault(); + if (!card) return; + + setError(null); + setIsSubmitting(true); + + try { + const authHeader = apiClient.getAuthHeader(); + if (!authHeader) { + throw new ApiClientError("Not authenticated", 401); + } + + const res = await fetch(`/api/decks/${deckId}/cards/${card.id}`, { + method: "PUT", + headers: { + "Content-Type": "application/json", + ...authHeader, + }, + body: JSON.stringify({ + front: front.trim(), + back: back.trim(), + }), + }); + + if (!res.ok) { + const errorBody = await res.json().catch(() => ({})); + throw new ApiClientError( + (errorBody as { error?: string }).error || + `Request failed with status ${res.status}`, + res.status, + ); + } + + onCardUpdated(); + onClose(); + } catch (err) { + if (err instanceof ApiClientError) { + setError(err.message); + } else { + setError("Failed to update card. Please try again."); + } + } finally { + setIsSubmitting(false); + } + }; + + if (!isOpen || !card) { + return null; + } + + const isFormValid = front.trim() && back.trim(); + + return ( +
{ + if (e.target === e.currentTarget) { + handleClose(); + } + }} + onKeyDown={(e) => { + if (e.key === "Escape") { + handleClose(); + } + }} + > +
+

+ Edit Card +

+ +
+ {error && ( +
+ {error} +
+ )} + +
+ +