feat: merge people search into the recipe search bar on Explore
People search existed but was buried in its own tab with no entry point from anywhere else — easy to conclude it "doesn't work" since nobody would find it. Now one query on Explore hits both /api/v1/search and /api/v1/users/search and renders People/Recipes sections together; the standalone people tab and its now-dead PeopleSearch component are gone. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together.
|
All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together.
|
||||||
|
|
||||||
|
## 0.13.0 — 2026-07-13 15:37
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **Explore search now finds people and recipes together**: one search bar, one query — no more separate, hard-to-find people tab.
|
||||||
|
|
||||||
## 0.12.1 — 2026-07-13 13:25
|
## 0.12.1 — 2026-07-13 13:25
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -27,9 +27,9 @@ export type RecipeResult = {
|
|||||||
export default async function ExplorePage({
|
export default async function ExplorePage({
|
||||||
searchParams,
|
searchParams,
|
||||||
}: {
|
}: {
|
||||||
searchParams: Promise<{ q?: string; tab?: string }>;
|
searchParams: Promise<{ q?: string }>;
|
||||||
}) {
|
}) {
|
||||||
const { q, tab } = await searchParams;
|
const { q } = await searchParams;
|
||||||
const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000);
|
const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000);
|
||||||
|
|
||||||
// Trending: public recipes ordered by favorite count in last 7 days
|
// Trending: public recipes ordered by favorite count in last 7 days
|
||||||
@@ -81,7 +81,6 @@ export default async function ExplorePage({
|
|||||||
trending={trending}
|
trending={trending}
|
||||||
recent={recent}
|
recent={recent}
|
||||||
initialQuery={q ?? ""}
|
initialQuery={q ?? ""}
|
||||||
initialTab={tab === "people" ? "people" : "recipes"}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,18 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState, useEffect, useRef, useCallback } from "react";
|
import { useState, useEffect, useRef, useCallback } from "react";
|
||||||
|
import Link from "next/link";
|
||||||
import { useRouter, useSearchParams } from "next/navigation";
|
import { useRouter, useSearchParams } from "next/navigation";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { Badge } from "@/components/ui/badge";
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
||||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||||
import { Tabs, TabsList, TabsTrigger, TabsContent } from "@/components/ui/tabs";
|
import { Flame, Clock, ChefHat, Search, Sparkles, Wand2, ArrowRight, Shuffle, Users } from "lucide-react";
|
||||||
import { Flame, Clock, ChefHat, Search, Sparkles, Wand2, ArrowRight, Shuffle } from "lucide-react";
|
|
||||||
import { useTranslations } from "next-intl";
|
import { useTranslations } from "next-intl";
|
||||||
import type { RecipeResult as ExploreRecipeResult } from "@/app/(app)/explore/page";
|
import type { RecipeResult as ExploreRecipeResult } from "@/app/(app)/explore/page";
|
||||||
import { SearchResultCard } from "@/components/recipe/search-result-card";
|
import { SearchResultCard } from "@/components/recipe/search-result-card";
|
||||||
import { PeopleSearch } from "@/components/social/people-search";
|
import { FollowButton } from "@/components/social/follow-button";
|
||||||
|
|
||||||
const DIFFICULTY_COLORS: Record<string, string> = {
|
const DIFFICULTY_COLORS: Record<string, string> = {
|
||||||
easy: "bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200",
|
easy: "bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200",
|
||||||
@@ -36,6 +37,14 @@ type SearchResponse = {
|
|||||||
offset: number;
|
offset: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type PersonResult = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
username: string | null;
|
||||||
|
avatarUrl: string | null;
|
||||||
|
bio: string | null;
|
||||||
|
};
|
||||||
|
|
||||||
type RecipeIdea = {
|
type RecipeIdea = {
|
||||||
title: string;
|
title: string;
|
||||||
description: string;
|
description: string;
|
||||||
@@ -70,17 +79,15 @@ type Props = {
|
|||||||
trending: ExploreRecipeResult[];
|
trending: ExploreRecipeResult[];
|
||||||
recent: ExploreRecipeResult[];
|
recent: ExploreRecipeResult[];
|
||||||
initialQuery: string;
|
initialQuery: string;
|
||||||
initialTab: "recipes" | "people";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function ExplorePageContent({ trending, recent, initialQuery, initialTab }: Props) {
|
export function ExplorePageContent({ trending, recent, initialQuery }: Props) {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
const t = useTranslations("explore");
|
const t = useTranslations("explore");
|
||||||
const tCommon = useTranslations("common");
|
const tCommon = useTranslations("common");
|
||||||
const tRecipe = useTranslations("recipe");
|
const tRecipe = useTranslations("recipe");
|
||||||
|
const tPeople = useTranslations("people");
|
||||||
const [activeTab, setActiveTab] = useState<"recipes" | "people">(initialTab);
|
|
||||||
|
|
||||||
const [inputValue, setInputValue] = useState(initialQuery);
|
const [inputValue, setInputValue] = useState(initialQuery);
|
||||||
const [query, setQuery] = useState(initialQuery);
|
const [query, setQuery] = useState(initialQuery);
|
||||||
@@ -92,6 +99,9 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [loadingMore, setLoadingMore] = useState(false);
|
const [loadingMore, setLoadingMore] = useState(false);
|
||||||
|
|
||||||
|
const [peopleResults, setPeopleResults] = useState<PersonResult[]>([]);
|
||||||
|
const [peopleLoading, setPeopleLoading] = useState(false);
|
||||||
|
|
||||||
const [ideasPrompt, setIdeasPrompt] = useState("");
|
const [ideasPrompt, setIdeasPrompt] = useState("");
|
||||||
const [ideas, setIdeas] = useState<RecipeIdea[]>([]);
|
const [ideas, setIdeas] = useState<RecipeIdea[]>([]);
|
||||||
const [ideasLoading, setIdeasLoading] = useState(false);
|
const [ideasLoading, setIdeasLoading] = useState(false);
|
||||||
@@ -129,8 +139,27 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
[]
|
[]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const fetchPeople = useCallback(async (q: string) => {
|
||||||
|
if (q.trim().length < 2) {
|
||||||
|
setPeopleResults([]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setPeopleLoading(true);
|
||||||
|
try {
|
||||||
|
const res = await fetch(`/api/v1/users/search?q=${encodeURIComponent(q.trim())}`);
|
||||||
|
if (!res.ok) return;
|
||||||
|
const data = (await res.json()) as { users: PersonResult[] };
|
||||||
|
setPeopleResults(data.users);
|
||||||
|
} finally {
|
||||||
|
setPeopleLoading(false);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (initialQuery) fetchResults(initialQuery, "any", "", 0);
|
if (initialQuery) {
|
||||||
|
fetchResults(initialQuery, "any", "", 0);
|
||||||
|
fetchPeople(initialQuery);
|
||||||
|
}
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
@@ -144,18 +173,6 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
[router, searchParams]
|
[router, searchParams]
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleTabChange = useCallback(
|
|
||||||
(value: string | null) => {
|
|
||||||
const next = value === "people" ? "people" : "recipes";
|
|
||||||
setActiveTab(next);
|
|
||||||
const params = new URLSearchParams(searchParams.toString());
|
|
||||||
if (next === "people") params.set("tab", "people");
|
|
||||||
else params.delete("tab");
|
|
||||||
router.replace(`/explore?${params}`, { scroll: false });
|
|
||||||
},
|
|
||||||
[router, searchParams]
|
|
||||||
);
|
|
||||||
|
|
||||||
const fetchIdeas = useCallback(async (prompt: string) => {
|
const fetchIdeas = useCallback(async (prompt: string) => {
|
||||||
setIdeasLoading(true);
|
setIdeasLoading(true);
|
||||||
setIdeas([]);
|
setIdeas([]);
|
||||||
@@ -197,6 +214,7 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
setQuery(value);
|
setQuery(value);
|
||||||
updateUrl(value);
|
updateUrl(value);
|
||||||
fetchResults(value, difficulty, maxMins, 0);
|
fetchResults(value, difficulty, maxMins, 0);
|
||||||
|
fetchPeople(value);
|
||||||
}, 300);
|
}, 300);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -206,6 +224,7 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
setQuery(inputValue);
|
setQuery(inputValue);
|
||||||
updateUrl(inputValue);
|
updateUrl(inputValue);
|
||||||
fetchResults(inputValue, difficulty, maxMins, 0);
|
fetchResults(inputValue, difficulty, maxMins, 0);
|
||||||
|
fetchPeople(inputValue);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleDifficultyChange = (value: string | null) => {
|
const handleDifficultyChange = (value: string | null) => {
|
||||||
@@ -224,6 +243,7 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
|
|
||||||
const hasQuery = query.trim().length > 0;
|
const hasQuery = query.trim().length > 0;
|
||||||
const hasMore = results.length < total;
|
const hasMore = results.length < total;
|
||||||
|
const hasNoResults = hasQuery && !loading && !peopleLoading && results.length === 0 && peopleResults.length === 0;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="max-w-5xl mx-auto space-y-6">
|
<div className="max-w-5xl mx-auto space-y-6">
|
||||||
@@ -231,15 +251,8 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
<h1 className="text-3xl font-bold">{t("title")}</h1>
|
<h1 className="text-3xl font-bold">{t("title")}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Tabs value={activeTab} onValueChange={handleTabChange} className="gap-6">
|
<div className="space-y-10">
|
||||||
<TabsList>
|
{/* Search bar — one query finds both recipes and people */}
|
||||||
<TabsTrigger value="recipes">{t("tabRecipes")}</TabsTrigger>
|
|
||||||
<TabsTrigger value="people">{t("tabPeople")}</TabsTrigger>
|
|
||||||
</TabsList>
|
|
||||||
|
|
||||||
<TabsContent value="recipes">
|
|
||||||
<div className="space-y-10">
|
|
||||||
{/* Search bar */}
|
|
||||||
<div className="space-y-3">
|
<div className="space-y-3">
|
||||||
<form onSubmit={handleSubmit} className="relative">
|
<form onSubmit={handleSubmit} className="relative">
|
||||||
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-5 w-5 text-muted-foreground pointer-events-none" />
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-5 w-5 text-muted-foreground pointer-events-none" />
|
||||||
@@ -283,7 +296,40 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Search results */}
|
{/* People results */}
|
||||||
|
{hasQuery && (peopleLoading || peopleResults.length > 0) && (
|
||||||
|
<section className="space-y-3">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Users className="h-4 w-4 text-muted-foreground" />
|
||||||
|
<h2 className="text-sm font-semibold uppercase tracking-wide text-muted-foreground">{t("peopleHeading")}</h2>
|
||||||
|
</div>
|
||||||
|
{peopleLoading ? (
|
||||||
|
<p className="text-sm text-muted-foreground">{tPeople("searching")}</p>
|
||||||
|
) : (
|
||||||
|
<div className="space-y-2">
|
||||||
|
{peopleResults.map((person) => (
|
||||||
|
<div key={person.id} className="flex items-center gap-3 rounded-lg border p-3">
|
||||||
|
<Link href={`/u/${person.username}`} className="flex items-center gap-3 flex-1 min-w-0">
|
||||||
|
<Avatar className="h-10 w-10 shrink-0">
|
||||||
|
{person.avatarUrl && <AvatarImage src={person.avatarUrl} alt={person.name} />}
|
||||||
|
<AvatarFallback>{person.name.slice(0, 2).toUpperCase()}</AvatarFallback>
|
||||||
|
</Avatar>
|
||||||
|
<div className="min-w-0">
|
||||||
|
<p className="font-medium text-sm truncate">{person.name}</p>
|
||||||
|
<p className="text-xs text-muted-foreground truncate">@{person.username}</p>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
{person.username && (
|
||||||
|
<FollowButton targetUserId={person.id} targetUsername={person.username} />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</section>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Recipe search results */}
|
||||||
{hasQuery && loading && (
|
{hasQuery && loading && (
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
|
||||||
{Array.from({ length: 8 }).map((_, i) => (
|
{Array.from({ length: 8 }).map((_, i) => (
|
||||||
@@ -296,7 +342,7 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{hasQuery && !loading && results.length === 0 && (
|
{hasNoResults && (
|
||||||
<div className="flex flex-col items-center justify-center py-24 text-muted-foreground">
|
<div className="flex flex-col items-center justify-center py-24 text-muted-foreground">
|
||||||
<ChefHat className="h-12 w-12 mb-4 opacity-30" />
|
<ChefHat className="h-12 w-12 mb-4 opacity-30" />
|
||||||
<p className="text-lg font-medium">{t("noResultsTitle", { query })}</p>
|
<p className="text-lg font-medium">{t("noResultsTitle", { query })}</p>
|
||||||
@@ -306,6 +352,10 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
|
|
||||||
{hasQuery && !loading && results.length > 0 && (
|
{hasQuery && !loading && results.length > 0 && (
|
||||||
<>
|
<>
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<ChefHat className="h-4 w-4 text-muted-foreground" />
|
||||||
|
<h2 className="text-sm font-semibold uppercase tracking-wide text-muted-foreground">{t("recipesHeading")}</h2>
|
||||||
|
</div>
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
|
||||||
{results.map((recipe) => (
|
{results.map((recipe) => (
|
||||||
<SearchResultCard key={recipe.id} recipe={recipe} />
|
<SearchResultCard key={recipe.id} recipe={recipe} />
|
||||||
@@ -469,13 +519,7 @@ export function ExplorePageContent({ trending, recent, initialQuery, initialTab
|
|||||||
</section>
|
</section>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
|
||||||
|
|
||||||
<TabsContent value="people">
|
|
||||||
<PeopleSearch />
|
|
||||||
</TabsContent>
|
|
||||||
</Tabs>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,84 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { useEffect, useState } from "react";
|
|
||||||
import Link from "next/link";
|
|
||||||
import { useTranslations } from "next-intl";
|
|
||||||
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
||||||
import { Input } from "@/components/ui/input";
|
|
||||||
import { FollowButton } from "@/components/social/follow-button";
|
|
||||||
import { Search } from "lucide-react";
|
|
||||||
|
|
||||||
type PersonResult = {
|
|
||||||
id: string;
|
|
||||||
name: string;
|
|
||||||
username: string | null;
|
|
||||||
avatarUrl: string | null;
|
|
||||||
bio: string | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function PeopleSearch() {
|
|
||||||
const t = useTranslations("people");
|
|
||||||
const [q, setQ] = useState("");
|
|
||||||
const [results, setResults] = useState<PersonResult[]>([]);
|
|
||||||
const [loading, setLoading] = useState(false);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (q.trim().length < 2) {
|
|
||||||
setResults([]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const timeout = setTimeout(async () => {
|
|
||||||
setLoading(true);
|
|
||||||
try {
|
|
||||||
const res = await fetch(`/api/v1/users/search?q=${encodeURIComponent(q.trim())}`);
|
|
||||||
if (res.ok) {
|
|
||||||
const data = (await res.json()) as { users: PersonResult[] };
|
|
||||||
setResults(data.users);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
setLoading(false);
|
|
||||||
}
|
|
||||||
}, 300);
|
|
||||||
return () => clearTimeout(timeout);
|
|
||||||
}, [q]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="space-y-4">
|
|
||||||
<div className="relative">
|
|
||||||
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
||||||
<Input
|
|
||||||
value={q}
|
|
||||||
onChange={(e) => setQ(e.target.value)}
|
|
||||||
placeholder={t("searchPlaceholder")}
|
|
||||||
className="pl-9"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{loading && <p className="text-sm text-muted-foreground">{t("searching")}</p>}
|
|
||||||
|
|
||||||
{!loading && q.trim().length >= 2 && results.length === 0 && (
|
|
||||||
<p className="text-sm text-muted-foreground">{t("noneFound")}</p>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className="space-y-2">
|
|
||||||
{results.map((person) => (
|
|
||||||
<div key={person.id} className="flex items-center gap-3 rounded-lg border p-3">
|
|
||||||
<Link href={`/u/${person.username}`} className="flex items-center gap-3 flex-1 min-w-0">
|
|
||||||
<Avatar className="h-10 w-10 shrink-0">
|
|
||||||
{person.avatarUrl && <AvatarImage src={person.avatarUrl} alt={person.name} />}
|
|
||||||
<AvatarFallback>{person.name.slice(0, 2).toUpperCase()}</AvatarFallback>
|
|
||||||
</Avatar>
|
|
||||||
<div className="min-w-0">
|
|
||||||
<p className="font-medium text-sm truncate">{person.name}</p>
|
|
||||||
<p className="text-xs text-muted-foreground truncate">@{person.username}</p>
|
|
||||||
</div>
|
|
||||||
</Link>
|
|
||||||
{person.username && (
|
|
||||||
<FollowButton targetUserId={person.id} targetUsername={person.username} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// Mirrors CHANGELOG.md at the repo root — update both together.
|
// Mirrors CHANGELOG.md at the repo root — update both together.
|
||||||
export const APP_VERSION = "0.12.1";
|
export const APP_VERSION = "0.13.0";
|
||||||
|
|
||||||
export type ChangelogEntry = {
|
export type ChangelogEntry = {
|
||||||
version: string;
|
version: string;
|
||||||
@@ -11,6 +11,13 @@ export type ChangelogEntry = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const CHANGELOG: ChangelogEntry[] = [
|
export const CHANGELOG: ChangelogEntry[] = [
|
||||||
|
{
|
||||||
|
version: "0.13.0",
|
||||||
|
date: "2026-07-13 15:37",
|
||||||
|
added: [
|
||||||
|
"**Explore search now finds people and recipes together**: one search bar, one query — no more separate, hard-to-find people tab.",
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: "0.12.1",
|
version: "0.12.1",
|
||||||
date: "2026-07-13 13:25",
|
date: "2026-07-13 13:25",
|
||||||
|
|||||||
@@ -438,11 +438,7 @@
|
|||||||
"dismissAiScaling": "Dismiss AI scaling"
|
"dismissAiScaling": "Dismiss AI scaling"
|
||||||
},
|
},
|
||||||
"people": {
|
"people": {
|
||||||
"title": "Find People",
|
"searching": "Searching…"
|
||||||
"subtitle": "Search for cooks to follow by name or username.",
|
|
||||||
"searchPlaceholder": "Search people by name or username…",
|
|
||||||
"searching": "Searching…",
|
|
||||||
"noneFound": "No one found."
|
|
||||||
},
|
},
|
||||||
"messages": {
|
"messages": {
|
||||||
"loading": "Loading…",
|
"loading": "Loading…",
|
||||||
@@ -497,15 +493,15 @@
|
|||||||
},
|
},
|
||||||
"explore": {
|
"explore": {
|
||||||
"title": "Explore",
|
"title": "Explore",
|
||||||
"tabRecipes": "Recipes",
|
"searchPlaceholder": "Search recipes and people…",
|
||||||
"tabPeople": "People",
|
"peopleHeading": "People",
|
||||||
"searchPlaceholder": "Search public recipes…",
|
"recipesHeading": "Recipes",
|
||||||
"maxMinutes": "Max minutes",
|
"maxMinutes": "Max minutes",
|
||||||
"aiSearchPlaceholder": "e.g. quick weeknight dinners, Italian comfort food…",
|
"aiSearchPlaceholder": "e.g. quick weeknight dinners, Italian comfort food…",
|
||||||
"anyDifficulty": "Any difficulty",
|
"anyDifficulty": "Any difficulty",
|
||||||
"resultsFoundSingular": "{count} recipe found",
|
"resultsFoundSingular": "{count} recipe found",
|
||||||
"resultsFoundPlural": "{count} recipes found",
|
"resultsFoundPlural": "{count} recipes found",
|
||||||
"noResultsTitle": "No recipes found for “{query}”",
|
"noResultsTitle": "No results for “{query}”",
|
||||||
"noResultsHint": "Try different keywords or remove filters",
|
"noResultsHint": "Try different keywords or remove filters",
|
||||||
"loadMore": "Load more",
|
"loadMore": "Load more",
|
||||||
"recipeIdeas": "Recipe ideas",
|
"recipeIdeas": "Recipe ideas",
|
||||||
|
|||||||
@@ -438,11 +438,7 @@
|
|||||||
"dismissAiScaling": "Ignorer l'ajustement IA"
|
"dismissAiScaling": "Ignorer l'ajustement IA"
|
||||||
},
|
},
|
||||||
"people": {
|
"people": {
|
||||||
"title": "Trouver des personnes",
|
"searching": "Recherche…"
|
||||||
"subtitle": "Recherchez des cuisiniers à suivre par nom ou nom d'utilisateur.",
|
|
||||||
"searchPlaceholder": "Rechercher par nom ou nom d'utilisateur…",
|
|
||||||
"searching": "Recherche…",
|
|
||||||
"noneFound": "Personne trouvé."
|
|
||||||
},
|
},
|
||||||
"messages": {
|
"messages": {
|
||||||
"loading": "Chargement…",
|
"loading": "Chargement…",
|
||||||
@@ -497,15 +493,15 @@
|
|||||||
},
|
},
|
||||||
"explore": {
|
"explore": {
|
||||||
"title": "Explorer",
|
"title": "Explorer",
|
||||||
"tabRecipes": "Recettes",
|
"searchPlaceholder": "Rechercher des recettes et des personnes…",
|
||||||
"tabPeople": "Personnes",
|
"peopleHeading": "Personnes",
|
||||||
"searchPlaceholder": "Rechercher des recettes publiques…",
|
"recipesHeading": "Recettes",
|
||||||
"maxMinutes": "Minutes max",
|
"maxMinutes": "Minutes max",
|
||||||
"aiSearchPlaceholder": "ex. dîners rapides en semaine, cuisine réconfortante italienne…",
|
"aiSearchPlaceholder": "ex. dîners rapides en semaine, cuisine réconfortante italienne…",
|
||||||
"anyDifficulty": "Toute difficulté",
|
"anyDifficulty": "Toute difficulté",
|
||||||
"resultsFoundSingular": "{count} recette trouvée",
|
"resultsFoundSingular": "{count} recette trouvée",
|
||||||
"resultsFoundPlural": "{count} recettes trouvées",
|
"resultsFoundPlural": "{count} recettes trouvées",
|
||||||
"noResultsTitle": "Aucune recette trouvée pour « {query} »",
|
"noResultsTitle": "Aucun résultat pour « {query} »",
|
||||||
"noResultsHint": "Essayez d'autres mots-clés ou retirez des filtres",
|
"noResultsHint": "Essayez d'autres mots-clés ou retirez des filtres",
|
||||||
"loadMore": "Charger plus",
|
"loadMore": "Charger plus",
|
||||||
"recipeIdeas": "Idées de recettes",
|
"recipeIdeas": "Idées de recettes",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@epicure/web",
|
"name": "@epicure/web",
|
||||||
"version": "0.12.1",
|
"version": "0.13.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "epicure",
|
"name": "epicure",
|
||||||
"version": "0.12.1",
|
"version": "0.13.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "pnpm --filter web dev",
|
"dev": "pnpm --filter web dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user