import React from 'react'; import classnames from 'classnames'; import { useLocation } from 'react-router-dom'; import { Link as BaseLink } from '@teambit/base-react.navigation.link'; import type { NavPluginProps } from '../menu/nav-plugin'; import styles from './top-bar-nav.module.scss'; // @todo - this will be fixed as part of the @teambit/base-react.navigation.link upgrade to latest const Link = BaseLink as any; export function TopBarNav({ href, className, activeClassName, children, displayName, ignoreQueryParams, ...rest }: NavPluginProps) { const { search } = useLocation(); // sticky query params // @hack - this is so that the displayName will not pass to the link and cause a warning in the console. // it is used for component page nav link widgets (code, aspects etc), // but not for regular menu links (overview, compositions, etc). // eslint-disable-next-line @typescript-eslint/no-unused-vars const preventPassingDisplayNameToLink = displayName; const target = (href && !ignoreQueryParams && `${href}${search}`) || href; return (
{children}
); }