362f65656b
Full audit (bugs/UI-UX/backend/feature-gap) turned up a money-leak AI quota bypass, webhook SSRF, and a long tail of missing pagination/auth/a11y work. Fixes land together since HANDOFF.md tracked them as one backlog. - AI routes charge tier quota before generating; nutrition POST is author-only - Webhook dispatch re-validates URL per delivery (SSRF/DNS-rebinding), treats redirects as failures; recipe.published now actually dispatches - New indexes/unique constraints on recipes, meal-planning, comments FK cascade - Recipe PUT/restore snapshot only inside the transaction, after validation - Recipe DELETE cleans up S3 objects (recipe + review photos) - Optimistic UI (favorite/star/follow/shopping-list) rolls back on failure - Upload presign enforces file size cap + per-tier storage quota - Route-level loading/error/not-found states across (app), admin, and root - middleware.ts guards (app)/admin; requireAdmin checks DB role, not cached session; rate limiting applied to both session and API-key branches, bucketed per key; Stripe webhook dedupes by event id - Pagination added to recipes, feed, profile, comments, pantry, admin tables - Nav shows real avatar + profile link + dark-mode toggle; destructive actions standardized on AlertDialog - Unsaved-changes guard + real ingredient/step validation on recipe form; canonical /recipes/[id] used in-app; next/image migration; aria-labels and alt text across icon buttons, avatars, recipe photos - packages/api-types removed (zero callers, too drifted to safely rewire); openapi.ts and ai-keys error shape drift fixed; BYOK decrypt failures now surface instead of silently falling back to the platform key Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
165 lines
5.8 KiB
TypeScript
165 lines
5.8 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { useTranslations } from "next-intl";
|
|
import { Wine, Sparkles, Loader2, Coffee, Beer, GlassWater, Leaf } from "lucide-react";
|
|
import { FakeProgressBar } from "@/components/ui/fake-progress-bar";
|
|
import { toast } from "sonner";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogDescription,
|
|
} from "@/components/ui/dialog";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Separator } from "@/components/ui/separator";
|
|
|
|
type Drink = {
|
|
name: string;
|
|
type: "wine" | "beer" | "cocktail" | "spirit" | "non-alcoholic" | "hot";
|
|
alcoholic: boolean;
|
|
description: string;
|
|
examples: string[];
|
|
whyItPairs: string;
|
|
servingTip?: string;
|
|
};
|
|
|
|
const TYPE_ICON: Record<Drink["type"], React.ElementType> = {
|
|
wine: Wine,
|
|
beer: Beer,
|
|
cocktail: Wine,
|
|
spirit: Wine,
|
|
"non-alcoholic": GlassWater,
|
|
hot: Coffee,
|
|
};
|
|
|
|
const TYPE_LABEL_KEY: Record<Drink["type"], string> = {
|
|
wine: "drinksTypeWine",
|
|
beer: "drinksTypeBeer",
|
|
cocktail: "drinksTypeCocktail",
|
|
spirit: "drinksTypeSpirit",
|
|
"non-alcoholic": "drinksTypeNonAlcoholic",
|
|
hot: "drinksTypeHot",
|
|
};
|
|
|
|
export function DrinkPairingButton({ recipeId }: { recipeId: string }) {
|
|
const t = useTranslations("recipe");
|
|
const [open, setOpen] = useState(false);
|
|
const [loading, setLoading] = useState(false);
|
|
const [drinks, setDrinks] = useState<Drink[]>([]);
|
|
|
|
async function suggest() {
|
|
setLoading(true);
|
|
setDrinks([]);
|
|
try {
|
|
const res = await fetch(`/api/v1/ai/drinks/${recipeId}`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ count: 4 }),
|
|
});
|
|
if (!res.ok) {
|
|
toast.error(t("pairingDrinkFailed"));
|
|
return;
|
|
}
|
|
const data = await res.json() as { drinks: Drink[] };
|
|
setDrinks(data.drinks);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
function handleOpen() {
|
|
setOpen(true);
|
|
if (drinks.length === 0) suggest();
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger render={
|
|
<Button variant="ghost" size="icon" onClick={handleOpen} aria-label={t("drinksTooltip")}>
|
|
<Wine className="h-4 w-4" />
|
|
</Button>
|
|
} />
|
|
<TooltipContent>{t("drinksTooltip")}</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogContent className="max-w-2xl max-h-[80vh] overflow-y-auto">
|
|
<DialogHeader>
|
|
<DialogTitle className="flex items-center gap-2">
|
|
<Wine className="h-5 w-5 text-primary" />
|
|
{t("drinksDialogTitle")}
|
|
</DialogTitle>
|
|
<DialogDescription>
|
|
{t("drinksDialogDescription")}
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
{loading ? (
|
|
<div className="py-6 space-y-3">
|
|
<FakeProgressBar active={loading} durationMs={8000} label={t("pairingFindingLabel")} />
|
|
</div>
|
|
) : drinks.length === 0 ? (
|
|
<div className="flex flex-col items-center gap-4 py-8">
|
|
<Button onClick={suggest} size="lg">
|
|
<Sparkles className="h-4 w-4" />
|
|
{t("drinksSuggestButton")}
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-3">
|
|
{drinks.map((drink, i) => {
|
|
const Icon = TYPE_ICON[drink.type];
|
|
return (
|
|
<div key={i} className="rounded-lg border p-4">
|
|
<div className="flex items-start gap-3">
|
|
<div className="mt-0.5 shrink-0 h-8 w-8 rounded-full bg-muted flex items-center justify-center">
|
|
<Icon className="h-4 w-4 text-muted-foreground" />
|
|
</div>
|
|
<div className="flex-1 min-w-0 space-y-1.5">
|
|
<div className="flex items-center gap-2 flex-wrap">
|
|
<span className="font-semibold">{drink.name}</span>
|
|
<Badge variant="outline" className="text-xs">{t(TYPE_LABEL_KEY[drink.type])}</Badge>
|
|
{!drink.alcoholic && (
|
|
<Badge variant="secondary" className="text-xs flex items-center gap-1">
|
|
<Leaf className="h-2.5 w-2.5" />
|
|
{t("drinksTypeNonAlcoholic")}
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
<p className="text-sm text-muted-foreground">{drink.description}</p>
|
|
{drink.examples.length > 0 && (
|
|
<p className="text-xs text-muted-foreground">
|
|
<span className="font-medium">{t("drinksExamplesLabel")} </span>
|
|
{drink.examples.join(" · ")}
|
|
</p>
|
|
)}
|
|
<p className="text-xs text-muted-foreground italic">“{drink.whyItPairs}”</p>
|
|
{drink.servingTip && (
|
|
<p className="text-xs text-muted-foreground border-l-2 border-muted pl-2">{drink.servingTip}</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
{i < drinks.length - 1 && <Separator className="mt-3" />}
|
|
</div>
|
|
);
|
|
})}
|
|
|
|
<Button variant="ghost" className="w-full" onClick={suggest} disabled={loading}>
|
|
<Sparkles className="h-4 w-4" />
|
|
{t("pairingRegenerate")}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</DialogContent>
|
|
</Dialog>
|
|
</>
|
|
);
|
|
}
|