'use client'; import { useState, type FormEvent } from 'react'; import { useRouter } from 'next/navigation'; export function CalendarEventForm({ projectId, defaultDate, }: { projectId: number; defaultDate: string; }) { const router = useRouter(); const [title, setTitle] = useState(''); const [startAt, setStartAt] = useState(`${defaultDate}T10:00:00`); 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}/calendar/events`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ title, type: 'custom', startAt }), }); setLoading(false); if (res.ok) { setTitle(''); 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 />
setStartAt(e.target.value)} className="mt-1 rounded border px-3 py-2" />
{error && (

{error}

)}
); }