53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import { useRouter } from 'next/router';
|
|
import classNames from 'classnames';
|
|
import { Vega } from '../icons/vega';
|
|
import Link from 'next/link';
|
|
|
|
export const Navbar = () => {
|
|
const navClasses = classNames(
|
|
'flex items-center',
|
|
'border-neutral-200 border-b'
|
|
);
|
|
return (
|
|
<nav className={navClasses}>
|
|
<Link href="/" passHref={true}>
|
|
<a className="px-8">
|
|
<Vega />
|
|
</a>
|
|
</Link>
|
|
{[
|
|
{ name: 'Portfolio', path: '/portfolio' },
|
|
{ name: 'Markets', path: '/markets' },
|
|
].map((route) => (
|
|
<NavLink key={route.path} {...route} />
|
|
))}
|
|
</nav>
|
|
);
|
|
};
|
|
|
|
interface NavLinkProps {
|
|
name: string;
|
|
path: string;
|
|
}
|
|
|
|
const NavLink = ({ name, path }: NavLinkProps) => {
|
|
const router = useRouter();
|
|
const className = classNames('inline-block', 'p-8', {
|
|
// Handle direct math and child page matches
|
|
'text-vega-pink': router.asPath === path || router.asPath.startsWith(path),
|
|
});
|
|
|
|
return (
|
|
<a
|
|
className={className}
|
|
href={path}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
router.push(path);
|
|
}}
|
|
>
|
|
{name}
|
|
</a>
|
|
);
|
|
};
|