mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 17:56:17 +01:00
display tag signature
This commit is contained in:
@@ -26,6 +26,7 @@ import {Collection, Link, Links} from "./hal";
|
|||||||
import { Tag } from "./Tags";
|
import { Tag } from "./Tags";
|
||||||
import { Branch } from "./Branches";
|
import { Branch } from "./Branches";
|
||||||
import { Person } from "./Person";
|
import { Person } from "./Person";
|
||||||
|
import {Signature} from "./Signature";
|
||||||
|
|
||||||
export type Changeset = Collection & {
|
export type Changeset = Collection & {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -42,16 +43,7 @@ export type Changeset = Collection & {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Signature = {
|
|
||||||
keyId: string;
|
|
||||||
type: string;
|
|
||||||
status: "VERIFIED" | "NOT_FOUND" | "INVALID";
|
|
||||||
owner?: string;
|
|
||||||
contacts?: Person[];
|
|
||||||
_links?: {
|
|
||||||
rawKey?: Link;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export type Contributor = {
|
export type Contributor = {
|
||||||
person: Person;
|
person: Person;
|
||||||
|
|||||||
37
scm-ui/ui-types/src/Signature.ts
Normal file
37
scm-ui/ui-types/src/Signature.ts
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* 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 { Person } from "./Person";
|
||||||
|
import { Link } from "./hal";
|
||||||
|
|
||||||
|
export type Signature = {
|
||||||
|
keyId: string;
|
||||||
|
type: string;
|
||||||
|
status: "VERIFIED" | "NOT_FOUND" | "INVALID";
|
||||||
|
owner?: string;
|
||||||
|
contacts?: Person[];
|
||||||
|
_links?: {
|
||||||
|
rawKey?: Link;
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -23,10 +23,12 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { Links } from "./hal";
|
import { Links } from "./hal";
|
||||||
|
import {Signature} from "./Signature";
|
||||||
|
|
||||||
export type Tag = {
|
export type Tag = {
|
||||||
name: string;
|
name: string;
|
||||||
revision: string;
|
revision: string;
|
||||||
date?: Date;
|
date?: Date;
|
||||||
|
signatures: Signature[];
|
||||||
_links: Links;
|
_links: Links;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
import React, { FC } from "react";
|
import React, { FC } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { Repository, Tag } from "@scm-manager/ui-types";
|
import { Repository, Tag } from "@scm-manager/ui-types";
|
||||||
import { DateFromNow } from "@scm-manager/ui-components";
|
import { DateFromNow, SignatureIcon } from "@scm-manager/ui-components";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import TagButtonGroup from "./TagButtonGroup";
|
import TagButtonGroup from "./TagButtonGroup";
|
||||||
|
|
||||||
@@ -58,9 +58,10 @@ const TagDetail: FC<Props> = ({ tag, repository }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="media">
|
<div className="media">
|
||||||
<FlexRow className="media-content subtitle">
|
<FlexRow className="media-content">
|
||||||
<Label>{t("tag.name") + ": "} </Label> {tag.name}
|
<Label className="subtitle has-text-weight-bold has-text-black">{t("tag.name") + ": "} </Label> <span className="subtitle">{tag.name}</span>
|
||||||
<Created className="is-ellipsis-overflow">
|
<SignatureIcon signatures={tag.signatures} className="ml-2 mb-5" />
|
||||||
|
<Created className="is-ellipsis-overflow mb-5">
|
||||||
{t("tags.overview.created")} <Date date={tag.date} className="has-text-grey" />
|
{t("tags.overview.created")} <Date date={tag.date} className="has-text-grey" />
|
||||||
</Created>
|
</Created>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
|||||||
Reference in New Issue
Block a user