INIT
This commit is contained in:
+38
@@ -0,0 +1,38 @@
|
||||
<script lang="ts">
|
||||
import { boxWith, mergeProps } from "svelte-toolbelt";
|
||||
import type { CommandEmptyProps } from "../types.js";
|
||||
import { CommandEmptyState } from "../command.svelte.js";
|
||||
import { createId } from "../../../internal/create-id.js";
|
||||
|
||||
const uid = $props.id();
|
||||
|
||||
let {
|
||||
id = createId(uid),
|
||||
ref = $bindable(null),
|
||||
children,
|
||||
child,
|
||||
forceMount = false,
|
||||
...restProps
|
||||
}: CommandEmptyProps = $props();
|
||||
|
||||
const emptyState = CommandEmptyState.create({
|
||||
id: boxWith(() => id),
|
||||
ref: boxWith(
|
||||
() => ref,
|
||||
(v) => (ref = v)
|
||||
),
|
||||
forceMount: boxWith(() => forceMount),
|
||||
});
|
||||
|
||||
const mergedProps = $derived(mergeProps(emptyState.props, restProps));
|
||||
</script>
|
||||
|
||||
{#if emptyState.shouldRender}
|
||||
{#if child}
|
||||
{@render child({ props: mergedProps })}
|
||||
{:else}
|
||||
<div {...mergedProps}>
|
||||
{@render children?.()}
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
Reference in New Issue
Block a user