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 18:02:52 +02:00
|
|
|
import React from "react";
|
2019-10-23 15:47:08 +02:00
|
|
|
import { Trans, WithTranslation, withTranslation } 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";
|
|
|
|
|
import { Changeset, Repository, Tag } 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,
|
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-01-08 15:57:13 +01:00
|
|
|
ChangesetTag,
|
|
|
|
|
DateFromNow,
|
|
|
|
|
Level
|
2019-10-20 18:02:52 +02:00
|
|
|
} from "@scm-manager/ui-components";
|
2020-05-28 11:45:15 +02:00
|
|
|
import { TrailerPerson } from "@scm-manager/ui-types/src/Changesets";
|
2018-12-10 08:45:59 +01:00
|
|
|
|
2019-10-23 15:47:08 +02:00
|
|
|
type Props = WithTranslation & {
|
2019-10-19 16:38:07 +02:00
|
|
|
changeset: Changeset;
|
|
|
|
|
repository: Repository;
|
2018-10-18 14:40:35 +02:00
|
|
|
};
|
|
|
|
|
|
2019-10-10 11:37:14 +02:00
|
|
|
type State = {
|
2019-10-19 16:38:07 +02:00
|
|
|
collapsed: boolean;
|
2019-10-10 11:37:14 +02:00
|
|
|
};
|
|
|
|
|
|
2019-10-09 16:17:02 +02:00
|
|
|
const RightMarginP = styled.p`
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const TagsWrapper = styled.div`
|
|
|
|
|
& .tag {
|
|
|
|
|
margin-left: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
2019-10-10 11:37:14 +02:00
|
|
|
const BottomMarginLevel = styled(Level)`
|
|
|
|
|
margin-bottom: 1rem !important;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-05-28 11:45:15 +02:00
|
|
|
const SizedTd = styled.td`
|
|
|
|
|
width: 10rem;
|
|
|
|
|
`;
|
|
|
|
|
|
2019-10-10 11:37:14 +02:00
|
|
|
class ChangesetDetails extends React.Component<Props, State> {
|
|
|
|
|
constructor(props: Props) {
|
|
|
|
|
super(props);
|
|
|
|
|
this.state = {
|
2019-10-20 18:02:52 +02:00
|
|
|
collapsed: false
|
2019-10-10 11:37:14 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-28 11:45:15 +02:00
|
|
|
collectAvailableTrailerTypes() {
|
|
|
|
|
const { changeset } = this.props;
|
|
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
return [...new Set(changeset.trailerPersons.map(person => person.trailerType))];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getTrailersByType(type: string) {
|
|
|
|
|
const { changeset } = this.props;
|
|
|
|
|
return changeset.trailerPersons?.filter(person => person.trailerType === type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getTrailerPersonsByType() {
|
|
|
|
|
const availableTrailerTypes: string[] = this.collectAvailableTrailerTypes();
|
|
|
|
|
|
|
|
|
|
let type;
|
|
|
|
|
let trailerPersons = [];
|
|
|
|
|
for (type of availableTrailerTypes) {
|
|
|
|
|
trailerPersons.push({ type, persons: this.getTrailersByType(type) });
|
|
|
|
|
}
|
|
|
|
|
return trailerPersons;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-18 14:40:35 +02:00
|
|
|
render() {
|
2019-10-10 11:37:14 +02:00
|
|
|
const { changeset, repository, t } = this.props;
|
|
|
|
|
const { collapsed } = this.state;
|
2018-10-18 14:40:35 +02:00
|
|
|
|
2018-12-10 08:45:59 +01:00
|
|
|
const description = changesets.parseDescription(changeset.description);
|
2019-10-21 10:57:56 +02:00
|
|
|
const id = <ChangesetId repository={repository} changeset={changeset} link={false} />;
|
2018-12-27 13:48:55 +01:00
|
|
|
const date = <DateFromNow date={changeset.date} />;
|
2018-10-18 14:40:35 +02:00
|
|
|
|
2020-05-28 11:45:15 +02:00
|
|
|
const trailerPersons = this.getTrailerPersonsByType();
|
|
|
|
|
|
|
|
|
|
const trailerTable = (
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<SizedTd>{t("changeset.author.label") + ":"}</SizedTd>
|
|
|
|
|
<td>
|
|
|
|
|
<a title={changeset?.author?.mail} href={"mailto:" + changeset?.author?.mail}>
|
|
|
|
|
{changeset?.author?.name}
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{trailerPersons.map(p => (
|
|
|
|
|
<tr>
|
|
|
|
|
<SizedTd>{t("changeset.trailer.type." + p.type) + ":"}</SizedTd>
|
|
|
|
|
<td className="shorten-text is-marginless">
|
|
|
|
|
{p.persons
|
|
|
|
|
.map(person => (
|
|
|
|
|
<a title={person.mail} href={"mailto:" + person.mail}>
|
|
|
|
|
{person.name}
|
|
|
|
|
</a>
|
|
|
|
|
))
|
|
|
|
|
.reduce((prev, curr) => [prev, ", ", curr])}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
))}
|
|
|
|
|
</table>
|
|
|
|
|
);
|
|
|
|
|
|
2018-10-18 14:40:35 +02:00
|
|
|
return (
|
2019-10-10 11:37:14 +02:00
|
|
|
<>
|
2019-10-20 18:02:52 +02:00
|
|
|
<div className={classNames("content", "is-marginless")}>
|
2019-01-16 16:25:18 +01:00
|
|
|
<h4>
|
|
|
|
|
<ExtensionPoint
|
2019-02-07 11:57:06 +01:00
|
|
|
name="changeset.description"
|
2019-10-19 16:38:07 +02:00
|
|
|
props={{
|
|
|
|
|
changeset,
|
2019-10-20 18:02:52 +02:00
|
|
|
value: description.title
|
2019-10-19 16:38:07 +02:00
|
|
|
}}
|
2019-01-25 12:35:16 +01:00
|
|
|
renderAll={false}
|
2019-01-16 16:25:18 +01:00
|
|
|
>
|
|
|
|
|
{description.title}
|
|
|
|
|
</ExtensionPoint>
|
|
|
|
|
</h4>
|
2018-10-26 16:26:55 +02:00
|
|
|
<article className="media">
|
|
|
|
|
<AvatarWrapper>
|
2019-10-20 18:02:52 +02:00
|
|
|
<RightMarginP className={classNames("image", "is-64x64")}>
|
2018-12-10 14:55:42 +01:00
|
|
|
<AvatarImage person={changeset.author} />
|
2019-10-09 16:17:02 +02:00
|
|
|
</RightMarginP>
|
2018-10-26 16:26:55 +02:00
|
|
|
</AvatarWrapper>
|
|
|
|
|
<div className="media-content">
|
2020-05-28 11:45:15 +02:00
|
|
|
{trailerTable}
|
2018-10-26 16:26:55 +02:00
|
|
|
<p>
|
2019-10-24 13:41:54 +02:00
|
|
|
<Trans i18nKey="repos:changeset.summary" components={[id, date]} />
|
2018-10-26 16:26:55 +02:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="media-right">{this.renderTags()}</div>
|
|
|
|
|
</article>
|
2019-01-16 16:25:18 +01:00
|
|
|
|
|
|
|
|
<p>
|
2019-10-20 18:02:52 +02:00
|
|
|
{description.message.split("\n").map((item, key) => {
|
2019-01-16 16:25:18 +01:00
|
|
|
return (
|
|
|
|
|
<span key={key}>
|
|
|
|
|
<ExtensionPoint
|
2019-02-07 11:57:06 +01:00
|
|
|
name="changeset.description"
|
2019-10-19 16:38:07 +02:00
|
|
|
props={{
|
|
|
|
|
changeset,
|
2019-10-20 18:02:52 +02:00
|
|
|
value: item
|
2019-10-19 16:38:07 +02:00
|
|
|
}}
|
2019-01-25 12:35:16 +01:00
|
|
|
renderAll={false}
|
2019-01-16 16:25:18 +01:00
|
|
|
>
|
2018-12-27 13:57:45 +01:00
|
|
|
{item}
|
2019-01-16 16:25:18 +01:00
|
|
|
</ExtensionPoint>
|
|
|
|
|
<br />
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</p>
|
2018-10-26 16:26:55 +02:00
|
|
|
</div>
|
|
|
|
|
<div>
|
2019-10-10 11:37:14 +02:00
|
|
|
<BottomMarginLevel
|
|
|
|
|
right={
|
|
|
|
|
<Button
|
|
|
|
|
action={this.collapseDiffs}
|
|
|
|
|
color="default"
|
2019-10-20 18:02:52 +02:00
|
|
|
icon={collapsed ? "eye" : "eye-slash"}
|
|
|
|
|
label={t("changesets.collapseDiffs")}
|
2019-10-10 11:37:14 +02:00
|
|
|
reducedMobile={true}
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<ChangesetDiff changeset={changeset} defaultCollapse={collapsed} />
|
2018-10-26 16:26:55 +02:00
|
|
|
</div>
|
2019-10-10 11:37:14 +02:00
|
|
|
</>
|
2018-10-18 14:40:35 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getTags = () => {
|
2019-10-09 16:17:02 +02:00
|
|
|
return this.props.changeset._embedded.tags || [];
|
2018-10-18 14:40:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
renderTags = () => {
|
|
|
|
|
const tags = this.getTags();
|
|
|
|
|
if (tags.length > 0) {
|
|
|
|
|
return (
|
2019-10-09 16:17:02 +02:00
|
|
|
<TagsWrapper className="level-item">
|
2018-10-18 14:40:35 +02:00
|
|
|
{tags.map((tag: Tag) => {
|
2018-12-27 13:48:55 +01:00
|
|
|
return <ChangesetTag key={tag.name} tag={tag} />;
|
2018-10-18 14:40:35 +02:00
|
|
|
})}
|
2019-10-09 16:17:02 +02:00
|
|
|
</TagsWrapper>
|
2018-10-18 14:40:35 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
};
|
2019-10-10 11:37:14 +02:00
|
|
|
|
|
|
|
|
collapseDiffs = () => {
|
|
|
|
|
this.setState(state => ({
|
2019-10-20 18:02:52 +02:00
|
|
|
collapsed: !state.collapsed
|
2019-10-10 11:37:14 +02:00
|
|
|
}));
|
|
|
|
|
};
|
2018-10-18 14:40:35 +02:00
|
|
|
}
|
|
|
|
|
|
2019-10-23 15:47:08 +02:00
|
|
|
export default withTranslation("repos")(ChangesetDetails);
|