add instructions to checkout tags

This commit is contained in:
Eduard Heimbuch
2020-09-16 14:11:27 +02:00
parent f9b3d14541
commit 909f5ebec9
13 changed files with 193 additions and 8 deletions

View File

@@ -0,0 +1,53 @@
/*
* 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 { Tag, Repository } from "@scm-manager/ui-types";
import { Button, ButtonAddons } from "@scm-manager/ui-components";
import { useTranslation } from "react-i18next";
type Props = {
repository: Repository;
tag: Tag;
};
const TagButtonGroup: FC<Props> = ({ repository, tag }) => {
const [t] = useTranslation("repos");
const changesetLink = `/repo/${repository.namespace}/${repository.name}/code/changeset/${encodeURIComponent(
tag.revision
)}`;
const sourcesLink = `/repo/${repository.namespace}/${repository.name}/sources/${encodeURIComponent(tag.revision)}/`;
return (
<>
<ButtonAddons>
<Button link={changesetLink} icon="exchange-alt" label={t("tag.commit")} reducedMobile={true} />
<Button link={sourcesLink} icon="code" label={t("tag.sources")} reducedMobile={true} />
</ButtonAddons>
</>
);
};
export default TagButtonGroup;

View File

@@ -24,13 +24,25 @@
import React, { FC } from "react";
import { useTranslation } from "react-i18next";
import { Tag } from "@scm-manager/ui-types";
import { Repository, Tag } from "@scm-manager/ui-types";
import { DateFromNow } from "@scm-manager/ui-components";
import styled from "styled-components";
import TagButtonGroup from "./TagButtonGroup";
type Props = {
repository: Repository;
tag?: Tag;
};
const TagDetail: FC<Props> = ({ tag }) => {
const Created = styled.div`
margin-top: 0.5rem;
`;
const Date = styled(DateFromNow)`
font-size: 1rem;
`;
const TagDetail: FC<Props> = ({ tag, repository }) => {
const [t] = useTranslation("repos");
if (!tag) {
@@ -40,7 +52,13 @@ const TagDetail: FC<Props> = ({ tag }) => {
return (
<div className="media">
<div className="media-content subtitle">
<strong>{t("tag.name")}</strong> {tag?.name}
<strong>{t("tag.name") + ":"}</strong> {tag?.name}
<Created className="is-ellipsis-overflow">
<strong>{t("tags.overview.created") + ":"}</strong> <Date date={tag.date} className="has-text-grey" />
</Created>
</div>
<div className="media-right">
<TagButtonGroup repository={repository} tag={tag} />
</div>
</div>
);

View File

@@ -35,7 +35,7 @@ type Props = {
const TagView: FC<Props> = ({ repository, tag }) => {
return (
<div>
<TagDetail tag={tag} />
<TagDetail tag={tag} repository={repository} />
<hr />
<div className="content">
<ExtensionPoint