diff --git a/app/Livewire/Web/Recipes/RecipeIndex.php b/app/Livewire/Web/Recipes/RecipeIndex.php index f4c1f1f..d8226ae 100644 --- a/app/Livewire/Web/Recipes/RecipeIndex.php +++ b/app/Livewire/Web/Recipes/RecipeIndex.php @@ -47,6 +47,15 @@ class RecipeIndex extends AbstractComponent public bool $filterOnlyPublished = false; + /** @deprecated Legacy property - no longer used */ + public bool $filterHideVariants = false; + + /** @deprecated Legacy property - no longer used */ + public bool $filterShowVariants = false; + + /** @deprecated Legacy property - no longer used */ + public bool $filterShowCanonical = false; + /** @var array */ public array $excludedAllergenIds = []; @@ -83,6 +92,21 @@ class RecipeIndex extends AbstractComponent /** @var array{0: int, 1: int}|null */ public ?array $totalTimeRange = null; + /** + * Boot the component and clean up legacy properties. + */ + public function boot(): void + { + // Remove legacy filter properties that no longer exist + $legacyKeys = ['filterHideVariants', 'filterShowVariants', 'filterShowCanonical']; + + foreach ($legacyKeys as $key) { + if (request()->has($key)) { + request()->request->remove($key); + } + } + } + /** * Initialize the component. */ diff --git a/resources/views/web/components/recipes/recipe-card.blade.php b/resources/views/web/components/recipes/recipe-card.blade.php index 44f288b..93ba613 100644 --- a/resources/views/web/components/recipes/recipe-card.blade.php +++ b/resources/views/web/components/recipes/recipe-card.blade.php @@ -88,33 +88,35 @@ class="absolute bottom-2 left-2 rounded px-2 py-1 text-xs font-semibold" @if ($recipe->tags->where('display_label', true)->isNotEmpty())
@foreach ($recipe->tags->where('display_label', true) as $tag) - @php $isActive = in_array($tag->id, $tagIds ?? []); @endphp - {{-- Clickable disabled: zinc --}} - {{ $tag->name }} - {{-- Clickable enabled: lime if active, zinc with plus icon if not --}} - - - !$isActive]) /> - $isActive]) /> - {{ $tag->name }} - +
+ @php $isActive = in_array($tag->id, $tagIds ?? []); @endphp + {{-- Clickable disabled: zinc --}} + {{ $tag->name }} + {{-- Clickable enabled: lime if active, zinc with plus icon if not --}} + + + !$isActive]) /> + $isActive]) /> + {{ $tag->name }} + +
@endforeach
@endif @@ -173,33 +175,35 @@ class="shrink-0 rounded px-1.5 py-0.5 text-xs font-semibold" @if ($recipe->tags->where('display_label', true)->isNotEmpty())
@foreach ($recipe->tags->where('display_label', true) as $tag) - @php $isActive = in_array($tag->id, $tagIds ?? []); @endphp - {{-- Clickable disabled: zinc --}} - {{ $tag->name }} - {{-- Clickable enabled: lime if active, zinc with plus icon if not --}} - - - !$isActive]) /> - $isActive]) /> - {{ $tag->name }} - +
+ @php $isActive = in_array($tag->id, $tagIds ?? []); @endphp + {{-- Clickable disabled: zinc --}} + {{ $tag->name }} + {{-- Clickable enabled: lime if active, zinc with plus icon if not --}} + + + !$isActive]) /> + $isActive]) /> + {{ $tag->name }} + +
@endforeach
@endif