2019-10-20 16:59:02 +02:00
|
|
|
import React from "react";
|
|
|
|
|
import { translate } from "react-i18next";
|
|
|
|
|
import { PagedCollection } from "@scm-manager/ui-types";
|
|
|
|
|
import { Button } from "./buttons";
|
2018-10-10 19:26:29 +02:00
|
|
|
|
|
|
|
|
type Props = {
|
2019-10-19 16:38:07 +02:00
|
|
|
collection: PagedCollection;
|
|
|
|
|
page: number;
|
|
|
|
|
filter?: string;
|
2018-10-17 11:33:40 +02:00
|
|
|
|
|
|
|
|
// context props
|
2019-10-19 16:38:07 +02:00
|
|
|
t: (p: string) => string;
|
2018-10-10 19:26:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class LinkPaginator extends React.Component<Props> {
|
2019-04-17 11:40:14 +02:00
|
|
|
addFilterToLink(link: string) {
|
|
|
|
|
const { filter } = this.props;
|
|
|
|
|
if (filter) {
|
|
|
|
|
return `${link}?q=${filter}`;
|
|
|
|
|
}
|
|
|
|
|
return link;
|
|
|
|
|
}
|
2018-10-11 17:29:50 +02:00
|
|
|
|
2018-10-10 19:26:29 +02:00
|
|
|
renderFirstButton() {
|
2019-10-21 10:57:56 +02:00
|
|
|
return <Button className="pagination-link" label={"1"} disabled={false} link={this.addFilterToLink("1")} />;
|
2018-10-10 19:26:29 +02:00
|
|
|
}
|
|
|
|
|
|
2019-01-22 10:28:50 +01:00
|
|
|
renderPreviousButton(className: string, label?: string) {
|
2018-10-17 11:33:40 +02:00
|
|
|
const { page } = this.props;
|
2018-10-10 19:26:29 +02:00
|
|
|
const previousPage = page - 1;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Button
|
2019-01-22 10:28:50 +01:00
|
|
|
className={className}
|
2018-10-10 19:26:29 +02:00
|
|
|
label={label ? label : previousPage.toString()}
|
2019-10-20 16:59:02 +02:00
|
|
|
disabled={!this.hasLink("prev")}
|
2019-04-17 11:40:14 +02:00
|
|
|
link={this.addFilterToLink(`${previousPage}`)}
|
2018-10-10 19:26:29 +02:00
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-17 11:33:40 +02:00
|
|
|
hasLink(name: string) {
|
|
|
|
|
const { collection } = this.props;
|
|
|
|
|
return collection._links[name];
|
|
|
|
|
}
|
2018-10-10 19:26:29 +02:00
|
|
|
|
2019-01-22 10:28:50 +01:00
|
|
|
renderNextButton(className: string, label?: string) {
|
2018-10-17 11:33:40 +02:00
|
|
|
const { page } = this.props;
|
2018-10-10 19:26:29 +02:00
|
|
|
const nextPage = page + 1;
|
|
|
|
|
return (
|
|
|
|
|
<Button
|
2019-01-22 10:28:50 +01:00
|
|
|
className={className}
|
2018-10-10 19:26:29 +02:00
|
|
|
label={label ? label : nextPage.toString()}
|
2019-10-20 16:59:02 +02:00
|
|
|
disabled={!this.hasLink("next")}
|
2019-04-17 11:40:14 +02:00
|
|
|
link={this.addFilterToLink(`${nextPage}`)}
|
2018-10-10 19:26:29 +02:00
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
renderLastButton() {
|
|
|
|
|
const { collection } = this.props;
|
|
|
|
|
return (
|
|
|
|
|
<Button
|
2019-07-04 16:33:01 +02:00
|
|
|
className="pagination-link"
|
2018-10-10 19:26:29 +02:00
|
|
|
label={`${collection.pageTotal}`}
|
|
|
|
|
disabled={false}
|
2019-04-17 11:40:14 +02:00
|
|
|
link={this.addFilterToLink(`${collection.pageTotal}`)}
|
2018-10-10 19:26:29 +02:00
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
separator() {
|
|
|
|
|
return <span className="pagination-ellipsis">…</span>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
currentPage(page: number) {
|
2019-10-21 10:57:56 +02:00
|
|
|
return <Button className="pagination-link is-current" label={"" + page} disabled={true} />;
|
2018-10-10 19:26:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pageLinks() {
|
|
|
|
|
const { collection } = this.props;
|
|
|
|
|
|
|
|
|
|
const links = [];
|
|
|
|
|
const page = collection.page + 1;
|
|
|
|
|
const pageTotal = collection.pageTotal;
|
|
|
|
|
if (page > 1) {
|
|
|
|
|
links.push(this.renderFirstButton());
|
|
|
|
|
}
|
|
|
|
|
if (page > 3) {
|
|
|
|
|
links.push(this.separator());
|
|
|
|
|
}
|
|
|
|
|
if (page > 2) {
|
2019-10-20 16:59:02 +02:00
|
|
|
links.push(this.renderPreviousButton("pagination-link"));
|
2018-10-10 19:26:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
links.push(this.currentPage(page));
|
|
|
|
|
|
|
|
|
|
if (page + 1 < pageTotal) {
|
2019-10-20 16:59:02 +02:00
|
|
|
links.push(this.renderNextButton("pagination-link"));
|
2018-10-10 19:26:29 +02:00
|
|
|
}
|
2019-10-19 16:38:07 +02:00
|
|
|
if (page + 2 < pageTotal) links.push(this.separator());
|
|
|
|
|
//if there exists pages between next and last
|
2018-10-10 19:26:29 +02:00
|
|
|
if (page < pageTotal) {
|
|
|
|
|
links.push(this.renderLastButton());
|
|
|
|
|
}
|
|
|
|
|
return links;
|
|
|
|
|
}
|
|
|
|
|
render() {
|
2019-04-19 13:23:57 +02:00
|
|
|
const { collection, t } = this.props;
|
2019-10-19 16:38:07 +02:00
|
|
|
if (collection) {
|
2019-04-19 13:23:57 +02:00
|
|
|
return (
|
|
|
|
|
<nav className="pagination is-centered" aria-label="pagination">
|
2019-10-21 10:57:56 +02:00
|
|
|
{this.renderPreviousButton("pagination-previous", t("paginator.previous"))}
|
2019-04-19 13:23:57 +02:00
|
|
|
<ul className="pagination-list">
|
|
|
|
|
{this.pageLinks().map((link, index) => {
|
|
|
|
|
return <li key={index}>{link}</li>;
|
|
|
|
|
})}
|
|
|
|
|
</ul>
|
2019-10-20 16:59:02 +02:00
|
|
|
{this.renderNextButton("pagination-next", t("paginator.next"))}
|
2019-04-19 13:23:57 +02:00
|
|
|
</nav>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return null;
|
2018-10-10 19:26:29 +02:00
|
|
|
}
|
|
|
|
|
}
|
2019-10-20 16:59:02 +02:00
|
|
|
export default translate("commons")(LinkPaginator);
|