Files
homepage/src/routes/[recipeLang=recipeLang]/+page.svelte
Alexander Bocken bc170abcdf fix: add category and favorites filters to all recipe pages
- Move categories logic into Search component for centralization
- Add isLoggedIn prop to SeasonLayout and IconLayout components
- Fix FilterPanel CSS to properly handle hidden favorites filter
- Fix FavoritesFilter to trigger onToggle when checkbox changes
- Update Search effect to track all filter states (category, tags, icon, season, favorites)
- Hide favorites filter on favorites page while maintaining proper grid layout
- All filters now work consistently across entire site
2026-01-10 17:20:00 +01:00

139 lines
4.6 KiB
Svelte

<script lang="ts">
import type { PageData } from './$types';
import MediaScroller from '$lib/components/MediaScroller.svelte';
import AddButton from '$lib/components/AddButton.svelte';
import Card from '$lib/components/Card.svelte';
import Search from '$lib/components/Search.svelte';
import LazyCategory from '$lib/components/LazyCategory.svelte';
import { getCategories } from '$lib/js/categories';
let { data } = $props<{ data: PageData }>();
let current_month = new Date().getMonth() + 1;
// Search state
let matchedRecipeIds = $state(new Set());
let matchedCategories = $state(new Set());
let hasActiveSearch = $state(false);
// Handle search results from Search component
function handleSearchResults(ids, categories) {
matchedRecipeIds = ids;
matchedCategories = categories || new Set();
hasActiveSearch = ids.size < data.all_brief.length;
}
const isEnglish = $derived(data.lang === 'en');
const categories = $derived(getCategories(data.lang));
// Pre-compute category-to-recipes Map for O(1) lookups
const recipesByCategory = $derived.by(() => {
const map = new Map();
for (const recipe of data.all_brief) {
if (!map.has(recipe.category)) {
map.set(recipe.category, []);
}
map.get(recipe.category).push(recipe);
}
return map;
});
// Memoized filtered recipes by category
const filteredRecipesByCategory = $derived.by(() => {
if (!hasActiveSearch) {
// No search active - return all recipes by category
return recipesByCategory;
}
// Filter each category's recipes based on search results
const filtered = new Map();
for (const [category, recipes] of recipesByCategory) {
const matchedInCategory = recipes.filter(r => matchedRecipeIds.has(r._id));
if (matchedInCategory.length > 0) {
filtered.set(category, matchedInCategory);
}
}
return filtered;
});
// Memoized season recipes
const seasonRecipes = $derived.by(() => {
const recipes = data.season;
if (!hasActiveSearch) {
return recipes;
}
return recipes.filter(recipe => matchedRecipeIds.has(recipe._id));
});
const labels = $derived({
title: isEnglish ? 'Recipes' : 'Rezepte',
subheading: isEnglish
? `${data.all_brief.length} recipes and constantly growing...`
: `${data.all_brief.length} Rezepte und stetig wachsend...`,
inSeason: isEnglish ? 'In Season' : 'In Saison',
metaTitle: isEnglish ? 'Bocken Recipes' : 'Bocken Rezepte',
metaDescription: isEnglish
? "A constantly growing collection of recipes from Bocken's kitchen."
: "Eine stetig wachsende Ansammlung an Rezepten aus der Bockenschen Küche.",
metaAlt: isEnglish ? 'Pasta al Ragu with Linguine' : 'Pasta al Ragu mit Linguine'
});
</script>
<style>
h1{
text-align: center;
margin-bottom: 0;
font-size: 4rem;
}
.subheading{
text-align: center;
margin-top: 0;
font-size: 1.5rem;
}
</style>
<svelte:head>
<title>{labels.metaTitle}</title>
<meta name="description" content="{labels.metaDescription}" />
<meta property="og:image" content="https://bocken.org/static/rezepte/thumb/ragu_aus_rindsrippen.webp" />
<meta property="og:image:secure_url" content="https://bocken.org/static/rezepte/thumb/ragu_aus_rindsrippen.webp" />
<meta property="og:image:type" content="image/webp" />
<meta property="og:image:alt" content="{labels.metaAlt}" />
</svelte:head>
<h1>{labels.title}</h1>
<p class=subheading>{labels.subheading}</p>
<Search lang={data.lang} recipes={data.all_brief} isLoggedIn={!!data.session?.user} onSearchResults={handleSearchResults}></Search>
{#if seasonRecipes.length > 0}
<LazyCategory title={labels.inSeason} eager={true}>
{#snippet children()}
<MediaScroller title={labels.inSeason}>
{#each seasonRecipes as recipe}
<Card {recipe} {current_month} loading_strat={"eager"} do_margin_right={true} isFavorite={recipe.isFavorite} showFavoriteIndicator={!!data.session?.user} routePrefix="/{data.recipeLang}"></Card>
{/each}
</MediaScroller>
{/snippet}
</LazyCategory>
{/if}
{#each categories as category, index}
{@const categoryRecipes = filteredRecipesByCategory.get(category) || []}
{#if categoryRecipes.length > 0}
<LazyCategory
title={category}
eager={index < 2 || hasActiveSearch}
estimatedHeight={300}
rootMargin="600px"
>
{#snippet children()}
<MediaScroller title={category}>
{#each categoryRecipes as recipe}
<Card {recipe} {current_month} do_margin_right={true} isFavorite={recipe.isFavorite} showFavoriteIndicator={!!data.session?.user} routePrefix="/{data.recipeLang}"></Card>
{/each}
</MediaScroller>
{/snippet}
</LazyCategory>
{/if}
{/each}
{#if !isEnglish}
<AddButton href="/rezepte/add"></AddButton>
{/if}