Files
SCM-Manager/scm-ui/src/repos/components/RepositoryNavLink.js

36 lines
756 B
JavaScript
Raw Normal View History

2018-09-27 16:32:37 +02:00
//@flow
import React from "react";
import type { Repository } from "@scm-manager/ui-types";
import { NavLink } from "@scm-manager/ui-components";
type Props = {
repository: Repository,
to: string,
label: string,
linkName: string,
activeOnlyWhenExact: boolean
2018-09-27 16:32:37 +02:00
};
/**
* Component renders only if the repository contains the link with the given name.
*/
class RepositoryNavLink extends React.Component<Props> {
render() {
const { linkName, to, label, repository, activeOnlyWhenExact } = this.props;
2018-09-27 16:32:37 +02:00
if (!repository._links[linkName]) {
return null;
}
return (
<NavLink
to={to}
label={label}
activeOnlyWhenExact={activeOnlyWhenExact}
/>
);
2018-09-27 16:32:37 +02:00
}
}
export default RepositoryNavLink;