mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-25 02:18:20 +03:00
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
import { Pagination, PaginationItem, PaginationLink } from 'reactstrap';
|
|
import PropTypes from 'prop-types';
|
|
import { range } from 'ramda';
|
|
|
|
const propTypes = {
|
|
serverId: PropTypes.string.isRequired,
|
|
paginator: PropTypes.shape({
|
|
currentPage: PropTypes.number,
|
|
pagesCount: PropTypes.number,
|
|
}),
|
|
};
|
|
|
|
export default function Paginator({ paginator = {}, serverId }) {
|
|
const { currentPage, pagesCount = 0 } = paginator;
|
|
|
|
if (pagesCount <= 1) {
|
|
return null;
|
|
}
|
|
|
|
const renderPages = () =>
|
|
range(1, pagesCount + 1).map((pageNumber) => (
|
|
<PaginationItem key={pageNumber} active={currentPage === pageNumber}>
|
|
<PaginationLink
|
|
tag={Link}
|
|
to={`/server/${serverId}/list-short-urls/${pageNumber}`}
|
|
>
|
|
{pageNumber}
|
|
</PaginationLink>
|
|
</PaginationItem>
|
|
));
|
|
|
|
return (
|
|
<Pagination listClassName="flex-wrap">
|
|
<PaginationItem disabled={currentPage === 1}>
|
|
<PaginationLink
|
|
previous
|
|
tag={Link}
|
|
to={`/server/${serverId}/list-short-urls/${currentPage - 1}`}
|
|
/>
|
|
</PaginationItem>
|
|
{renderPages()}
|
|
<PaginationItem disabled={currentPage >= pagesCount}>
|
|
<PaginationLink
|
|
next
|
|
tag={Link}
|
|
to={`/server/${serverId}/list-short-urls/${currentPage + 1}`}
|
|
/>
|
|
</PaginationItem>
|
|
</Pagination>
|
|
);
|
|
}
|
|
|
|
Paginator.propTypes = propTypes;
|