Files
SCM-Manager/scm-ui/ui-webapp/src/repos/containers/Changesets.tsx

84 lines
2.7 KiB
TypeScript
Raw Normal View History

/*
* 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.
*/
import React, { FC } from "react";
import { Redirect, useRouteMatch } from "react-router-dom";
import { useTranslation } from "react-i18next";
import { useChangesets } from "@scm-manager/ui-api";
import { Branch, Repository } from "@scm-manager/ui-types";
2019-02-01 10:50:05 +01:00
import {
ChangesetList,
2019-02-01 10:50:05 +01:00
ErrorNotification,
LinkPaginator,
2019-04-09 15:19:43 +02:00
Loading,
Notification,
urls,
} from "@scm-manager/ui-components";
export const usePage = () => {
const match = useRouteMatch();
return urls.getPageFromMatch(match);
};
2018-10-16 20:19:22 +02:00
type Props = {
repository: Repository;
branch?: Branch;
url: string;
};
const Changesets: FC<Props> = ({ repository, branch, url }) => {
const page = usePage();
const { isLoading, error, data } = useChangesets(repository, { branch, page: page - 1 });
const [t] = useTranslation("repos");
const changesets = data?._embedded?.changesets;
if (error) {
return <ErrorNotification error={error} />;
2018-10-17 10:38:46 +02:00
}
if (isLoading) {
return <Loading />;
2020-02-28 13:15:27 +01:00
}
if (data && data.pageTotal < page && page > 1) {
return <Redirect to={`${urls.unescapeUrlForRoute(url)}/${data.pageTotal}`} />;
}
if (!data || !changesets || changesets.length === 0) {
return <Notification type="info">{t("changesets.noChangesets")}</Notification>;
}
return (
<div className="panel">
2019-02-01 10:50:05 +01:00
<div className="panel-block">
<ChangesetList repository={repository} changesets={changesets} />
</div>
<div className="panel-footer">
<LinkPaginator collection={data} page={page} />
</div>
</div>
);
};
2018-10-17 10:38:46 +02:00
export default Changesets;