'use client'; import { useState, type FormEvent } from 'react'; import { useRouter } from 'next/navigation'; export function CommentForm({ projectId, threadId, }: { projectId: number; threadId: number; }) { const router = useRouter(); const [bodyMd, setBodyMd] = 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}/board/threads/${threadId}/comments`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ bodyMd }), } ); setLoading(false); if (res.ok) { setBodyMd(''); router.refresh(); } else { const b = (await res.json().catch(() => null)) as { error?: { message?: string }; } | null; setError(b?.error?.message ?? '投稿に失敗しました'); } } return (