|
| 1 | +"use client"; |
| 2 | +import React from "react"; |
| 3 | +import { |
| 4 | + Sheet, |
| 5 | + SheetClose, |
| 6 | + SheetContent, |
| 7 | + SheetTrigger, |
| 8 | +} from "@/components/ui/sheet"; |
| 9 | +import Image from "next/image"; |
| 10 | +import Link from "next/link"; |
| 11 | +import { SignedOut } from "@clerk/nextjs"; |
| 12 | +import { Button } from "@/components/ui/button"; |
| 13 | +import { sidebarLinks } from "@/constants"; |
| 14 | +import { usePathname } from "next/navigation"; |
| 15 | + |
| 16 | +const NavContent = () => { |
| 17 | + const pathName = usePathname(); |
| 18 | + return ( |
| 19 | + <section className="flex h-full flex-col gap-6 pt-16"> |
| 20 | + {sidebarLinks.map((link, index) => { |
| 21 | + const isActive = |
| 22 | + (pathName.includes(link.route) && link.route.length > 1) || |
| 23 | + pathName === link.route; |
| 24 | + return ( |
| 25 | + <SheetClose asChild key={index}> |
| 26 | + <Link |
| 27 | + href={link.route} |
| 28 | + className={`${isActive ? "primary-gradient rounded-lg text-light-900" : "text-dark300_light900"} flex items-center gap-4 bg-transparent p-4`} |
| 29 | + > |
| 30 | + <Image |
| 31 | + src={link.imgURL} |
| 32 | + alt={link.label} |
| 33 | + width={20} |
| 34 | + height={20} |
| 35 | + className={`${isActive ? "" : "invert-colors"}`} |
| 36 | + /> |
| 37 | + <p className={`${isActive ? "base-bold" : "base-medium"}`}> |
| 38 | + {link.label} |
| 39 | + </p> |
| 40 | + </Link> |
| 41 | + </SheetClose> |
| 42 | + ); |
| 43 | + })} |
| 44 | + </section> |
| 45 | + ); |
| 46 | +}; |
| 47 | + |
| 48 | +const MobileNav = () => { |
| 49 | + return ( |
| 50 | + <Sheet> |
| 51 | + <SheetTrigger asChild> |
| 52 | + <Image |
| 53 | + src={"/assets/icons/hamburger.svg"} |
| 54 | + height={36} |
| 55 | + width={36} |
| 56 | + alt="Menu" |
| 57 | + className="invert-colors sm:hidden" |
| 58 | + /> |
| 59 | + </SheetTrigger> |
| 60 | + <SheetContent |
| 61 | + side={"left"} |
| 62 | + className="background-light900_dark200 border-none" |
| 63 | + > |
| 64 | + <Link href={"/"} className="flex items-center gap-1"> |
| 65 | + <Image |
| 66 | + src={"/assets/images/site-logo.svg"} |
| 67 | + width={23} |
| 68 | + height={23} |
| 69 | + alt="DevFlow" |
| 70 | + /> |
| 71 | + <p className="h2-bold text-dark100_light900 font-spaceGrotesk"> |
| 72 | + Dev<span className="text-primary-500">Flow</span> |
| 73 | + </p> |
| 74 | + </Link> |
| 75 | + <div> |
| 76 | + <SheetClose asChild> |
| 77 | + <NavContent /> |
| 78 | + </SheetClose> |
| 79 | + |
| 80 | + <SignedOut> |
| 81 | + <div className="flex flex-col gap-3"> |
| 82 | + <SheetClose asChild> |
| 83 | + <Link href={"/sign-in"}> |
| 84 | + <Button className="small-medium btn-secondary min-h-[41px] w-full rounded-lg px-4 py-3 shadow-none"> |
| 85 | + <span className="primary-text-gradient">Log in</span> |
| 86 | + </Button> |
| 87 | + </Link> |
| 88 | + </SheetClose> |
| 89 | + <SheetClose asChild> |
| 90 | + <Link href={"/sign-up"}> |
| 91 | + <Button className="small-medium light-border-2 btn-tertiary text-dark400_light900 min-h-[41px] w-full rounded-lg px-4 py-3 shadow-none"> |
| 92 | + Sign up |
| 93 | + </Button> |
| 94 | + </Link> |
| 95 | + </SheetClose> |
| 96 | + </div> |
| 97 | + </SignedOut> |
| 98 | + </div> |
| 99 | + </SheetContent> |
| 100 | + </Sheet> |
| 101 | + ); |
| 102 | +}; |
| 103 | + |
| 104 | +export default MobileNav; |
0 commit comments