55 lines
1.2 KiB
Svelte
55 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import { boxWith, mergeProps } from "svelte-toolbelt";
|
|
import type { PaginationRootProps } from "../types.js";
|
|
import { PaginationRootState } from "../pagination.svelte.js";
|
|
import { noop } from "../../../internal/noop.js";
|
|
import { createId } from "../../../internal/create-id.js";
|
|
|
|
const uid = $props.id();
|
|
|
|
let {
|
|
id = createId(uid),
|
|
count,
|
|
perPage = 1,
|
|
page = $bindable(1),
|
|
ref = $bindable(null),
|
|
siblingCount = 1,
|
|
onPageChange = noop,
|
|
loop = false,
|
|
orientation = "horizontal",
|
|
child,
|
|
children,
|
|
...restProps
|
|
}: PaginationRootProps = $props();
|
|
|
|
const rootState = PaginationRootState.create({
|
|
id: boxWith(() => id),
|
|
count: boxWith(() => count),
|
|
perPage: boxWith(() => perPage),
|
|
page: boxWith(
|
|
() => page,
|
|
(v) => {
|
|
page = v;
|
|
onPageChange?.(v);
|
|
}
|
|
),
|
|
loop: boxWith(() => loop),
|
|
siblingCount: boxWith(() => siblingCount),
|
|
orientation: boxWith(() => orientation),
|
|
ref: boxWith(
|
|
() => ref,
|
|
(v) => (ref = v)
|
|
),
|
|
});
|
|
|
|
const mergedProps = $derived(mergeProps(restProps, rootState.props));
|
|
</script>
|
|
|
|
{#if child}
|
|
{@render child({ props: mergedProps, ...rootState.snippetProps })}
|
|
{:else}
|
|
<div {...mergedProps}>
|
|
{@render children?.(rootState.snippetProps)}
|
|
</div>
|
|
{/if}
|