Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

44 lines
941 B
Svelte

<script lang="ts">
import { boxWith, mergeProps } from "svelte-toolbelt";
import type { PaginationPageProps } from "../types.js";
import { PaginationPageState } from "../pagination.svelte.js";
import { createId } from "../../../internal/create-id.js";
const uid = $props.id();
let {
id = createId(uid),
page,
child,
children,
type = "button",
ref = $bindable(null),
disabled = false,
...restProps
}: PaginationPageProps = $props();
const pageState = PaginationPageState.create({
id: boxWith(() => id),
page: boxWith(() => page),
ref: boxWith(
() => ref,
(v) => (ref = v)
),
disabled: boxWith(() => Boolean(disabled)),
});
const mergedProps = $derived(mergeProps(restProps, pageState.props, { type }));
</script>
{#if child}
{@render child({ props: mergedProps })}
{:else}
<button {...mergedProps}>
{#if children}
{@render children?.()}
{:else}
{page.value}
{/if}
</button>
{/if}