mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-06-28 12:19:11 +00:00
86 lines
2.8 KiB
Svelte
86 lines
2.8 KiB
Svelte
<script lang="ts">
|
|
import { Button } from '$lib/components/ui/button';
|
|
import { ChevronRight, ChevronLeft, DoubleArrowRight, DoubleArrowLeft } from 'radix-icons-svelte';
|
|
import * as Select from '$lib/components/ui/select';
|
|
import type { Ticket } from '../(data)/schemas';
|
|
import type { AnyPlugins } from 'svelte-headless-table/plugins';
|
|
import type { TableViewModel } from 'svelte-headless-table';
|
|
import { defaultPageSize } from '.';
|
|
|
|
export let tableModel: TableViewModel<Ticket, AnyPlugins>;
|
|
|
|
const { pageRows, pluginStates, rows } = tableModel;
|
|
|
|
const { hasNextPage, hasPreviousPage, pageIndex, pageCount, pageSize } = pluginStates.page;
|
|
|
|
const { selectedDataIds } = pluginStates.select;
|
|
</script>
|
|
|
|
<div class="flex items-center justify-between px-2">
|
|
<div class="flex-1 text-sm text-muted-foreground">
|
|
{Object.keys($selectedDataIds).length} of{' '}
|
|
{$rows.length} row(s) selected.
|
|
</div>
|
|
<div class="flex items-center space-x-6 lg:space-x-8">
|
|
<div class="flex items-center space-x-2">
|
|
<p class="text-sm font-medium">Rows per page</p>
|
|
<Select.Root
|
|
onSelectedChange={(selected) => pageSize.set(Number(selected?.value))}
|
|
selected={{ value: defaultPageSize, label: defaultPageSize.toString() }}
|
|
>
|
|
<Select.Trigger class="w-[180px]">
|
|
<Select.Value placeholder="Select page size" />
|
|
</Select.Trigger>
|
|
<Select.Content>
|
|
<Select.Item value="10">10</Select.Item>
|
|
<Select.Item value="20">20</Select.Item>
|
|
<Select.Item value="30">30</Select.Item>
|
|
<Select.Item value="40">40</Select.Item>
|
|
<Select.Item value="50">50</Select.Item>
|
|
<Select.Item value="100">100</Select.Item>
|
|
</Select.Content>
|
|
</Select.Root>
|
|
</div>
|
|
<div class="flex w-[100px] items-center justify-center text-sm font-medium">
|
|
Page {$pageIndex + 1} of {$pageCount}
|
|
</div>
|
|
<div class="flex items-center space-x-2">
|
|
<Button
|
|
variant="outline"
|
|
class="hidden h-8 w-8 p-0 lg:flex"
|
|
on:click={() => ($pageIndex = 0)}
|
|
disabled={!$hasPreviousPage}
|
|
>
|
|
<span class="sr-only">Go to first page</span>
|
|
<DoubleArrowLeft size={15} />
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
class="h-8 w-8 p-0"
|
|
on:click={() => ($pageIndex = $pageIndex - 1)}
|
|
disabled={!$hasPreviousPage}
|
|
>
|
|
<span class="sr-only">Go to previous page</span>
|
|
<ChevronLeft size={15} />
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
class="h-8 w-8 p-0"
|
|
on:click={() => ($pageIndex = $pageIndex + 1)}
|
|
disabled={!$hasNextPage}
|
|
>
|
|
<span class="sr-only">Go to next page</span>
|
|
<ChevronRight size={15} />
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
class="hidden h-8 w-8 p-0 lg:flex"
|
|
on:click={() => ($pageIndex = Math.ceil($rows.length / $pageRows.length) - 1)}
|
|
disabled={!$hasNextPage}
|
|
>
|
|
<span class="sr-only">Go to last page</span>
|
|
<DoubleArrowRight size={15} />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|