2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
2019-10-20 16:59:02 +02:00
|
|
|
import * as React from "react";
|
|
|
|
|
import classNames from "classnames";
|
2020-03-31 08:26:01 +02:00
|
|
|
import { Link, useRouteMatch } from "react-router-dom";
|
|
|
|
|
import { RoutingProps } from "./RoutingProps";
|
|
|
|
|
import { FC } from "react";
|
2020-03-31 12:02:30 +02:00
|
|
|
import useMenuContext from "./MenuContext";
|
2020-06-17 14:49:54 +02:00
|
|
|
import useActiveMatch from "./useActiveMatch";
|
2018-09-03 16:17:36 +02:00
|
|
|
|
2020-03-31 08:26:01 +02:00
|
|
|
type Props = RoutingProps & {
|
2019-10-19 16:38:07 +02:00
|
|
|
label: string;
|
2020-02-25 17:15:23 +01:00
|
|
|
title?: string;
|
2020-03-31 08:26:01 +02:00
|
|
|
icon?: string;
|
2018-09-03 16:17:36 +02:00
|
|
|
};
|
|
|
|
|
|
2020-06-17 14:49:54 +02:00
|
|
|
const NavLink: FC<Props> = ({ to, activeWhenMatch, activeOnlyWhenExact, icon, label, title }) => {
|
|
|
|
|
const active = useActiveMatch({to, activeWhenMatch, activeOnlyWhenExact});
|
2018-12-21 13:41:34 +01:00
|
|
|
|
2020-03-31 08:26:01 +02:00
|
|
|
const context = useMenuContext();
|
|
|
|
|
const collapsed = context.isCollapsed();
|
2018-12-21 13:41:34 +01:00
|
|
|
|
2020-03-31 08:26:01 +02:00
|
|
|
let showIcon = null;
|
|
|
|
|
if (icon) {
|
|
|
|
|
showIcon = (
|
|
|
|
|
<>
|
|
|
|
|
<i className={classNames(icon, "fa-fw")} />{" "}
|
|
|
|
|
</>
|
2018-09-03 16:17:36 +02:00
|
|
|
);
|
|
|
|
|
}
|
2020-03-31 08:26:01 +02:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<li title={collapsed ? title : undefined}>
|
2020-06-17 14:49:54 +02:00
|
|
|
<Link className={classNames(active ? "is-active" : "", collapsed ? "has-text-centered" : "")} to={to}>
|
2020-03-31 08:26:01 +02:00
|
|
|
{showIcon}
|
|
|
|
|
{collapsed ? null : label}
|
|
|
|
|
</Link>
|
|
|
|
|
</li>
|
|
|
|
|
);
|
|
|
|
|
};
|
2018-09-03 16:17:36 +02:00
|
|
|
|
2020-03-31 12:02:30 +02:00
|
|
|
NavLink.defaultProps = {
|
|
|
|
|
activeOnlyWhenExact: true
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-03 16:17:36 +02:00
|
|
|
export default NavLink;
|