-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavItem.tsx
31 lines (28 loc) · 851 Bytes
/
NavItem.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { NavItemProps } from '@/types/components/global';
import Link from 'next/link';
import useNavigationContext from '@/context/navigationContext';
import { ForwardedRef, forwardRef } from 'react';
import classNames from 'classnames';
function NavItem(
{ href, title, onClick, className, style }: NavItemProps,
ref: ForwardedRef<HTMLAnchorElement>,
) {
const { currentRoute } = useNavigationContext();
const isActive = currentRoute === href;
return (
<span>
<Link
href={href}
className={classNames({
[className]: isActive,
})}
ref={ref}
onClick={onClick}
style={style}
>
{title}
</Link>
</span>
);
}
export default forwardRef(NavItem);