A simple React hook for creating pagination systems
This package makes no assumptions about your styling or ui, it works in React native as well.
Installation
npm i pagination-hook
Usage
function Component() {
const items = [1, 2, 3, 4, 5];
const [currentPage, setCurrentPage] = useState(0);
const { startIndex, endIndex, hasPreviousPage, hasNextPage } = usePagination({
pageSize: 3,
currentPage,
itemCount: items.length,
});
return (
<>
<button
disabled={!hasPreviousPage}
onClick={() => setCurrentPage((p) => p - 1)}
>
prev
</button>
<div>Current Page: {currentPage + 1}</div>
<button
disabled={!hasNextPage}
onClick={() => setCurrentPage((p) => p + 1)}
>
next
</button>
{items.slice(startIndex, endIndex).map((v) => (
<div key={v}>item: {v}</div>
))}
</>
);
}