/* * 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"; type Props = { repository: Repository; branch?: Branch; defaultBranch?: Branch; revision: string; path: string; baseUrl: string; sources: File; preButtons?: React.ReactNode; permalink: string | null; }; 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; } `; const PrefixButton = styled.div` border-right: 1px solid lightgray; `; const Breadcrumb: FC = ({ repository, branch, defaultBranch, revision, path, baseUrl, sources, permalink, preButtons }) => { const location = useLocation(); const history = useHistory(); const [copying, setCopying] = useState(false); const [t] = useTranslation("commons"); const pathSection = () => { 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 (
  • {decodeURIComponent(pathFragment)}
  • ); } return (
  • {decodeURIComponent(pathFragment)}
  • ); }); } 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 = {preButtons}; } let homeUrl = baseUrl + "/"; if (revision) { homeUrl += encodeURIComponent(revision) + "/"; } else { homeUrl = `/repo/${repository.namespace}/${repository.name}/code/sources/`; } return ( {prefixButtons} e.key === "Enter" && copySource()}> {copying ? ( ) : ( copySource()} alt={t("breadcrumb.copyPermalink")} /> )} ); }; const extProps = { baseUrl, revision: revision ? encodeURIComponent(revision) : "", branch: branch ? branch : defaultBranch, path, sources, repository }; const renderExtensionPoints = () => { if ( binder.hasExtension("repos.sources.empty.actionbar") && sources?._embedded?.children?.length === 0 ) { return ; } if (binder.hasExtension("repos.sources.actionbar")) { return ; } return null; }; return ( <>
    {renderBreadcrumbNav()} { {renderExtensionPoints()} }

    ); }; export default Breadcrumb;