feat: add table pagination

This commit is contained in:
Mahen 2026-02-16 08:21:08 +07:00
parent f5c01c27ba
commit 0fe22e8283
4 changed files with 235 additions and 7 deletions

View File

@ -18,9 +18,18 @@ import {
DropdownMenuTrigger,
} from "../ui/dropdown-menu";
import { useReviewTable } from "@/src/hooks/useReviewTable";
import {
Pagination,
PaginationContent,
PaginationItem,
PaginationLink,
PaginationNext,
PaginationPrevious,
} from "../ui/pagination";
export function ReviewTable() {
const { data, isLoading } = useReviewTable();
const { currentData, isLoading, pagination } = useReviewTable(10);
const { currentPage, totalPages, nextPage, prevPage, goToPage } = pagination;
if (isLoading) {
return (
@ -47,7 +56,7 @@ export function ReviewTable() {
</TableRow>
</TableHeader>
<TableBody>
{data.length === 0 ? (
{currentData.length === 0 ? (
<TableRow>
<TableCell colSpan={5} className="h-75 text-center">
<div className="flex flex-col items-center justify-center gap-2 text-muted-foreground">
@ -64,7 +73,7 @@ export function ReviewTable() {
</TableCell>
</TableRow>
) : (
data.map((review, index) => (
currentData.map((review, index) => (
<TableRow
key={review.id || index}
className="group animate-in fade-in transition-colors hover:bg-muted/40"
@ -156,6 +165,59 @@ export function ReviewTable() {
)}
</TableBody>
</Table>
{totalPages > 1 && (
<div className="border-t bg-muted/20 px-6 py-4">
<Pagination className="justify-center sm:justify-end">
<PaginationContent>
<PaginationItem>
<PaginationPrevious
href="#"
onClick={(e) => {
e.preventDefault();
prevPage();
}}
className={
currentPage === 1
? "pointer-events-none opacity-50"
: "cursor-pointer"
}
/>
</PaginationItem>
{[...Array(totalPages)].map((_, i) => (
<PaginationItem key={i + 1}>
<PaginationLink
href="#"
onClick={(e) => {
e.preventDefault();
goToPage(i + 1);
}}
isActive={currentPage === i + 1}
>
{i + 1}
</PaginationLink>
</PaginationItem>
))}
<PaginationItem>
<PaginationNext
href="#"
onClick={(e) => {
e.preventDefault();
nextPage();
}}
className={
currentPage === totalPages
? "pointer-events-none opacity-50"
: "cursor-pointer"
}
/>
</PaginationItem>
</PaginationContent>
</Pagination>
</div>
)}
</div>
);
}

View File

@ -13,7 +13,7 @@ const buttonVariants = cva(
destructive:
"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
outline:
"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
"border bg-primary text-white",
secondary:
"bg-secondary text-secondary-foreground hover:bg-secondary/80",
ghost:

View File

@ -0,0 +1,127 @@
import * as React from "react";
import {
ChevronLeftIcon,
ChevronRightIcon,
MoreHorizontalIcon,
} from "lucide-react";
import { cn } from "@/lib/utils";
import { Button, buttonVariants } from "./button";
function Pagination({ className, ...props }: React.ComponentProps<"nav">) {
return (
<nav
role="navigation"
aria-label="pagination"
data-slot="pagination"
className={cn("mx-auto flex w-full justify-center", className)}
{...props}
/>
);
}
function PaginationContent({
className,
...props
}: React.ComponentProps<"ul">) {
return (
<ul
data-slot="pagination-content"
className={cn("flex flex-row items-center gap-1", className)}
{...props}
/>
);
}
function PaginationItem({ ...props }: React.ComponentProps<"li">) {
return <li data-slot="pagination-item" {...props} />;
}
type PaginationLinkProps = {
isActive?: boolean;
} & Pick<React.ComponentProps<typeof Button>, "size"> &
React.ComponentProps<"a">;
function PaginationLink({
className,
isActive,
size = "icon",
...props
}: PaginationLinkProps) {
return (
<a
aria-current={isActive ? "page" : undefined}
data-slot="pagination-link"
data-active={isActive}
className={cn(
buttonVariants({
variant: isActive ? "outline" : "ghost",
size,
}),
className,
)}
{...props}
/>
);
}
function PaginationPrevious({
className,
...props
}: React.ComponentProps<typeof PaginationLink>) {
return (
<PaginationLink
aria-label="Go to previous page"
size="default"
className={cn("gap-1 px-2.5 sm:pl-2.5", className)}
{...props}
>
<ChevronLeftIcon />
<span className="hidden sm:block">Previous</span>
</PaginationLink>
);
}
function PaginationNext({
className,
...props
}: React.ComponentProps<typeof PaginationLink>) {
return (
<PaginationLink
aria-label="Go to next page"
size="default"
className={cn("gap-1 px-2.5 sm:pr-2.5", className)}
{...props}
>
<span className="hidden sm:block">Next</span>
<ChevronRightIcon />
</PaginationLink>
);
}
function PaginationEllipsis({
className,
...props
}: React.ComponentProps<"span">) {
return (
<span
aria-hidden
data-slot="pagination-ellipsis"
className={cn("flex size-9 items-center justify-center", className)}
{...props}
>
<MoreHorizontalIcon className="size-4" />
<span className="sr-only">More pages</span>
</span>
);
}
export {
Pagination,
PaginationContent,
PaginationLink,
PaginationItem,
PaginationPrevious,
PaginationNext,
PaginationEllipsis,
};

View File

@ -1,13 +1,15 @@
import { useEffect, useState } from "react";
import { useEffect, useState, useMemo } from "react";
import { ApiResponse, ReviewItem } from "../types";
export const useReviewTable = () => {
export const useReviewTable = (itemsPerPage: number = 10) => {
const [data, setData] = useState<ReviewItem[]>([]);
const [isLoading, setIsLoading] = useState(true);
const [currentPage, setCurrentPage] = useState(1);
useEffect(() => {
const getReviewData = async () => {
try {
setIsLoading(true);
const req = await fetch("/api/review");
const res: ApiResponse = await req.json();
@ -25,5 +27,42 @@ export const useReviewTable = () => {
getReviewData();
}, []);
return { data, isLoading };
const { currentData, totalPages } = useMemo(() => {
const total = Math.ceil(data.length / itemsPerPage);
const start = (currentPage - 1) * itemsPerPage;
const end = start + itemsPerPage;
const slicedData = data.slice(start, end);
return {
currentData: slicedData,
totalPages: total,
};
}, [data, currentPage, itemsPerPage]);
const nextPage = () => {
if (currentPage < totalPages) setCurrentPage((prev) => prev + 1);
};
const prevPage = () => {
if (currentPage > 1) setCurrentPage((prev) => prev - 1);
};
const goToPage = (pageNumber: number) => {
if (pageNumber >= 1 && pageNumber <= totalPages) {
setCurrentPage(pageNumber);
}
};
return {
data,
currentData,
isLoading,
pagination: {
currentPage,
totalPages,
nextPage,
prevPage,
goToPage,
},
};
};