Created
October 19, 2021 18:05
-
-
Save Lahirutech/a095d9818283b984fb38c60db24b222e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import classnames from 'classnames'; | |
import { usePagination, DOTS } from './usePagination'; | |
import './pagination.scss'; | |
const Pagination = props => { | |
const { | |
onPageChange, | |
totalCount, | |
siblingCount = 1, | |
currentPage, | |
pageSize, | |
className | |
} = props; | |
const paginationRange = usePagination({ | |
currentPage, | |
totalCount, | |
siblingCount, | |
pageSize | |
}); | |
// If there are less than 2 times in pagination range we shall not render the component | |
if (currentPage === 0 || paginationRange.length < 2) { | |
return null; | |
} | |
const onNext = () => { | |
onPageChange(currentPage + 1); | |
}; | |
const onPrevious = () => { | |
onPageChange(currentPage - 1); | |
}; | |
let lastPage = paginationRange[paginationRange.length - 1]; | |
return ( | |
<ul | |
className={classnames('pagination-container', { [className]: className })} | |
> | |
{/* Left navigation arrow */} | |
<li | |
className={classnames('pagination-item', { | |
disabled: currentPage === 1 | |
})} | |
onClick={onPrevious} | |
> | |
<div className="arrow left" /> | |
</li> | |
{paginationRange.map(pageNumber => { | |
// If the pageItem is a DOT, render the DOTS unicode character | |
if (pageNumber === DOTS) { | |
return <li className="pagination-item dots">…</li>; | |
} | |
// Render our Page Pills | |
return ( | |
<li | |
className={classnames('pagination-item', { | |
selected: pageNumber === currentPage | |
})} | |
onClick={() => onPageChange(pageNumber)} | |
> | |
{pageNumber} | |
</li> | |
); | |
})} | |
{/* Right Navigation arrow */} | |
<li | |
className={classnames('pagination-item', { | |
disabled: currentPage === lastPage | |
})} | |
onClick={onNext} | |
> | |
<div className="arrow right" /> | |
</li> | |
</ul> | |
); | |
}; | |
export default Pagination; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment