mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
72 lines
1.8 KiB
Svelte
72 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;
|
|
|
|
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}
|
|
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>
|