transfer frontend changes to typescript files

This commit is contained in:
Eduard Heimbuch
2019-10-25 12:38:48 +02:00
parent 949a8fe4f1
commit 6e0c788c98
4 changed files with 19 additions and 374 deletions

View File

@@ -1,129 +0,0 @@
//@flow
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 type { Branch, Repository } from "@scm-manager/ui-types";
import Icon from "./Icon";
type Props = {
repository: Repository,
branch: Branch,
defaultBranch: Branch,
branches: Branch[],
revision: string,
path: string,
baseUrl: string,
// Context props
t: string => 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<Props> {
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 (
<li className="is-active" key={index}>
<Link to="#" aria-current="page">
{path}
</Link>
</li>
);
}
return (
<li key={index}>
<Link to={baseUrl + "/" + revision + "/" + currPath}>{path}</Link>
</li>
);
});
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 (
<>
<div className="is-flex">
<FlexStartNav
className={classNames("breadcrumb", "sources-breadcrumb")}
aria-label="breadcrumbs"
>
<ul>
<li>
<Link to={homeUrl}>
<HomeIcon
title={t("breadcrumb.home")}
name="home"
color="inherit"
/>
</Link>
</li>
{this.renderPath()}
</ul>
</FlexStartNav>
{binder.hasExtension("repos.sources.actionbar") && (
<ActionWrapper>
<ExtensionPoint
name="repos.sources.actionbar"
props={{
baseUrl,
branch: branch ? branch : defaultBranch,
revision: branches ? undefined : revision,
path,
isBranchUrl: branches
? branches.filter(
b => b.name.replace("/", "%2F") === revision
).length > 0
: true,
repository
}}
renderAll={true}
/>
</ActionWrapper>
)}
</div>
<hr className="is-marginless" />
</>
);
}
}
export default translate("commons")(Breadcrumb);

View File

@@ -61,13 +61,18 @@ class Breadcrumb extends React.Component<Props> {
render() {
const { baseUrl, branch, defaultBranch, branches, revision, path, repository, t } = this.props;
let homeUrl = baseUrl + "/";
if (revision) {
homeUrl += encodeURIComponent(revision) + "/";
}
return (
<>
<div className="is-flex">
<FlexStartNav className={classNames("breadcrumb", "sources-breadcrumb")} aria-label="breadcrumbs">
<ul>
<li>
<Link to={baseUrl + "/" + revision + "/"}>
<Link to={homeUrl}>
<HomeIcon title={t("breadcrumb.home")} name="home" color="inherit" />
</Link>
</li>