INIT
This commit is contained in:
Generated
Vendored
+40
@@ -0,0 +1,40 @@
|
||||
<script lang="ts">
|
||||
import { boxWith, mergeProps } from "svelte-toolbelt";
|
||||
import type { SelectScrollDownButtonProps } from "../types.js";
|
||||
import { SelectScrollDownButtonState } from "../select.svelte.js";
|
||||
import { createId } from "../../../internal/create-id.js";
|
||||
import { Mounted } from "../../utilities/index.js";
|
||||
|
||||
const uid = $props.id();
|
||||
|
||||
let {
|
||||
id = createId(uid),
|
||||
ref = $bindable(null),
|
||||
delay = () => 50,
|
||||
child,
|
||||
children,
|
||||
...restProps
|
||||
}: SelectScrollDownButtonProps = $props();
|
||||
|
||||
const scrollButtonState = SelectScrollDownButtonState.create({
|
||||
id: boxWith(() => id),
|
||||
ref: boxWith(
|
||||
() => ref,
|
||||
(v) => (ref = v)
|
||||
),
|
||||
delay: boxWith(() => delay),
|
||||
});
|
||||
|
||||
const mergedProps = $derived(mergeProps(restProps, scrollButtonState.props));
|
||||
</script>
|
||||
|
||||
{#if scrollButtonState.canScrollDown}
|
||||
<Mounted bind:mounted={scrollButtonState.scrollButtonState.mounted} />
|
||||
{#if child}
|
||||
{@render child({ props: restProps })}
|
||||
{:else}
|
||||
<div {...mergedProps}>
|
||||
{@render children?.()}
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
Reference in New Issue
Block a user