131 lines
5.0 KiB
TypeScript
131 lines
5.0 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
import { motion, AnimatePresence } from "motion/react";
|
|
import { Plus, ArrowUpRight, ShoppingCart } from "lucide-react";
|
|
import { cls } from "@/lib/utils";
|
|
import Button from "@/components/ui/Button";
|
|
import { useCart } from "@/context/CartContext";
|
|
import { Link } from "react-router-dom";
|
|
|
|
|
|
|
|
|
|
interface NavbarFloatingProps {
|
|
logo: string;
|
|
navItems: { name: string; href: string }[];
|
|
ctaButton: { text: string; href: string };
|
|
}
|
|
|
|
const handleNavClick = (e: React.MouseEvent<HTMLAnchorElement>, href: string, onClose?: () => void) => {
|
|
if (href.startsWith("#")) {
|
|
e.preventDefault();
|
|
const element = document.getElementById(href.slice(1));
|
|
element?.scrollIntoView({ behavior: "smooth", block: "start" });
|
|
}
|
|
onClose?.();
|
|
};
|
|
|
|
const NavbarFloating = ({ logo, navItems, ctaButton }: NavbarFloatingProps) => {
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
const { cartItems } = useCart();
|
|
const cartItemCount = cartItems.reduce((acc, item) => acc + item.quantity, 0);
|
|
|
|
useEffect(() => {
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
if (e.key === "Escape" && menuOpen) setMenuOpen(false);
|
|
};
|
|
document.addEventListener("keydown", handleKeyDown);
|
|
return () => document.removeEventListener("keydown", handleKeyDown);
|
|
}, [menuOpen]);
|
|
|
|
return (
|
|
<>
|
|
<AnimatePresence>
|
|
{menuOpen && (
|
|
<motion.div
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 0.15 }}
|
|
exit={{ opacity: 0 }}
|
|
transition={{ duration: 0.4 }}
|
|
className="fixed inset-0 z-999 bg-foreground"
|
|
onClick={() => setMenuOpen(false)}
|
|
/>
|
|
)}
|
|
</AnimatePresence>
|
|
|
|
<nav className="fixed z-1000 top-5 left-1/2 -translate-x-1/2 w-content-width">
|
|
<div className="mx-auto w-full md:w-1/2 overflow-hidden rounded backdrop-blur-sm card">
|
|
<div className="relative z-10 flex items-center justify-between gap-3 xl:gap-4 2xl:gap-5 p-3 xl:p-4 2xl:p-5">
|
|
<a href="/" className="text-xl font-medium text-foreground">{logo}</Link>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<Link to="/cart" className="relative p-2">
|
|
<ShoppingCart className="w-6 h-6 text-foreground" />
|
|
{cartItemCount > 0 && (
|
|
<span className="absolute top-0 right-0 block h-4 w-4 rounded-full bg-red-500 text-white text-xs text-center">
|
|
{cartItemCount}
|
|
</span>
|
|
)}
|
|
</Link>
|
|
<button
|
|
className="flex items-center justify-center shrink-0 size-9 rounded cursor-pointer primary-button"
|
|
onClick={() => setMenuOpen(!menuOpen)}
|
|
aria-label="Toggle menu"
|
|
aria-expanded={menuOpen}
|
|
>
|
|
<Plus
|
|
className={cls(
|
|
"w-1/2 h-1/2 text-primary-cta-text transition-transform duration-300",
|
|
menuOpen ? "rotate-45" : "rotate-0"
|
|
)}
|
|
strokeWidth={1.5}
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<AnimatePresence>
|
|
{menuOpen && (
|
|
<motion.div
|
|
initial={{ height: 0 }}
|
|
animate={{ height: "auto" }}
|
|
exit={{ height: 0 }}
|
|
transition={{ duration: 0.5, ease: [0.625, 0.05, 0, 1] }}
|
|
className="overflow-hidden"
|
|
>
|
|
<div className="flex flex-col gap-3 xl:gap-4 2xl:gap-5 p-3 xl:p-4 2xl:p-5 pt-0 xl:pt-0 2xl:pt-0">
|
|
<div className="px-3 xl:px-4 2xl:px-5 py-0 md:py-1 2xl:py-2 rounded card">
|
|
{navItems.map((item, index) => (
|
|
<div key={item.name}>
|
|
<a
|
|
href={item.href}
|
|
onClick={(e) => handleNavClick(e, item.href, () => setMenuOpen(false))}
|
|
className="group flex items-center justify-between py-3 w-full"
|
|
>
|
|
<span className="text-xl md:text-2xl font-medium text-foreground group-hover:ml-3 transition-[margin] duration-300">
|
|
{item.name}
|
|
</span>
|
|
<ArrowUpRight
|
|
className="h-(--text-xl) md:h-(--text-2xl) w-auto text-foreground group-hover:rotate-45 group-hover:mr-3 transition-all duration-300"
|
|
strokeWidth={2}
|
|
/>
|
|
</Link>
|
|
{index < navItems.length - 1 && (
|
|
<div className="h-px bg-accent/50" />
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
<Button text={ctaButton.text} href={ctaButton.href} variant="primary" animate={false} className="w-full" />
|
|
</div>
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
</div>
|
|
</nav>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default NavbarFloating;
|