/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the Chameleon License found in the * LICENSE file in the root directory of this source tree. */ import { ArrowUpRight, Menu, LogoGithub } from "@carbon/icons-react"; export type NavContent = { title: string; description: string; showHomeLink?: boolean; githubLink?: string; navItems: { id: string; url?: string; title: string; showArrowIcon?: boolean; }[]; }; export type NavProps = { position?: "fixed" | "absolute" | "relative"; variant?: string; content: NavContent; selected?: string; logoIconSrc?: string; basePath?: string; handleSelect?: (selected: string) => void; }; export function BasicNavbar({ selected = "", basePath = "/", position, content, logoIconSrc, }: NavProps) { const logoWithLink = () => logoIconSrc ? (
) : null; const desktopMenuItem = (selected: string, id: string) => { return `p-0 m-3 border-b-[1px] bg-transparent rounded-none hover:bg-transparent hover:border-gray-600 focus:border-0 focus:text-primary active:bg-transparent active:text-gray-800 ${ selected === id ? "border-primary" : "border-transparent" }`; }; const getItemLink = (item, className = "") => { const url = item.url ? item.url : `${basePath}${item.id}`; return ( {item.title} {item.showArrowIcon && } ); }; return (
{logoWithLink()}
{content.title}
{content.description}
{/* Desktop menu */}
); }