42 lines
No EOL
1.5 KiB
Vue
42 lines
No EOL
1.5 KiB
Vue
<script setup lang="ts">
|
|
import { updateSearch } from '@/stores';
|
|
import { onUpdated, ref } from 'vue';
|
|
|
|
let searchValue = ref('');
|
|
let searchType = ref('');
|
|
|
|
function submit(type: string) { searchType = ref(type) };
|
|
onUpdated(() => updateSearch(searchValue, searchType));
|
|
</script>
|
|
|
|
<template>
|
|
<form class="sticky top-2 flex flex-row place-content-center">
|
|
<label class="hidden" for="searchBar">Suche</label>
|
|
<div class="flex flex-row w-full max-w-5xl gap-2">
|
|
<input
|
|
id="searchBar"
|
|
class="p-2 grow placeholder:text-text-300 dark:placeholder:text-text-700 text-xl text-center focus-visible:outline focus-visible:outline-current rounded-xl bg-background-100 dark:bg-background-900"
|
|
type="search"
|
|
placeholder="Suchen, z. B. Thema, Name, VII-EF-08640, …"
|
|
v-model="searchValue"
|
|
@keyup.alt.enter.exact="submit('assist')"
|
|
@keyup.enter.exact="submit('filter')"
|
|
/>
|
|
<div class="flex flex-row place-content-center">
|
|
<button
|
|
class="py-2 px-4 bg-primary-button-500 hover:bg-primary-button-600 rounded-l-lg text-text-800"
|
|
@click.prevent="submit('filter')"
|
|
aria-keyshortcuts="Enter"
|
|
>Suchen
|
|
</button>
|
|
<button
|
|
class="py-2 px-4 bg-secondary-button-500 hover:bg-secondary-button-600 rounded-r-lg text-white"
|
|
@click.prevent="submit('assist')"
|
|
aria-keyshortcuts="Alt+Enter"
|
|
title="Tastenkürzel: Alt + Enter"
|
|
>Fragen
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</template> |