mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 06:55:47 +01:00
use reflow to migrate from flow to typescript
This commit is contained in:
122
scm-ui/ui-components/src/Breadcrumb.tsx
Normal file
122
scm-ui/ui-components/src/Breadcrumb.tsx
Normal file
@@ -0,0 +1,122 @@
|
||||
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';
|
||||
|
||||
type Props = {
|
||||
repository: Repository;
|
||||
branch: Branch;
|
||||
defaultBranch: Branch;
|
||||
branches: Branch[];
|
||||
revision: string;
|
||||
path: string;
|
||||
baseUrl: string;
|
||||
|
||||
// Context props
|
||||
t: (p: 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;
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="is-flex">
|
||||
<FlexStartNav
|
||||
className={classNames('breadcrumb', 'sources-breadcrumb')}
|
||||
aria-label="breadcrumbs"
|
||||
>
|
||||
<ul>
|
||||
<li>
|
||||
<Link to={baseUrl + '/' + revision + '/'}>
|
||||
<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,
|
||||
path,
|
||||
isBranchUrl:
|
||||
branches &&
|
||||
branches.filter(
|
||||
b => b.name.replace('/', '%2F') === revision,
|
||||
).length > 0,
|
||||
repository,
|
||||
}}
|
||||
renderAll={true}
|
||||
/>
|
||||
</ActionWrapper>
|
||||
)}
|
||||
</div>
|
||||
<hr className="is-marginless" />
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default translate('commons')(Breadcrumb);
|
||||
Reference in New Issue
Block a user