Files
outline/app/components/NavLink.tsx
Tom Moor 48893f727e fix: Tabs on document references don't show active state
'Referenced by' -> 'Backlinks'
2022-04-17 11:42:55 -07:00

31 lines
781 B
TypeScript

import * as React from "react";
import { NavLink, Route } from "react-router-dom";
type Props = React.ComponentProps<typeof NavLink> & {
children?: (match: any) => React.ReactNode;
exact?: boolean;
activeStyle?: React.CSSProperties;
to: string;
};
function NavLinkWithChildrenFunc(
{ to, exact = false, children, ...rest }: Props,
ref?: React.Ref<HTMLAnchorElement>
) {
return (
<Route path={to} exact={exact}>
{({ match, location }) => (
<NavLink {...rest} to={to} exact={exact} ref={ref}>
{children
? children(rest.isActive ? rest.isActive(match, location) : match)
: null}
</NavLink>
)}
</Route>
);
}
export default React.forwardRef<HTMLAnchorElement, Props>(
NavLinkWithChildrenFunc
);