'use client'; import { useState, type FormEvent } from 'react'; import { useRouter } from 'next/navigation'; export function MilestoneForm({ projectId }: { projectId: number }) { const router = useRouter(); const [title, setTitle] = useState(''); const [dueDate, setDueDate] = useState(''); const [loading, setLoading] = useState(false); const [error, setError] = useState(null); async function onSubmit(event: FormEvent) { event.preventDefault(); setLoading(true); setError(null); const res = await fetch(`/api/projects/${projectId}/milestones`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ title, dueDate: dueDate || null }), }); setLoading(false); if (res.ok) { setTitle(''); setDueDate(''); router.refresh(); } else { const b = (await res.json().catch(() => null)) as { error?: { message?: string }; } | null; setError(b?.error?.message ?? '作成に失敗しました'); } } return (
setTitle(e.target.value)} className="mt-1 w-full rounded border px-3 py-2" required />
setDueDate(e.target.value)} className="mt-1 rounded border px-3 py-2" />
{error && (

{error}

)}
); }