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.
|
|
|
|
|
*/
|
2020-06-09 16:13:05 +02:00
|
|
|
import React, { FC, useState } from "react";
|
2021-02-24 08:17:40 +01:00
|
|
|
import { Trans, useTranslation } from "react-i18next";
|
2019-10-20 18:02:52 +02:00
|
|
|
import classNames from "classnames";
|
|
|
|
|
import styled from "styled-components";
|
|
|
|
|
import { ExtensionPoint } from "@scm-manager/ui-extensions";
|
2021-02-24 08:17:40 +01:00
|
|
|
import { Changeset, Link, ParentChangeset, Repository } from "@scm-manager/ui-types";
|
2018-12-10 08:45:59 +01:00
|
|
|
import {
|
2020-01-08 15:57:13 +01:00
|
|
|
AvatarImage,
|
|
|
|
|
AvatarWrapper,
|
|
|
|
|
Button,
|
2020-06-09 16:13:05 +02:00
|
|
|
ChangesetAuthor,
|
2020-06-30 18:11:23 +02:00
|
|
|
ChangesetDescription,
|
2018-12-11 13:25:35 +01:00
|
|
|
ChangesetDiff,
|
2020-01-08 15:57:13 +01:00
|
|
|
ChangesetId,
|
2019-10-10 11:37:14 +02:00
|
|
|
changesets,
|
2020-09-01 09:43:39 +02:00
|
|
|
ChangesetTags,
|
2020-01-08 15:57:13 +01:00
|
|
|
DateFromNow,
|
2020-09-01 09:43:39 +02:00
|
|
|
FileControlFactory,
|
2020-07-28 17:52:20 +02:00
|
|
|
Icon,
|
2020-09-01 09:43:39 +02:00
|
|
|
Level,
|
2020-11-27 08:49:10 +01:00
|
|
|
SignatureIcon,
|
2021-02-24 08:17:40 +01:00
|
|
|
Tooltip
|
2019-10-20 18:02:52 +02:00
|
|
|
} from "@scm-manager/ui-components";
|
2020-06-08 14:32:06 +02:00
|
|
|
import ContributorTable from "./ContributorTable";
|
2020-06-15 12:44:43 +02:00
|
|
|
import { Link as ReactLink } from "react-router-dom";
|
2021-02-24 08:17:40 +01:00
|
|
|
import CreateTagModal from "./CreateTagModal";
|
2018-12-10 08:45:59 +01:00
|
|
|
|
2021-02-24 08:17:40 +01:00
|
|
|
type Props = {
|
2019-10-19 16:38:07 +02:00
|
|
|
changeset: Changeset;
|
|
|
|
|
repository: Repository;
|
2020-08-10 20:48:08 +02:00
|
|
|
fileControlFactory?: FileControlFactory;
|
2019-10-10 11:37:14 +02:00
|
|
|
};
|
|
|
|
|
|
2019-10-09 16:17:02 +02:00
|
|
|
const RightMarginP = styled.p`
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
`;
|
|
|
|
|
|
2019-10-10 11:37:14 +02:00
|
|
|
const BottomMarginLevel = styled(Level)`
|
|
|
|
|
margin-bottom: 1rem !important;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-06-09 16:13:05 +02:00
|
|
|
const countContributors = (changeset: Changeset) => {
|
2020-06-11 08:08:47 +02:00
|
|
|
if (changeset.contributors) {
|
|
|
|
|
return changeset.contributors.length + 1;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
2020-06-09 16:13:05 +02:00
|
|
|
};
|
|
|
|
|
|
2020-07-28 17:52:20 +02:00
|
|
|
const FlexRow = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-06-10 08:12:44 +02:00
|
|
|
const ContributorLine = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const ContributorColumn = styled.p`
|
2020-11-27 08:49:10 +01:00
|
|
|
flex-grow: 0;
|
2020-06-10 08:12:44 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const CountColumn = styled.p`
|
|
|
|
|
text-align: right;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-06-10 09:28:40 +02:00
|
|
|
const ContributorDetails = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const ContributorToggleLine = styled.p`
|
|
|
|
|
cursor: pointer;
|
2020-09-21 09:58:49 +02:00
|
|
|
/** margin-bottom is inherit from content p **/
|
2020-06-10 09:28:40 +02:00
|
|
|
margin-bottom: 0.5rem !important;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-06-15 12:44:43 +02:00
|
|
|
const ChangesetSummary = styled.div`
|
|
|
|
|
display: flex;
|
2020-06-30 18:11:23 +02:00
|
|
|
`;
|
2020-06-15 12:44:43 +02:00
|
|
|
|
|
|
|
|
const SeparatedParents = styled.div`
|
2020-06-16 17:18:48 +02:00
|
|
|
margin-left: 1em;
|
2021-02-24 08:17:40 +01:00
|
|
|
|
2020-06-15 12:44:43 +02:00
|
|
|
a + a:before {
|
|
|
|
|
content: ",\\00A0";
|
|
|
|
|
color: #4a4a4a;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
2020-06-09 16:13:05 +02:00
|
|
|
const Contributors: FC<{ changeset: Changeset }> = ({ changeset }) => {
|
2020-06-10 09:28:40 +02:00
|
|
|
const [t] = useTranslation("repos");
|
2020-06-10 11:08:11 +02:00
|
|
|
const [open, setOpen] = useState(false);
|
2020-07-28 17:52:20 +02:00
|
|
|
const signatureIcon = changeset?.signatures && changeset.signatures.length > 0 && (
|
|
|
|
|
<SignatureIcon className="mx-2" signatures={changeset.signatures} />
|
|
|
|
|
);
|
|
|
|
|
|
2020-06-10 09:28:40 +02:00
|
|
|
if (open) {
|
|
|
|
|
return (
|
|
|
|
|
<ContributorDetails>
|
2020-07-28 17:52:20 +02:00
|
|
|
<FlexRow>
|
|
|
|
|
<ContributorToggleLine onClick={e => setOpen(!open)} className="is-ellipsis-overflow">
|
|
|
|
|
<Icon name="angle-down" /> {t("changeset.contributors.list")}
|
|
|
|
|
</ContributorToggleLine>
|
|
|
|
|
{signatureIcon}
|
|
|
|
|
</FlexRow>
|
2020-06-10 09:28:40 +02:00
|
|
|
<ContributorTable changeset={changeset} />
|
|
|
|
|
</ContributorDetails>
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-08-10 20:48:08 +02:00
|
|
|
|
2020-06-09 16:13:05 +02:00
|
|
|
return (
|
|
|
|
|
<>
|
2020-06-10 08:12:44 +02:00
|
|
|
<ContributorLine onClick={e => setOpen(!open)}>
|
2020-07-28 17:52:20 +02:00
|
|
|
<ContributorColumn className="is-ellipsis-overflow">
|
2020-06-10 09:28:40 +02:00
|
|
|
<Icon name="angle-right" /> <ChangesetAuthor changeset={changeset} />
|
2020-06-10 08:12:44 +02:00
|
|
|
</ContributorColumn>
|
2020-07-28 17:52:20 +02:00
|
|
|
{signatureIcon}
|
2020-11-27 10:48:56 +01:00
|
|
|
<CountColumn className={"is-hidden-mobile is-hidden-tablet-only is-hidden-desktop-only"}>
|
2020-06-10 11:08:11 +02:00
|
|
|
(
|
|
|
|
|
<span className="has-text-link">
|
|
|
|
|
{t("changeset.contributors.count", { count: countContributors(changeset) })}
|
|
|
|
|
</span>
|
|
|
|
|
)
|
2020-06-10 08:12:44 +02:00
|
|
|
</CountColumn>
|
|
|
|
|
</ContributorLine>
|
2020-06-09 16:13:05 +02:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-24 08:17:40 +01: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);
|
2021-02-24 08:17:40 +01:00
|
|
|
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} />;
|
2021-02-24 08:17:40 +01:00
|
|
|
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", "is-marginless")}>
|
|
|
|
|
<h4>
|
|
|
|
|
<ExtensionPoint
|
|
|
|
|
name="changeset.description"
|
|
|
|
|
props={{
|
|
|
|
|
changeset,
|
|
|
|
|
value: description.title
|
|
|
|
|
}}
|
|
|
|
|
renderAll={false}
|
|
|
|
|
>
|
|
|
|
|
<ChangesetDescription changeset={changeset} value={description.title} />
|
|
|
|
|
</ExtensionPoint>
|
|
|
|
|
</h4>
|
|
|
|
|
<article className="media">
|
|
|
|
|
<AvatarWrapper>
|
|
|
|
|
<RightMarginP className={classNames("image", "is-64x64")}>
|
|
|
|
|
<AvatarImage person={changeset.author} />
|
|
|
|
|
</RightMarginP>
|
|
|
|
|
</AvatarWrapper>
|
|
|
|
|
<div className="media-content">
|
|
|
|
|
<Contributors changeset={changeset} />
|
|
|
|
|
<ChangesetSummary className="is-ellipsis-overflow">
|
|
|
|
|
<p>
|
|
|
|
|
<Trans i18nKey="repos:changeset.summary" components={[id, date]} />
|
|
|
|
|
</p>
|
2021-02-24 08:17:40 +01:00
|
|
|
{parents && parents?.length > 0 ? (
|
2020-11-27 08:49:10 +01:00
|
|
|
<SeparatedParents>
|
|
|
|
|
{t("changeset.parents.label", { count: parents?.length }) + ": "}
|
|
|
|
|
{parents}
|
|
|
|
|
</SeparatedParents>
|
2021-02-24 08:17:40 +01:00
|
|
|
) : null}
|
2020-11-27 08:49:10 +01:00
|
|
|
</ChangesetSummary>
|
|
|
|
|
</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"
|
2020-11-30 10:01:21 +01:00
|
|
|
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
|
2021-02-24 08:17:40 +01:00
|
|
|
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
|
|
|
|
|
name="changeset.description"
|
|
|
|
|
props={{
|
|
|
|
|
changeset,
|
|
|
|
|
value: item
|
|
|
|
|
}}
|
|
|
|
|
renderAll={false}
|
|
|
|
|
>
|
|
|
|
|
<ChangesetDescription changeset={changeset} value={item} />
|
|
|
|
|
</ExtensionPoint>
|
|
|
|
|
<br />
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<BottomMarginLevel
|
|
|
|
|
right={
|
|
|
|
|
<Button
|
|
|
|
|
action={collapseDiffs}
|
|
|
|
|
color="default"
|
|
|
|
|
icon={collapsed ? "eye" : "eye-slash"}
|
|
|
|
|
label={t("changesets.collapseDiffs")}
|
|
|
|
|
reducedMobile={true}
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<ChangesetDiff changeset={changeset} fileControlFactory={fileControlFactory} defaultCollapse={collapsed} />
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
2018-10-18 14:40:35 +02:00
|
|
|
|
2021-02-24 08:17:40 +01:00
|
|
|
export default ChangesetDetails;
|