feat: Styling pagination

This commit is contained in:
Hafid Nur
2025-03-27 16:41:42 +07:00
parent a76bd89ec1
commit ec509a7b43
+28 -26
View File
@@ -1,5 +1,5 @@
import { FC, ReactElement } from 'react'; import { FC, ReactElement } from 'react';
import { LeftOutlined, RightOutlined } from '@ant-design/icons'; import { ArrowLeftOutlined, ArrowRightOutlined } from '@ant-design/icons';
export interface PaginationProps { export interface PaginationProps {
currentPage: number; currentPage: number;
@@ -15,7 +15,7 @@ export const Pagination: FC<PaginationProps> = ({
// Generate page numbers to display // Generate page numbers to display
const getPageNumbers = () => { const getPageNumbers = () => {
const pages = []; const pages = [];
const maxPagesToShow = 5; // const maxPagesToShow = 5;
// Always show first page // Always show first page
if (currentPage > 3) { if (currentPage > 3) {
@@ -45,45 +45,47 @@ export const Pagination: FC<PaginationProps> = ({
}; };
return ( return (
<div className="flex items-center justify-center mt-4 gap-2"> <div className="flex items-center justify-center mt-4 gap-[40px]">
<button <button
onClick={() => currentPage > 1 && onPageChange(currentPage - 1)} onClick={() => currentPage > 1 && onPageChange(currentPage - 1)}
disabled={currentPage === 1} disabled={currentPage === 1}
className="p-2 rounded-md border border-gray-200 disabled:opacity-50" className="disabled:opacity-50 cursor-pointer"
aria-label="Previous page" aria-label="Previous page"
> >
<LeftOutlined /> <ArrowLeftOutlined className="text-[16px] text-neutral-800" />
</button> </button>
{getPageNumbers().map((page, index) => <div className="flex gap-4 items-baseline">
typeof page === 'number' ? ( {getPageNumbers().map((page, index) =>
<button typeof page === 'number' ? (
key={index} <button
onClick={() => onPageChange(page)} key={index}
className={`w-8 h-8 flex items-center justify-center rounded-md ${ onClick={() => onPageChange(page)}
currentPage === page className={`size-[30px] py-[8px] flex items-center justify-center rounded-md cursor-pointer ${
? 'bg-primary-500 text-white' currentPage === page
: 'border border-gray-200 hover:bg-gray-50' ? 'bg-primary-500 text-white'
}`} : 'border border-gray-200 hover:bg-gray-50'
> }`}
{page} >
</button> {page}
) : ( </button>
<span key={index} className="px-1"> ) : (
{page} <span key={index} className="px-1">
</span> {page}
) </span>
)} )
)}
</div>
<button <button
onClick={() => onClick={() =>
currentPage < totalPages && onPageChange(currentPage + 1) currentPage < totalPages && onPageChange(currentPage + 1)
} }
disabled={currentPage === totalPages} disabled={currentPage === totalPages}
className="p-2 rounded-md border border-gray-200 disabled:opacity-50" className="disabled:opacity-50 cursor-pointer"
aria-label="Next page" aria-label="Next page"
> >
<RightOutlined /> <ArrowRightOutlined className="text-[16px] text-neutral-800" />
</button> </button>
</div> </div>
); );