feat(web): search filter form (#6651)

* refactor: search history box

* filter box component

* start adding forms

* styling

* combo box

* styling

* media types

* album option

* update

* Updated

* refactor: search history box

* filter box component

* start adding forms

* styling

* combo box

* styling

* media types

* album option

* update

* Updated

* Version v1.94.0

* Add people

* add select even for combobox

* Remove unused data

* remove unused code

* remove unused code
This commit is contained in:
Alex
2024-02-02 13:30:40 -06:00
committed by GitHub
parent d3404f927c
commit 2d278d9ab8
6 changed files with 323 additions and 75 deletions

View File

@@ -0,0 +1,62 @@
<script lang="ts">
import Icon from '$lib/components/elements/icon.svelte';
import { savedSearchTerms } from '$lib/stores/search.store';
import { mdiMagnify, mdiClose } from '@mdi/js';
import { createEventDispatcher } from 'svelte';
import { fly } from 'svelte/transition';
const dispatch = createEventDispatcher<{
selectSearchTerm: string;
clearSearchTerm: string;
clearAllSearchTerms: void;
}>();
</script>
<div
transition:fly={{ y: 25, duration: 250 }}
class="absolute w-full rounded-b-3xl border border-gray-200 bg-white pb-5 shadow-2xl transition-all dark:border-gray-800 dark:bg-immich-dark-gray dark:text-gray-300"
>
<div class="flex px-5 pt-5 text-left text-sm">
<p>
Smart search is enabled by default, to search for metadata use the syntax <span
class="rounded-lg bg-gray-100 p-2 font-mono font-semibold leading-7 text-immich-primary dark:bg-gray-900 dark:text-immich-dark-primary"
>m:your-search-term</span
>
</p>
</div>
{#if $savedSearchTerms.length > 0}
<div class="flex items-center justify-between px-5 pt-5 text-xs">
<p>RECENT SEARCHES</p>
<div class="flex w-18 items-center justify-center">
<button
type="button"
class="rounded-lg p-2 font-semibold text-immich-primary hover:bg-immich-primary/25 dark:text-immich-dark-primary"
on:click={() => dispatch('clearAllSearchTerms')}>Clear all</button
>
</div>
</div>
{/if}
{#each $savedSearchTerms as savedSearchTerm, i (i)}
<div
class="flex w-full items-center justify-between text-sm text-black hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-gray-500/10"
>
<div class="relative w-full items-center">
<button
type="button"
class="relative flex w-full cursor-pointer gap-3 py-3 pl-5"
on:click={() => dispatch('selectSearchTerm', savedSearchTerm)}
>
<Icon path={mdiMagnify} size="1.5em" />
{savedSearchTerm}
</button>
<div class="absolute right-5 top-0 items-center justify-center py-3">
<button type="button" on:click={() => dispatch('clearSearchTerm', savedSearchTerm)}
><Icon path={mdiClose} size="18" /></button
>
</div>
</div>
</div>
{/each}
</div>