2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
2019-10-20 16:59:02 +02:00
|
|
|
import React from "react";
|
2019-10-23 15:47:08 +02:00
|
|
|
import { WithTranslation, withTranslation } from "react-i18next";
|
2019-10-20 16:59:02 +02:00
|
|
|
import { PagedCollection } from "@scm-manager/ui-types";
|
|
|
|
|
import { Button } from "./buttons";
|
2018-10-10 19:26:29 +02:00
|
|
|
|
2019-10-23 15:47:08 +02:00
|
|
|
type Props = WithTranslation & {
|
2019-10-19 16:38:07 +02:00
|
|
|
collection: PagedCollection;
|
|
|
|
|
page: number;
|
|
|
|
|
filter?: 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-23 15:47:08 +02:00
|
|
|
export default withTranslation("commons")(LinkPaginator);
|