/*
* 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";
import { devices } from "./devices";
type Props = {
repository: Repository;
branch?: Branch;
defaultBranch?: Branch;
clickable?: boolean;
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;
@media screen and (min-width: ${devices.tablet.width}px) {
margin-left: 0.25rem;
}
@media screen and (max-width: ${devices.mobile.width}px) {
margin-left: auto;
}
i {
color: #dbdbdb;
opacity: 0.75;
}
&:hover i {
color: #b5b5b5;
opacity: 1;
}
`;
const BreadcrumbNav = styled.nav`
flex: 1;
@media screen and (max-width: ${devices.mobile.width}px) {
flex-wrap: wrap;
}
/* move slash to end */
li + li::before {
content: none;
}
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 BreadcrumbNode: FC<{ clickable: boolean; text: string; url: string; current?: boolean }> = ({
clickable,
text,
url,
current
}) => {
if (clickable) {
return (
{text}
);
} else {
return (
{text}
);
}
};
const Breadcrumb: FC = ({
repository,
branch,
defaultBranch,
revision,
path,
baseUrl,
sources,
permalink,
preButtons,
clickable = true
}) => {
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) => {
const decodedPathFragment = decodeURIComponent(pathFragment);
let currPath = paths
.slice(0, index + 1)
.map(encodeURIComponent)
.join("/");
if (!currPath.endsWith("/")) {
currPath = currPath + "/";
}
if (paths.length - 1 === index) {
return (