import React from "react"; import { Link } from "react-router-dom"; import { WithTranslation, withTranslation } from "react-i18next"; import classNames from "classnames"; import styled from "styled-components"; import { binder, ExtensionPoint } from "@scm-manager/ui-extensions"; import { Branch, Repository } from "@scm-manager/ui-types"; import Icon from "./Icon"; type Props = WithTranslation & { repository: Repository; branch: Branch; defaultBranch: Branch; branches: Branch[]; revision: string; path: string; baseUrl: string; }; const FlexStartNav = styled.nav` flex: 1; `; const HomeIcon = styled(Icon)` line-height: 1.5rem; `; const ActionWrapper = styled.div` align-self: center; padding-right: 1rem; `; class Breadcrumb extends React.Component { renderPath() { const { revision, path, baseUrl } = this.props; if (path) { const paths = path.split("/"); const map = paths.map((path, index) => { const currPath = paths.slice(0, index + 1).join("/"); if (paths.length - 1 === index) { return (
  • {path}
  • ); } return (
  • {path}
  • ); }); return map; } return null; } render() { const { baseUrl, branch, defaultBranch, branches, revision, path, repository, t } = this.props; let homeUrl = baseUrl + "/"; if (revision) { homeUrl += encodeURIComponent(revision) + "/"; } return ( <>
    • {this.renderPath()}
    {binder.hasExtension("repos.sources.actionbar") && ( b.name.replace("/", "%2F") === revision).length > 0, repository }} renderAll={true} /> )}

    ); } } export default withTranslation("commons")(Breadcrumb);