Files
console/src/lib/elements/forms/inputSearch.svelte
T

74 lines
1.8 KiB
Svelte

<script lang="ts">
import { createEventDispatcher, onMount } from 'svelte';
import { onDestroy } from 'svelte';
export let value = '';
export let placeholder = '';
export let debounce = 250;
export let required = false;
export let disabled = false;
export let autofocus = false;
export let isWithEndButton = true;
export let style: string = '';
const dispatch = createEventDispatcher();
let element: HTMLInputElement;
let timer: ReturnType<typeof setTimeout>;
onMount(() => {
if (element && autofocus) {
element.focus();
}
});
onDestroy(() => {
value = '';
if (timer) {
clearTimeout(timer);
}
});
function valueChange(event: Event) {
clearTimeout(timer);
timer = setTimeout(() => {
const target = event.target as HTMLInputElement;
value = target.value;
dispatch('change', value);
}, debounce);
}
function clearSearch() {
value = '';
dispatch('clear');
}
$: if (!value) {
if (element) {
element.value = value;
}
}
</script>
<div class="input-text-wrapper" class:is-with-end-button={isWithEndButton}>
<input
{placeholder}
{disabled}
{required}
{style}
type="search"
class="input-text"
bind:this={element}
on:input={valueChange} />
<span class="icon-search" aria-hidden="true" />
{#if isWithEndButton && value}
<button
class="button is-text is-only-icon"
style="--button-size:1.5rem;"
aria-label="Clear search"
type="button"
on:click={clearSearch}>
<span class="icon-x" aria-hidden="true" />
</button>
{/if}
</div>