mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
feat(search): export skeleton prop
This commit is contained in:
parent
c4d9d26548
commit
37e2855c83
1 changed files with 48 additions and 33 deletions
|
@ -6,9 +6,10 @@
|
|||
export let id = Math.random();
|
||||
export let labelText = '';
|
||||
export let light = false;
|
||||
export let placeholder = '';
|
||||
export let size = small ? 'sm' : 'xl';
|
||||
export let placeholder = 'Search...';
|
||||
export let small = false;
|
||||
export let size = small ? 'sm' : 'xl';
|
||||
export let skeleton = false;
|
||||
export let style = undefined;
|
||||
export let type = 'text';
|
||||
export let value = '';
|
||||
|
@ -17,39 +18,53 @@
|
|||
import Close20 from 'carbon-icons-svelte/lib/Close20';
|
||||
import Search16 from 'carbon-icons-svelte/lib/Search16';
|
||||
import { cx } from '../../lib';
|
||||
import SearchSkeleton from './Search.Skeleton.svelte';
|
||||
|
||||
let inputRef = undefined;
|
||||
</script>
|
||||
|
||||
<div
|
||||
class={cx('--search', size && `--search--${size}`, light && '--search--light', className)}
|
||||
{style}>
|
||||
<Search16 class={cx('--search-magnifier')} />
|
||||
<label class={cx('--label')} for={id}>{labelText}</label>
|
||||
<!-- svelte-ignore a11y-autofocus -->
|
||||
<input
|
||||
bind:this={inputRef}
|
||||
role="searchbox"
|
||||
class={cx('--search-input')}
|
||||
on:change
|
||||
on:input
|
||||
on:input={({ target }) => {
|
||||
value = target.value;
|
||||
}}
|
||||
{autofocus}
|
||||
{type}
|
||||
{id}
|
||||
{value}
|
||||
{placeholder} />
|
||||
<button
|
||||
type="button"
|
||||
aria-label={closeButtonLabelText}
|
||||
class={cx('--search-close', value === '' && '--search-close--hidden')}
|
||||
{#if skeleton}
|
||||
<SearchSkeleton
|
||||
on:click
|
||||
on:click={() => {
|
||||
value = '';
|
||||
inputRef.focus();
|
||||
}}>
|
||||
<svelte:component this={size === 'xl' ? Close20 : Close16} />
|
||||
</button>
|
||||
</div>
|
||||
on:mouseover
|
||||
on:mouseenter
|
||||
on:mouseleave
|
||||
class={className}
|
||||
{style}
|
||||
{small} />
|
||||
{/if}
|
||||
|
||||
{#if !skeleton}
|
||||
<div
|
||||
class={cx('--search', size && `--search--${size}`, light && '--search--light', className)}
|
||||
{style}>
|
||||
<Search16 class={cx('--search-magnifier')} />
|
||||
<label class={cx('--label')} for={id}>{labelText}</label>
|
||||
<!-- svelte-ignore a11y-autofocus -->
|
||||
<input
|
||||
bind:this={inputRef}
|
||||
role="searchbox"
|
||||
class={cx('--search-input')}
|
||||
on:change
|
||||
on:input
|
||||
on:input={({ target }) => {
|
||||
value = target.value;
|
||||
}}
|
||||
{autofocus}
|
||||
{type}
|
||||
{id}
|
||||
{value}
|
||||
{placeholder} />
|
||||
<button
|
||||
type="button"
|
||||
aria-label={closeButtonLabelText}
|
||||
class={cx('--search-close', value === '' && '--search-close--hidden')}
|
||||
on:click
|
||||
on:click={() => {
|
||||
value = '';
|
||||
inputRef.focus();
|
||||
}}>
|
||||
<svelte:component this={size === 'xl' ? Close20 : Close16} />
|
||||
</button>
|
||||
</div>
|
||||
{/if}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue