This commit is contained in:
+40
@@ -0,0 +1,40 @@
|
||||
<script lang="ts">
|
||||
import { boxWith, mergeProps } from "svelte-toolbelt";
|
||||
import type { CommandInputProps } from "../types.js";
|
||||
import { CommandInputState } from "../command.svelte.js";
|
||||
import { createId } from "../../../internal/create-id.js";
|
||||
|
||||
const uid = $props.id();
|
||||
|
||||
let {
|
||||
value = $bindable(""),
|
||||
autofocus = false,
|
||||
id = createId(uid),
|
||||
ref = $bindable(null),
|
||||
child,
|
||||
...restProps
|
||||
}: CommandInputProps = $props();
|
||||
|
||||
const inputState = CommandInputState.create({
|
||||
id: boxWith(() => id),
|
||||
ref: boxWith(
|
||||
() => ref,
|
||||
(v) => (ref = v)
|
||||
),
|
||||
value: boxWith(
|
||||
() => value,
|
||||
(v) => {
|
||||
value = v;
|
||||
}
|
||||
),
|
||||
autofocus: boxWith(() => autofocus ?? false),
|
||||
});
|
||||
|
||||
const mergedProps = $derived(mergeProps(restProps, inputState.props));
|
||||
</script>
|
||||
|
||||
{#if child}
|
||||
{@render child({ props: mergedProps })}
|
||||
{:else}
|
||||
<input {...mergedProps} bind:value />
|
||||
{/if}
|
||||
Reference in New Issue
Block a user