feat(nav): search lives in the header on all non-home pages
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 53s
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 53s
- "← Lokale Suche"-Breadcrumb auf der Web-Suchseite entfernt (überflüssig,
da die lokale Suche automatisch zur Web-Suche weiterleitet, wenn leer).
- Header-Bar enthält jetzt ein Pill-Suchfeld, das von jeder Unterseite
aus direkt auf /search?q=... navigiert — kein Zurück mehr nötig,
wenn man aus einem offenen Rezept weiter sucht.
- Auf der Startseite bleibt die große Hero-Suche; das Header-Feld ist
dort ausgeblendet, damit es keine doppelte Eingabestelle gibt.
- Auf /search und /search/web spiegelt das Header-Feld die aktuelle
Query wider, sodass man den Begriff verfeinern kann.
- Mobile < 520px: Brand schrumpft zu einem 🍳-Badge, damit Platz für
das Suchfeld + Icons bleibt.
This commit is contained in:
@@ -1,11 +1,31 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
|
import { page } from '$app/stores';
|
||||||
|
import { goto } from '$app/navigation';
|
||||||
import { profileStore } from '$lib/client/profile.svelte';
|
import { profileStore } from '$lib/client/profile.svelte';
|
||||||
import ProfileSwitcher from '$lib/components/ProfileSwitcher.svelte';
|
import ProfileSwitcher from '$lib/components/ProfileSwitcher.svelte';
|
||||||
import ConfirmDialog from '$lib/components/ConfirmDialog.svelte';
|
import ConfirmDialog from '$lib/components/ConfirmDialog.svelte';
|
||||||
|
|
||||||
let { children } = $props();
|
let { children } = $props();
|
||||||
|
|
||||||
|
let navQuery = $state('');
|
||||||
|
|
||||||
|
$effect(() => {
|
||||||
|
const path = $page.url.pathname;
|
||||||
|
if (path === '/search' || path === '/search/web') {
|
||||||
|
navQuery = ($page.url.searchParams.get('q') ?? '').trim();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const showHeaderSearch = $derived($page.url.pathname !== '/');
|
||||||
|
|
||||||
|
function submitNavSearch(e: SubmitEvent) {
|
||||||
|
e.preventDefault();
|
||||||
|
const q = navQuery.trim();
|
||||||
|
if (!q) return;
|
||||||
|
void goto(`/search?q=${encodeURIComponent(q)}`);
|
||||||
|
}
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
profileStore.load();
|
profileStore.load();
|
||||||
});
|
});
|
||||||
@@ -15,6 +35,18 @@
|
|||||||
|
|
||||||
<header class="bar">
|
<header class="bar">
|
||||||
<a href="/" class="brand">Kochwas</a>
|
<a href="/" class="brand">Kochwas</a>
|
||||||
|
{#if showHeaderSearch}
|
||||||
|
<form class="nav-search" onsubmit={submitNavSearch} role="search">
|
||||||
|
<input
|
||||||
|
type="search"
|
||||||
|
bind:value={navQuery}
|
||||||
|
placeholder="Rezept suchen…"
|
||||||
|
autocomplete="off"
|
||||||
|
inputmode="search"
|
||||||
|
aria-label="Suchbegriff"
|
||||||
|
/>
|
||||||
|
</form>
|
||||||
|
{/if}
|
||||||
<div class="bar-right">
|
<div class="bar-right">
|
||||||
<a href="/wishlist" class="nav-link" aria-label="Wunschliste">🍽️</a>
|
<a href="/wishlist" class="nav-link" aria-label="Wunschliste">🍽️</a>
|
||||||
<a href="/admin" class="nav-link" aria-label="Einstellungen">⚙️</a>
|
<a href="/admin" class="nav-link" aria-label="Einstellungen">⚙️</a>
|
||||||
@@ -46,9 +78,9 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0.75rem 1rem;
|
gap: 0.6rem;
|
||||||
|
padding: 0.6rem 1rem;
|
||||||
background: white;
|
background: white;
|
||||||
border-bottom: 1px solid #e4eae7;
|
border-bottom: 1px solid #e4eae7;
|
||||||
}
|
}
|
||||||
@@ -57,11 +89,55 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #2b6a3d;
|
color: #2b6a3d;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
.nav-search {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.nav-search input {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0.55rem 0.85rem;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
border: 1px solid #cfd9d1;
|
||||||
|
border-radius: 999px;
|
||||||
|
background: #f4f8f5;
|
||||||
|
min-height: 40px;
|
||||||
|
}
|
||||||
|
.nav-search input:focus {
|
||||||
|
outline: 2px solid #2b6a3d;
|
||||||
|
outline-offset: 1px;
|
||||||
|
background: white;
|
||||||
}
|
}
|
||||||
.bar-right {
|
.bar-right {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5rem;
|
gap: 0.4rem;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
@media (max-width: 520px) {
|
||||||
|
.brand {
|
||||||
|
font-size: 0;
|
||||||
|
width: 1.6rem;
|
||||||
|
height: 1.6rem;
|
||||||
|
background: #2b6a3d;
|
||||||
|
border-radius: 8px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.brand::after {
|
||||||
|
content: '🍳';
|
||||||
|
font-size: 1rem;
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
}
|
||||||
|
.nav-link {
|
||||||
|
width: 36px;
|
||||||
|
height: 36px;
|
||||||
|
font-size: 1.05rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.nav-link {
|
.nav-link {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
|
|||||||
@@ -42,10 +42,6 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<nav class="crumbs">
|
|
||||||
<a href={`/search?q=${encodeURIComponent(query)}`}>← Lokale Suche</a>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<form class="search-bar" onsubmit={submit}>
|
<form class="search-bar" onsubmit={submit}>
|
||||||
<input
|
<input
|
||||||
type="search"
|
type="search"
|
||||||
@@ -100,14 +96,6 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.crumbs {
|
|
||||||
padding: 0.75rem 0;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
.crumbs a {
|
|
||||||
color: #666;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
.search-bar {
|
.search-bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user