Files
SCM-Manager/scm-ui/ui-webapp/src/repos/components/changesets/ChangesetDetails.tsx

303 lines
9.9 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.
*/
2020-06-09 16:13:05 +02:00
import React, { FC, useState } from "react";
import { Trans, useTranslation } from "react-i18next";
import classNames from "classnames";
import styled from "styled-components";
import { ExtensionPoint, extensionPoints } from "@scm-manager/ui-extensions";
import { Changeset, ParentChangeset, Repository } from "@scm-manager/ui-types";
import {
AvatarImage,
AvatarWrapper,
Button,
2020-06-09 16:13:05 +02:00
ChangesetAuthor,
ChangesetDescription,
ChangesetDiff,
ChangesetId,
2019-10-10 11:37:14 +02:00
changesets,
ChangesetTags,
DateFromNow,
FileControlFactory,
2020-07-28 17:52:20 +02:00
Icon,
Level,
2020-11-27 08:49:10 +01:00
SignatureIcon,
SubSubtitle,
Tooltip,
} from "@scm-manager/ui-components";
import ContributorTable from "./ContributorTable";
import { Link, Link as ReactLink } from "react-router-dom";
import CreateTagModal from "./CreateTagModal";
import { useContainedInTags } from "@scm-manager/ui-api";
type Props = {
changeset: Changeset;
repository: Repository;
2020-08-10 20:48:08 +02:00
fileControlFactory?: FileControlFactory;
2019-10-10 11:37:14 +02:00
};
2020-06-09 16:13:05 +02:00
const countContributors = (changeset: Changeset) => {
2020-06-11 08:08:47 +02:00
if (changeset.contributors) {
const uniqueContributors: string[] = [];
changeset.contributors
.map((p) => p.person)
.forEach((c) => {
if (c.mail) {
if (!uniqueContributors.includes(c.mail)) {
uniqueContributors.push(c.mail);
}
} else {
uniqueContributors.push(c.name);
}
});
return uniqueContributors.length + 1;
2020-06-11 08:08:47 +02:00
}
return 1;
2020-06-09 16:13:05 +02:00
};
const ContributorColumn = styled.div`
2020-11-27 08:49:10 +01:00
flex-grow: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 0;
`;
const CountColumn = styled.div`
text-align: right;
white-space: nowrap;
`;
const SeparatedParents = styled.div`
a + a:before {
content: ",\\00A0";
color: #4a4a4a;
}
`;
2020-06-09 16:13:05 +02:00
const Contributors: FC<{ changeset: Changeset }> = ({ changeset }) => {
const [t] = useTranslation("repos");
2020-06-10 11:08:11 +02:00
const [open, setOpen] = useState(false);
const signatureIcon =
changeset?.signatures && changeset.signatures.length > 0 ? (
<SignatureIcon className="mx-2" signatures={changeset.signatures} />
) : (
<>&nbsp;</>
);
2020-07-28 17:52:20 +02:00
if (open) {
return (
<div className="is-flex is-flex-direction-column mb-4">
<div className="is-flex">
<p className="is-ellipsis-overflow is-clickable mb-2" onClick={(e) => setOpen(!open)}>
<Icon name="angle-down" alt={t("changeset.contributors.hideList")} /> {t("changeset.contributors.list")}
</p>
2020-07-28 17:52:20 +02:00
{signatureIcon}
</div>
<ContributorTable changeset={changeset} />
</div>
);
}
2020-08-10 20:48:08 +02:00
2020-06-09 16:13:05 +02:00
return (
<div className="is-flex is-clickable" onClick={(e) => setOpen(!open)}>
<ContributorColumn className="is-ellipsis-overflow">
<Icon name="angle-right" alt={t("changeset.contributors.showList")} /> <ChangesetAuthor changeset={changeset} />
</ContributorColumn>
{signatureIcon}
<CountColumn className="is-hidden-mobile is-hidden-tablet-only is-hidden-desktop-only">
(<span>{t("changeset.contributors.count", { count: countContributors(changeset) })}</span>)
</CountColumn>
</div>
);
};
const ContainedInTags: FC<{ changeset: Changeset; repository: Repository }> = ({ changeset, repository }) => {
const [t] = useTranslation("repos");
const [open, setOpen] = useState(false);
const { data, isLoading } = useContainedInTags(changeset, repository);
const tags = data?._embedded?.tags;
if (!tags || tags.length === 0 || isLoading) {
return <div className="mb-5"></div>;
}
if (open) {
return (
<div className="is-flex is-flex-direction-column mb-4">
<div className="is-flex">
<p className="is-ellipsis-overflow is-clickable mb-2" onClick={(e) => setOpen(!open)}>
<Icon name="angle-down" alt={t("changeset.containedInTags.hideAllTags")} />{" "}
{t("changeset.containedInTags.allTags")}
</p>
</div>
<div>
{" "}
{tags.map((tag) => (
<span className="tag is-info is-normal m-1">
<Link
to={`/repo/${repository.namespace}/${repository.name}/tag/${tag.name}`}
className="has-text-inherit"
>
{tag.name}
</Link>
</span>
))}
</div>
</div>
);
}
return (
<div className="is-flex is-clickable" onClick={() => setOpen(!open)}>
<ContributorColumn className="is-ellipsis-overflow">
<Icon name="angle-right" alt={t("changeset.containedInTags.showAllTags")} />{" "}
{t("changeset.containedInTags.containedInTag", { count: tags.length })}
</ContributorColumn>
</div>
2020-06-09 16:13:05 +02:00
);
};
const ChangesetDetails: FC<Props> = ({ changeset, repository, fileControlFactory }) => {
2020-11-27 08:49:10 +01:00
const [collapsed, setCollapsed] = useState(false);
const [isTagCreationModalVisible, setTagCreationModalVisible] = useState(false);
const [t] = useTranslation("repos");
2019-10-10 11:37:14 +02:00
2020-11-27 08:49:10 +01:00
const description = changesets.parseDescription(changeset.description);
const id = <ChangesetId repository={repository} changeset={changeset} link={false} />;
const date = <DateFromNow date={changeset.date} />;
const parents = changeset._embedded?.parents?.map((parent: ParentChangeset, index: number) => (
2020-11-27 08:49:10 +01:00
<ReactLink title={parent.id} to={parent.id} key={index}>
{parent.id.substring(0, 7)}
</ReactLink>
));
const showCreateButton = "tag" in changeset._links;
2018-10-18 14:40:35 +02:00
2020-11-27 08:49:10 +01:00
const collapseDiffs = () => {
setCollapsed(!collapsed);
};
2018-10-18 14:40:35 +02:00
2020-11-27 08:49:10 +01:00
return (
<>
<div className={classNames("content", "m-0")}>
<SubSubtitle>
<ExtensionPoint<extensionPoints.ChangesetDescription>
2020-11-27 08:49:10 +01:00
name="changeset.description"
props={{
changeset,
value: description.title,
2020-11-27 08:49:10 +01:00
}}
renderAll={false}
>
<ChangesetDescription changeset={changeset} value={description.title} />
</ExtensionPoint>
</SubSubtitle>
2020-11-27 08:49:10 +01:00
<article className="media">
<AvatarWrapper>
<p className={classNames("image", "is-64x64", "mr-4")}>
2020-11-27 08:49:10 +01:00
<AvatarImage person={changeset.author} />
</p>
2020-11-27 08:49:10 +01:00
</AvatarWrapper>
<div className="media-content">
<Contributors changeset={changeset} />
<ContainedInTags changeset={changeset} repository={repository} />
<div className="is-flex is-ellipsis-overflow">
2020-11-27 08:49:10 +01:00
<p>
<Trans i18nKey="repos:changeset.summary" components={[id, date]} />
</p>
{parents && parents?.length > 0 ? (
<SeparatedParents className="ml-4">
2020-11-27 08:49:10 +01:00
{t("changeset.parents.label", { count: parents?.length }) + ": "}
{parents}
</SeparatedParents>
) : null}
</div>
2020-11-27 08:49:10 +01:00
</div>
<div className="media-right">
<ChangesetTags changeset={changeset} />
</div>
2020-11-27 10:48:56 +01:00
{showCreateButton && (
<div className="media-right">
<Tooltip message={t("changeset.tag.create")} location="top">
<Button
color="success"
className="tag"
label={(changeset._embedded?.tags?.length === 0 && t("changeset.tag.create")) || ""}
2020-11-27 10:48:56 +01:00
icon="plus"
action={() => setTagCreationModalVisible(true)}
/>
</Tooltip>
</div>
)}
{isTagCreationModalVisible && (
<CreateTagModal
repository={repository}
changeset={changeset}
2020-11-27 10:48:56 +01:00
onClose={() => setTagCreationModalVisible(false)}
/>
)}
2020-11-27 08:49:10 +01:00
</article>
<p>
{description.message.split("\n").map((item, key) => {
return (
<span key={key}>
<ExtensionPoint<extensionPoints.ChangesetDescription>
2020-11-27 08:49:10 +01:00
name="changeset.description"
props={{
changeset,
value: item,
2020-11-27 08:49:10 +01:00
}}
renderAll={false}
>
<ChangesetDescription changeset={changeset} value={item} />
</ExtensionPoint>
<br />
</span>
);
})}
</p>
</div>
<div>
<Level
className="mb-4"
2020-11-27 08:49:10 +01:00
right={
<Button
action={collapseDiffs}
color="default"
icon={collapsed ? "eye" : "eye-slash"}
label={t("changesets.collapseDiffs")}
title={t("changesets.collapseDiffs")}
2020-11-27 08:49:10 +01:00
reducedMobile={true}
/>
}
/>
<ChangesetDiff changeset={changeset} fileControlFactory={fileControlFactory} defaultCollapse={collapsed} />
</div>
</>
);
};
2018-10-18 14:40:35 +02:00
export default ChangesetDetails;