Files
SCM-Manager/scm-ui/ui-components/src/Breadcrumb.tsx

256 lines
7.1 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.
*/
import React, { FC, useState } from "react";
import { useTranslation } from "react-i18next";
import { Link, useHistory, useLocation } from "react-router-dom";
import classNames from "classnames";
import styled from "styled-components";
import { urls } from "@scm-manager/ui-api";
import { Branch, File, Repository } from "@scm-manager/ui-types";
import { binder, ExtensionPoint, extensionPoints } from "@scm-manager/ui-extensions";
import Icon from "./Icon";
import Tooltip from "./Tooltip";
import copyToClipboard from "./CopyToClipboard";
2019-06-26 15:06:59 +02:00
type Props = {
repository: Repository;
branch?: Branch;
defaultBranch?: Branch;
revision: string;
path: string;
baseUrl: string;
2019-10-28 15:52:59 +01:00
sources: File;
preButtons?: React.ReactNode;
permalink: string | null;
2019-06-26 15:17:16 +02:00
};
const PermaLinkWrapper = styled.span`
width: 16px;
height: 16px;
font-size: 13px;
i {
color: #dbdbdb;
opacity: 0.75;
}
&:hover i {
color: #b5b5b5;
opacity: 1;
}
`;
const BreadcrumbNav = styled.nav`
flex: 1;
display: flex;
align-items: center;
width: 100%;
/* move slash to end */
li + li::before {
content: none;
}
li:not(:last-child)::after {
color: #b5b5b5; //$breadcrumb-item-separator-color
content: "\\0002f";
}
li:first-child {
margin-left: 0.75rem;
}
/* sizing of each item */
li {
max-width: 375px;
a {
display: initial;
}
}
`;
const HomeIcon = styled(Icon)`
line-height: 1.5rem;
`;
const ActionBar = styled.div`
/* ensure space between action bar items */
& > * {
/*
* We have to use important, because plugins could use field or control classes like the editor-plugin does.
* Those classes overwrite the margin which is ok, if the plugin is the only one which is using the actionbar.
* But it looks terrible if another plugin use the actionbar, which does not use field and control classes.
*/
margin: 0 0.75rem 0 0 !important;
}
`;
2019-06-26 15:06:59 +02:00
// TODO ersetzen?
const PrefixButton = styled.div`
border-right: 1px solid lightgray;
`;
const Breadcrumb: FC<Props> = ({
repository,
branch,
defaultBranch,
revision,
path,
baseUrl,
sources,
permalink,
preButtons
}) => {
const location = useLocation();
const history = useHistory();
const [copying, setCopying] = useState(false);
const [t] = useTranslation("commons");
2019-06-26 15:06:59 +02:00
const pathSection = () => {
2019-06-26 15:06:59 +02:00
if (path) {
const paths = path.split("/");
return paths.map((pathFragment, index) => {
let currPath = paths
.slice(0, index + 1)
.map(encodeURIComponent)
.join("/");
if (!currPath.endsWith("/")) {
currPath = currPath + "/";
}
if (paths.length - 1 === index) {
return (
<li className="is-active" key={index}>
<Link className="is-ellipsis-overflow" to="#" aria-current="page">
{decodeURIComponent(pathFragment)}
</Link>
</li>
);
}
return (
<li key={index}>
<Link
className="is-ellipsis-overflow"
title={pathFragment}
to={baseUrl + "/" + encodeURIComponent(revision) + "/" + currPath}
>
{decodeURIComponent(pathFragment)}
</Link>
</li>
);
});
2019-06-26 15:06:59 +02:00
}
2019-09-25 09:15:33 +02:00
return null;
};
const copySource = () => {
history.push(location.pathname);
setCopying(true);
copyToClipboard(
window.location.protocol + "//" + window.location.host + urls.withContextPath(permalink || location.pathname)
).finally(() => setCopying(false));
};
const renderBreadcrumbNav = () => {
let prefixButtons = null;
if (preButtons) {
prefixButtons = <PrefixButton className="mr-2">{preButtons}</PrefixButton>;
}
let homeUrl = baseUrl + "/";
if (revision) {
homeUrl += encodeURIComponent(revision) + "/";
} else {
homeUrl = `/repo/${repository.namespace}/${repository.name}/code/sources/`;
}
return (
<BreadcrumbNav
className={classNames("breadcrumb", "sources-breadcrumb", "mx-2", "my-4")}
aria-label="breadcrumbs"
>
{prefixButtons}
<ul>
<li>
<Link to={homeUrl} aria-label={t("breadcrumb.home")}>
<HomeIcon title={t("breadcrumb.home")} name="home" color="inherit" />
</Link>
</li>
{pathSection()}
</ul>
<PermaLinkWrapper className="ml-1" tabIndex={0} onKeyDown={e => e.key === "Enter" && copySource()}>
{copying ? (
<Icon name="spinner fa-spin" alt={t("breadcrumb.loading")} />
) : (
<Tooltip message={t("breadcrumb.copyPermalink")}>
<Icon name="link" color="inherit" onClick={() => copySource()} alt={t("breadcrumb.copyPermalink")} />
</Tooltip>
)}
</PermaLinkWrapper>
</BreadcrumbNav>
);
};
const extProps = {
baseUrl,
revision: revision ? encodeURIComponent(revision) : "",
branch: branch ? branch : defaultBranch,
path,
sources,
repository
};
const renderExtensionPoints = () => {
if (
binder.hasExtension<extensionPoints.ReposSourcesEmptyActionbar>("repos.sources.empty.actionbar") &&
sources?._embedded?.children?.length === 0
) {
return <ExtensionPoint name="repos.sources.empty.actionbar" props={{ repository, sources }} renderAll={true} />;
}
if (binder.hasExtension<extensionPoints.ReposSourcesActionbar>("repos.sources.actionbar")) {
return <ExtensionPoint name="repos.sources.actionbar" props={extProps} renderAll={true} />;
}
return null;
};
return (
<>
<div className={classNames("is-flex", "is-justify-content-flex-end", "is-align-items-center")}>
{renderBreadcrumbNav()}
{
<ActionBar className={classNames("is-flex", "is-justify-content-flex-start", "is-align-self-center", "my-2")}>
{renderExtensionPoints()}
</ActionBar>
}
</div>
<hr className="m-0" />
</>
);
};
2019-06-26 15:06:59 +02:00
export default Breadcrumb;