garage-erp/apps/dashboard/shared/data-view/table-view/data-view-pagination.tsx
2026-03-27 16:20:46 +03:00

92 lines
3.3 KiB
TypeScript

"use client"
import type { Table } from "@tanstack/react-table"
import {
ChevronLeft,
ChevronRight,
ChevronsLeft,
ChevronsRight,
} from "lucide-react"
import { Button } from "@/shared/components/ui/button"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/shared/components/ui/select"
import { useDataView } from "./data-view-context"
const PAGE_SIZE_OPTIONS = [10, 20, 30, 50, 100]
interface DataViewPaginationProps<TData> {
table: Table<TData>
}
export function DataViewPagination<TData>({ table }: DataViewPaginationProps<TData>) {
const { pagination } = useDataView()
return (
<div data-slot="data-view-pagination" className="flex items-center justify-between px-2">
<div className="text-sm text-muted-foreground">
Page {pagination.page} of {pagination.pageCount}
{" "}({pagination.total} total)
</div>
<div className="flex items-center gap-6 lg:gap-8">
<div className="flex items-center gap-2">
<p className="text-sm font-medium">Rows per page</p>
<Select
value={String(pagination.pageSize)}
onValueChange={(value) => table.setPageSize(Number(value))}
>
<SelectTrigger size="sm" className="w-17.5">
<SelectValue placeholder={String(pagination.pageSize)} />
</SelectTrigger>
<SelectContent side="top">
{PAGE_SIZE_OPTIONS.map((size) => (
<SelectItem key={size} value={String(size)}>
{size}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div className="flex items-center gap-1">
<Button
variant="outline"
size="icon-sm"
onClick={() => table.firstPage()}
disabled={!table.getCanPreviousPage()}
>
<ChevronsLeft className="size-4" />
</Button>
<Button
variant="outline"
size="icon-sm"
onClick={() => table.previousPage()}
disabled={!table.getCanPreviousPage()}
>
<ChevronLeft className="size-4" />
</Button>
<Button
variant="outline"
size="icon-sm"
onClick={() => table.nextPage()}
disabled={!table.getCanNextPage()}
>
<ChevronRight className="size-4" />
</Button>
<Button
variant="outline"
size="icon-sm"
onClick={() => table.lastPage()}
disabled={!table.getCanNextPage()}
>
<ChevronsRight className="size-4" />
</Button>
</div>
</div>
</div>
)
}