70eb565eec
Extends the existing bulk-select infra: recipes list gets tag add/remove and multi-recipe Markdown export; collection pages get a select mode to move recipes to another collection or remove them from the current one. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
167 lines
5.7 KiB
TypeScript
167 lines
5.7 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import { useTranslations } from "next-intl";
|
|
import { toast } from "sonner";
|
|
import { FolderPlus, FolderOpen, Plus, Check } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
|
|
type CollectionSummary = { id: string; name: string };
|
|
|
|
export function AddToCollectionDialog({
|
|
open,
|
|
onOpenChange,
|
|
recipeIds,
|
|
onDone,
|
|
sourceCollectionId,
|
|
}: {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
recipeIds: string[];
|
|
onDone: () => void;
|
|
/** When set, this is a "move" — after adding to the target, the recipes are removed from this collection. */
|
|
sourceCollectionId?: string;
|
|
}) {
|
|
const t = useTranslations("recipe");
|
|
const [collections, setCollections] = useState<CollectionSummary[]>([]);
|
|
const [loading, setLoading] = useState(false);
|
|
const [creating, setCreating] = useState(false);
|
|
const [newName, setNewName] = useState("");
|
|
const [showNewForm, setShowNewForm] = useState(false);
|
|
const [busyId, setBusyId] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (!open) return;
|
|
setShowNewForm(false);
|
|
setNewName("");
|
|
setLoading(true);
|
|
fetch("/api/v1/collections?limit=50")
|
|
.then((res) => (res.ok ? res.json() : null))
|
|
.then((data: { data: CollectionSummary[] } | null) => {
|
|
setCollections((data?.data ?? []).filter((c) => c.id !== sourceCollectionId));
|
|
})
|
|
.finally(() => setLoading(false));
|
|
}, [open, sourceCollectionId]);
|
|
|
|
async function addTo(collectionId: string, collectionName: string) {
|
|
setBusyId(collectionId);
|
|
try {
|
|
const res = await fetch(`/api/v1/collections/${collectionId}`, {
|
|
method: "PUT",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ addRecipeIds: recipeIds }),
|
|
});
|
|
if (!res.ok) throw new Error();
|
|
|
|
if (sourceCollectionId) {
|
|
await fetch(`/api/v1/collections/${sourceCollectionId}`, {
|
|
method: "PUT",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ removeRecipeIds: recipeIds }),
|
|
});
|
|
}
|
|
|
|
toast.success(
|
|
sourceCollectionId
|
|
? t("moveToCollectionSuccess", { count: recipeIds.length, name: collectionName })
|
|
: t("addToCollectionSuccess", { count: recipeIds.length, name: collectionName })
|
|
);
|
|
onOpenChange(false);
|
|
onDone();
|
|
} catch {
|
|
toast.error(t("addToCollectionFailed"));
|
|
} finally {
|
|
setBusyId(null);
|
|
}
|
|
}
|
|
|
|
async function createAndAdd() {
|
|
if (!newName.trim()) return;
|
|
setCreating(true);
|
|
try {
|
|
const createRes = await fetch("/api/v1/collections", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ name: newName.trim() }),
|
|
});
|
|
if (!createRes.ok) throw new Error();
|
|
const { id } = (await createRes.json()) as { id: string };
|
|
await addTo(id, newName.trim());
|
|
} catch {
|
|
toast.error(t("createCollectionFailed"));
|
|
} finally {
|
|
setCreating(false);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle className="flex items-center gap-2">
|
|
<FolderPlus className="h-5 w-5 text-primary" />
|
|
{sourceCollectionId
|
|
? t("moveToCollectionTitle", { count: recipeIds.length })
|
|
: t("addToCollectionTitle", { count: recipeIds.length })}
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-3">
|
|
{loading ? (
|
|
<p className="text-sm text-muted-foreground py-2">…</p>
|
|
) : (
|
|
<div className="space-y-1 max-h-64 overflow-y-auto">
|
|
{collections.length === 0 && !showNewForm && (
|
|
<p className="text-sm text-muted-foreground py-2">{t("noCollectionsYet")}</p>
|
|
)}
|
|
{collections.map((c) => (
|
|
<button
|
|
key={c.id}
|
|
onClick={() => { void addTo(c.id, c.name); }}
|
|
disabled={busyId !== null}
|
|
className="w-full flex items-center gap-2 rounded-md px-3 py-2 text-sm hover:bg-accent transition-colors disabled:opacity-50 text-left"
|
|
>
|
|
<FolderOpen className="h-4 w-4 text-muted-foreground shrink-0" />
|
|
<span className="flex-1 truncate">{c.name}</span>
|
|
{busyId === c.id && <Check className="h-4 w-4 text-primary" />}
|
|
</button>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{showNewForm ? (
|
|
<div className="flex gap-2">
|
|
<Input
|
|
autoFocus
|
|
value={newName}
|
|
onChange={(e) => setNewName(e.target.value)}
|
|
placeholder={t("newCollectionNamePlaceholder")}
|
|
onKeyDown={(e) => e.key === "Enter" && void createAndAdd()}
|
|
disabled={creating}
|
|
/>
|
|
<Button onClick={() => { void createAndAdd(); }} disabled={!newName.trim() || creating}>
|
|
{t("addToCollection")}
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<button
|
|
onClick={() => setShowNewForm(true)}
|
|
className="w-full flex items-center gap-2 rounded-md px-3 py-2 text-sm text-primary hover:bg-accent transition-colors"
|
|
>
|
|
<Plus className="h-4 w-4" />
|
|
{t("newCollectionOption")}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|