fix: mobile layout fixes, i18n coverage, and recipe share link
Mobile:
- Recipes search bar full-width on mobile instead of capped narrow
- Cook mode ingredients panel stacks above the step instead of
squeezing it into a narrow column
- Version history Compare/Restore buttons wrap onto their own row
- Recipe edit ingredient fields wrap instead of forcing horizontal
scroll on narrow viewports
i18n: translates remaining hardcoded strings across recipes
filter/sort, adapt-recipe and AI variations dialogs, the full
settings section (sidebar + 6 sub-pages + BYOK/model-prefs/
API-keys/webhooks managers), explore tab, collections (new/fork/
share dialogs), meal planning (planner, AI generation phases, new
shopping list, shared-plan view), photo import, recipe bulk-select
toolbar, and recipe action-button tooltips. Also fixes the recipes
page subtitle, which wasn't just unworded but missing its {count}
interpolation entirely — it always rendered as the bare word
"results" regardless of how many recipes existed.
Feature: adds a ShareRecipeButton that copies the public /r/{id}
link to the clipboard, with a notice when the recipe isn't Public
yet.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import { useTranslations } from "next-intl";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { GitFork } from "lucide-react";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { toast } from "sonner";
|
||||
|
||||
export function ForkCollectionButton({ collectionId }: { collectionId: string }) {
|
||||
const t = useTranslations("collections");
|
||||
const tSocial = useTranslations("social");
|
||||
const [forking, setForking] = useState(false);
|
||||
const router = useRouter();
|
||||
|
||||
@@ -16,13 +19,13 @@ export function ForkCollectionButton({ collectionId }: { collectionId: string })
|
||||
const res = await fetch(`/api/v1/collections/${collectionId}/fork`, { method: "POST" });
|
||||
if (!res.ok) {
|
||||
const data = await res.json() as { error?: string };
|
||||
throw new Error(data.error ?? "Fork failed");
|
||||
throw new Error(data.error ?? t("forkFailed"));
|
||||
}
|
||||
const { id } = await res.json() as { id: string };
|
||||
toast.success("Collection forked to your library");
|
||||
toast.success(tSocial("collectionForked"));
|
||||
router.push(`/collections/${id}`);
|
||||
} catch (err) {
|
||||
toast.error(err instanceof Error ? err.message : "Fork failed");
|
||||
toast.error(err instanceof Error ? err.message : t("forkFailed"));
|
||||
setForking(false);
|
||||
}
|
||||
}
|
||||
@@ -30,7 +33,7 @@ export function ForkCollectionButton({ collectionId }: { collectionId: string })
|
||||
return (
|
||||
<Button variant="outline" size="sm" onClick={() => { void handleFork(); }} disabled={forking} className="gap-2 shrink-0">
|
||||
<GitFork className="h-4 w-4" />
|
||||
{forking ? "Forking…" : "Fork collection"}
|
||||
{forking ? t("forking") : t("forkCollection")}
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user