-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac8d21f
commit 252a956
Showing
19 changed files
with
4,171 additions
and
3,402 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
import React, { MouseEvent, useEffect, useState } from 'react'; | ||
import { | ||
faAngleLeft, | ||
faAngleRight, | ||
faAnglesLeft, | ||
faAnglesRight | ||
} from '@fortawesome/free-solid-svg-icons'; | ||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; | ||
import BigNumber from 'bignumber.js'; | ||
import classNames from 'classnames'; | ||
|
||
import { DataTestIdsEnum } from 'constants/index'; | ||
import { WithStylesImportType } from 'hocs/useStyles'; | ||
import { withStyles } from 'hocs/withStyles'; | ||
import { WithClassnameType } from 'UI/types'; | ||
import { stringIsInteger } from 'utils'; | ||
|
||
import { PaginationEdgeButton } from './components'; | ||
import { getPagination } from './helpers'; | ||
|
||
export interface PaginationPropsType | ||
extends WithStylesImportType, | ||
WithClassnameType { | ||
onPageChange: (page: number) => void; | ||
currentPage: number; | ||
totalPages: number; | ||
isDisabled?: boolean; | ||
showLabels?: boolean; | ||
showEdgeButtons?: boolean; | ||
disabledClassName?: string; | ||
buttonsClassNames?: string; | ||
} | ||
|
||
const PaginationComponent = ({ | ||
currentPage = 1, | ||
totalPages, | ||
className, | ||
disabledClassName, | ||
buttonsClassNames, | ||
onPageChange, | ||
isDisabled, | ||
showLabels, | ||
showEdgeButtons = true, | ||
styles | ||
}: PaginationPropsType) => { | ||
const [currentPageIndex, setCurrentPageIndex] = useState(currentPage); | ||
|
||
const isLeftToggleDisabled = currentPageIndex === 1; | ||
const isRightToggleDisabled = currentPageIndex === totalPages; | ||
|
||
const optionalDisabledClassName = disabledClassName | ||
? { [disabledClassName]: isDisabled } | ||
: {}; | ||
|
||
const paginationItems = getPagination({ | ||
currentPage: currentPageIndex, | ||
totalPages | ||
}); | ||
|
||
const handlePageClick = (newPageIndex: number) => { | ||
if (newPageIndex === currentPageIndex) { | ||
return; | ||
} | ||
|
||
setCurrentPageIndex(newPageIndex); | ||
onPageChange(newPageIndex); | ||
}; | ||
|
||
const handlePaginationItemClick = (paginationItem: string) => { | ||
if (stringIsInteger(paginationItem)) { | ||
handlePageClick(new BigNumber(paginationItem).toNumber()); | ||
} | ||
}; | ||
|
||
const handleEdgePageClick = | ||
(pageToNavigateTo: number) => (event: MouseEvent<HTMLElement>) => { | ||
event.preventDefault(); | ||
handlePageClick(pageToNavigateTo); | ||
}; | ||
|
||
const isPaginationItemInTheHundreds = (paginationItem: string) => | ||
stringIsInteger(paginationItem) && | ||
new BigNumber(paginationItem).isGreaterThanOrEqualTo(100); | ||
|
||
const isCurrentPageActive = (paginationItem: string) => | ||
new BigNumber(paginationItem).isEqualTo(currentPageIndex); | ||
|
||
useEffect(() => { | ||
if (currentPage !== currentPageIndex) { | ||
setCurrentPageIndex(currentPage); | ||
} | ||
}, [currentPage, currentPageIndex]); | ||
|
||
if (totalPages === 1) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<div className={classNames(styles?.pagination, className)}> | ||
{showEdgeButtons && ( | ||
<span | ||
onClick={handleEdgePageClick(1)} | ||
className={classNames(styles?.paginationAngle, buttonsClassNames, { | ||
[styles?.disabled]: isLeftToggleDisabled, | ||
...optionalDisabledClassName | ||
})} | ||
> | ||
<FontAwesomeIcon | ||
className={styles?.paginationAngleIcon} | ||
icon={faAnglesLeft} | ||
/> | ||
</span> | ||
)} | ||
|
||
<PaginationEdgeButton | ||
label='Prev' | ||
onClick={handleEdgePageClick(currentPageIndex - 1)} | ||
data-testid={DataTestIdsEnum.prevBtn} | ||
paginationButtonIcon={faAngleLeft} | ||
isInactive={isLeftToggleDisabled} | ||
showLabels={showLabels} | ||
className={classNames( | ||
styles?.paginationEdgeButton, | ||
buttonsClassNames, | ||
{ [styles?.disabled]: isDisabled }, | ||
optionalDisabledClassName | ||
)} | ||
/> | ||
|
||
<div className={styles?.paginationItems}> | ||
{paginationItems.map((paginationItem, paginationItemIndex) => ( | ||
<div | ||
key={`page-item-${paginationItemIndex}`} | ||
className={styles?.paginationItemWrapper} | ||
> | ||
{stringIsInteger(paginationItem) ? ( | ||
<div | ||
onClick={() => handlePaginationItemClick(paginationItem)} | ||
className={classNames( | ||
styles?.paginationItem, | ||
buttonsClassNames, | ||
{ [styles?.active]: isCurrentPageActive(paginationItem) }, | ||
{ [styles?.ellipsis]: !stringIsInteger(paginationItem) }, | ||
{ [styles?.disabled]: isDisabled }, | ||
{ | ||
[styles?.hundreds]: | ||
isPaginationItemInTheHundreds(paginationItem) | ||
}, | ||
optionalDisabledClassName | ||
)} | ||
> | ||
<span className={styles?.paginationItemText}> | ||
{paginationItem} | ||
</span> | ||
</div> | ||
) : ( | ||
<span className={styles?.paginationItemText}> | ||
{paginationItem} | ||
</span> | ||
)} | ||
</div> | ||
))} | ||
</div> | ||
|
||
<PaginationEdgeButton | ||
label='Next' | ||
onClick={handleEdgePageClick(currentPageIndex + 1)} | ||
data-testid={DataTestIdsEnum.nextBtn} | ||
paginationButtonIcon={faAngleRight} | ||
isInactive={isRightToggleDisabled} | ||
showLabels={showLabels} | ||
className={classNames( | ||
styles?.paginationEdgeButton, | ||
styles?.reversed, | ||
buttonsClassNames, | ||
{ [styles?.disabled]: isDisabled }, | ||
optionalDisabledClassName | ||
)} | ||
/> | ||
|
||
{showEdgeButtons && ( | ||
<span | ||
onClick={handleEdgePageClick(totalPages)} | ||
className={classNames(styles?.paginationAngle, buttonsClassNames, { | ||
[styles?.disabled]: isRightToggleDisabled, | ||
...optionalDisabledClassName | ||
})} | ||
> | ||
<FontAwesomeIcon | ||
className={styles?.paginationAngleIcon} | ||
icon={faAnglesRight} | ||
/> | ||
</span> | ||
)} | ||
</div> | ||
); | ||
}; | ||
|
||
export const Pagination = withStyles(PaginationComponent, { | ||
ssrStyles: () => import('UI/Pagination/paginationStyles.scss'), | ||
clientStyles: () => require('UI/Pagination/paginationStyles.scss').default | ||
}); |
60 changes: 60 additions & 0 deletions
60
src/UI/Pagination/components/PaginationEdgeButton/PaginationEdgeButton.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import React, { MouseEvent } from 'react'; | ||
import { IconDefinition } from '@fortawesome/fontawesome-svg-core'; | ||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; | ||
import classNames from 'classnames'; | ||
|
||
import { WithStylesImportType } from 'hocs/useStyles'; | ||
import { withStyles } from 'hocs/withStyles'; | ||
import { WithClassnameType } from 'UI/types'; | ||
|
||
interface PaginationEdgeButtonPropsType | ||
extends WithClassnameType, | ||
WithStylesImportType { | ||
label: string; | ||
isInactive: boolean; | ||
showLabels?: boolean; | ||
paginationButtonIcon: IconDefinition; | ||
onClick: (event: MouseEvent<HTMLDivElement>) => void; | ||
} | ||
|
||
const PaginationEdgeButtonComponent = ({ | ||
label, | ||
onClick, | ||
showLabels, | ||
isInactive, | ||
paginationButtonIcon, | ||
className, | ||
'data-testid': dataTestId, | ||
styles | ||
}: PaginationEdgeButtonPropsType) => ( | ||
<div | ||
onClick={onClick} | ||
data-testid={dataTestId} | ||
className={classNames(styles?.paginationEdgeButton, className, { | ||
[styles?.inactive]: isInactive | ||
})} | ||
> | ||
<FontAwesomeIcon | ||
icon={paginationButtonIcon} | ||
className={styles?.paginationEdgeButtonIcon} | ||
/> | ||
|
||
<span | ||
className={classNames(styles?.paginationEdgeButtonText, { | ||
[styles?.show]: showLabels | ||
})} | ||
> | ||
{label} | ||
</span> | ||
</div> | ||
); | ||
|
||
export const PaginationEdgeButton = withStyles(PaginationEdgeButtonComponent, { | ||
ssrStyles: () => | ||
import( | ||
'UI/Pagination/components/PaginationEdgeButton/paginationEdgeButtonStyles.scss' | ||
), | ||
clientStyles: () => | ||
require('UI/Pagination/components/PaginationEdgeButton/paginationEdgeButtonStyles.scss') | ||
.default | ||
}); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './PaginationEdgeButton'; |
53 changes: 53 additions & 0 deletions
53
src/UI/Pagination/components/PaginationEdgeButton/paginationEdgeButtonStyles.scss
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
.pagination-edge-button { | ||
display: none; | ||
gap: 8px; | ||
align-items: center; | ||
color: #e5e5e5; | ||
transition: all 200ms ease; | ||
cursor: pointer; | ||
|
||
@media (min-width: 576px) { | ||
padding: 0; | ||
margin: 0 4px; | ||
display: flex; | ||
} | ||
|
||
&.inactive { | ||
color: #737373; | ||
pointer-events: none; | ||
|
||
.pagination-edge-button-icon { | ||
color: #737373; | ||
} | ||
} | ||
|
||
&:hover { | ||
color: #23f7dd; | ||
|
||
.pagination-edge-button-icon { | ||
color: #23f7dd; | ||
} | ||
} | ||
|
||
.pagination-edge-button-text { | ||
display: none; | ||
|
||
&.show { | ||
display: block; | ||
} | ||
|
||
@media (min-width: 576px) { | ||
display: block; | ||
} | ||
} | ||
|
||
.pagination-edge-button-icon { | ||
transition: all 200ms ease; | ||
color: #e5e5e5; | ||
font-size: 12px; | ||
|
||
@media (min-width: 375px) { | ||
font-size: 16px; | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './PaginationEdgeButton'; |
Oops, something went wrong.