J.A.R.V.I.S-rust/frontend/src/components/elements/SearchBar.svelte

22 lines
574 B
Svelte
Raw Normal View History

2026-01-04 22:50:34 +05:00
<script lang="ts">
import { translations, translate } from "@/stores"
$: t = (key: string) => translate($translations, key)
2026-01-04 22:50:34 +05:00
let searchQuery = ""
</script>
2026-01-04 22:50:34 +05:00
<div id="search-form" class="search" class:active={searchQuery !== ""}>
<form action="#" method="GET">
2026-01-04 22:50:34 +05:00
<input
bind:value={searchQuery}
type="text"
name="q"
placeholder={t('search-placeholder')}
2026-01-04 22:50:34 +05:00
autocomplete="off"
minlength="3"
maxlength="30"
/>
<small>Enter</small>
</form>
</div>