"use client"; import { useState } from "react"; import { useRouter } from "next/navigation"; import { useTranslations } from "next-intl"; import { ChefHat, Loader2 } from "lucide-react"; import { toast } from "sonner"; import { Button } from "@/components/ui/button"; import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, } from "@/components/ui/dialog"; import { FakeProgressBar } from "@/components/ui/fake-progress-bar"; import { BatchCookFields, type BatchCookFieldsState } from "./batch-cook-fields"; export function BatchCookGenerateDialog({ open, onOpenChange, }: { open: boolean; onOpenChange: (open: boolean) => void; }) { const t = useTranslations("batchCooking"); const tCommon = useTranslations("common"); const router = useRouter(); const [fields, setFields] = useState({ dinners: 4, lunches: 0, servings: 4, difficulty: "", dietaryPrefs: "", description: "", }); const [busy, setBusy] = useState(false); function handleClose() { if (busy) return; onOpenChange(false); } async function handleGenerate() { setBusy(true); try { const res = await fetch("/api/v1/ai/batch-cook/generate", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ dinners: fields.dinners, lunches: fields.lunches, servings: fields.servings, dietaryPrefs: fields.dietaryPrefs.trim() || undefined, difficulty: fields.difficulty || undefined, description: fields.description.trim() || undefined, }), }); if (!res.ok) { const err = await res.json() as { error?: string }; toast.error(err.error ?? t("generateFailed")); return; } const { id } = await res.json() as { id: string }; toast.success(t("generateSuccess")); onOpenChange(false); router.push(`/recipes/${id}`); } finally { setBusy(false); } } const canSubmit = fields.dinners + fields.lunches > 0; return (
{t("wizardTitle")} {t("wizardDescription")}
); }