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

123 lines
2.9 KiB
TypeScript
Raw Normal View History

import React from "react";
import { Link } from "react-router-dom";
import { translate } 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";
2019-06-26 15:06:59 +02:00
type Props = {
repository: Repository;
branch: Branch;
defaultBranch: Branch;
branches: Branch[];
revision: string;
path: string;
baseUrl: string;
2019-09-25 09:15:33 +02:00
// Context props
t: (p: string) => string;
2019-06-26 15:17:16 +02:00
};
const FlexStartNav = styled.nav`
flex: 1;
`;
const HomeIcon = styled(Icon)`
line-height: 1.5rem;
`;
const ActionWrapper = styled.div`
align-self: center;
padding-right: 1rem;
`;
2019-06-26 15:06:59 +02:00
class Breadcrumb extends React.Component<Props> {
renderPath() {
const { revision, path, baseUrl } = this.props;
2019-06-26 15:06:59 +02:00
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 (
<li className="is-active" key={index}>
2019-09-25 09:15:33 +02:00
<Link to="#" aria-current="page">
{path}
</Link>
</li>
);
}
return (
<li key={index}>
<Link to={baseUrl + "/" + revision + "/" + currPath}>{path}</Link>
</li>
);
});
return map;
2019-06-26 15:06:59 +02:00
}
2019-09-25 09:15:33 +02:00
return null;
}
render() {
2019-09-10 16:36:32 +02:00
const {
baseUrl,
branch,
defaultBranch,
branches,
revision,
path,
2019-09-25 09:15:33 +02:00
repository,
t
2019-09-10 16:36:32 +02:00
} = this.props;
return (
<>
<div className="is-flex">
<FlexStartNav
className={classNames("breadcrumb", "sources-breadcrumb")}
2019-09-10 16:36:32 +02:00
aria-label="breadcrumbs"
>
2019-09-25 09:15:33 +02:00
<ul>
<li>
<Link to={baseUrl + "/" + revision + "/"}>
<HomeIcon
title={t("breadcrumb.home")}
2019-09-25 09:15:33 +02:00
name="home"
color="inherit"
/>
</Link>
</li>
{this.renderPath()}
</ul>
</FlexStartNav>
{binder.hasExtension("repos.sources.actionbar") && (
<ActionWrapper>
2019-09-10 16:36:32 +02:00
<ExtensionPoint
name="repos.sources.actionbar"
props={{
baseUrl,
branch: branch ? branch : defaultBranch,
path,
isBranchUrl:
branches &&
branches.filter(
b => b.name.replace("/", "%2F") === revision
2019-09-10 16:36:32 +02:00
).length > 0,
repository
2019-09-10 16:36:32 +02:00
}}
renderAll={true}
/>
</ActionWrapper>
2019-09-10 16:36:32 +02:00
)}
</div>
<hr className="is-marginless" />
</>
);
2019-06-26 15:06:59 +02:00
}
}
export default translate("commons")(Breadcrumb);