mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-10-30 18:15:52 +01:00
126 lines
3.7 KiB
TypeScript
126 lines
3.7 KiB
TypeScript
/*
|
|
* Copyright (c) 2020 - present Cloudogu GmbH
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
|
*/
|
|
|
|
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, ChangesetCollection, Repository } from "@scm-manager/ui-types";
|
|
import { ChangesetList, LinkPaginator, urls } from "@scm-manager/ui-components";
|
|
import { ErrorNotification, Notification, Loading, useDocumentTitle } from "@scm-manager/ui-core";
|
|
|
|
export const usePage = () => {
|
|
const match = useRouteMatch();
|
|
return urls.getPageFromMatch(match);
|
|
};
|
|
|
|
type Props = {
|
|
repository: Repository;
|
|
branch?: Branch;
|
|
url: string;
|
|
};
|
|
|
|
const Changesets: FC<Props> = ({ repository, branch, ...props }) => {
|
|
const page = usePage();
|
|
|
|
const { isLoading, error, data } = useChangesets(repository, { branch, page: page - 1 });
|
|
const [t] = useTranslation("repos");
|
|
const getDocumentTitle = () => {
|
|
if (data?.pageTotal && data.pageTotal > 1 && page) {
|
|
if (branch) {
|
|
return t("changesets.commitsWithPageRevisionAndNamespaceName", {
|
|
page,
|
|
total: data.pageTotal,
|
|
revision: branch.name,
|
|
namespace: repository.namespace,
|
|
name: repository.name,
|
|
});
|
|
} else {
|
|
return t("changesets.commitsWithPageAndNamespaceName", {
|
|
page,
|
|
total: data.pageTotal,
|
|
namespace: repository.namespace,
|
|
name: repository.name,
|
|
});
|
|
}
|
|
} else if (branch) {
|
|
return t("changesets.commitsWithRevisionAndNamespaceName", {
|
|
revision: branch.name,
|
|
namespace: repository.namespace,
|
|
name: repository.name,
|
|
});
|
|
} else {
|
|
return t("changesets.commitsWithNamespaceName", {
|
|
namespace: repository.namespace,
|
|
name: repository.name,
|
|
});
|
|
}
|
|
};
|
|
useDocumentTitle(getDocumentTitle());
|
|
|
|
return (
|
|
<ChangesetsPanel
|
|
isLoading={isLoading}
|
|
error={error}
|
|
data={data}
|
|
repository={repository}
|
|
branch={branch}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
type ChangesetsPanelProps = Props & {
|
|
error: Error | null;
|
|
isLoading: boolean;
|
|
data?: ChangesetCollection;
|
|
};
|
|
|
|
export const ChangesetsPanel: FC<ChangesetsPanelProps> = ({ repository, error, isLoading, data, url, branch }) => {
|
|
const page = usePage();
|
|
const [t] = useTranslation("repos");
|
|
const changesets = data?._embedded?.changesets;
|
|
|
|
if (error) {
|
|
return <ErrorNotification error={error} />;
|
|
}
|
|
|
|
if (isLoading) {
|
|
return <Loading />;
|
|
}
|
|
|
|
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">
|
|
<div className="panel-block">
|
|
<ChangesetList repository={repository} changesets={changesets} branch={branch} />
|
|
</div>
|
|
<div className="panel-footer">
|
|
<LinkPaginator collection={data} page={page} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Changesets;
|