mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
239 lines
7.5 KiB
TypeScript
239 lines
7.5 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import Link from "next/link";
|
|
import Image from "next/image";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
import { Separator } from "@/components/ui/separator";
|
|
import { ThemeToggle } from "@/components/theme-toggle";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
NavigationMenu,
|
|
NavigationMenuContent,
|
|
NavigationMenuItem,
|
|
NavigationMenuLink,
|
|
NavigationMenuList,
|
|
NavigationMenuTrigger,
|
|
navigationMenuTriggerStyle,
|
|
} from "@/components/ui/navigation-menu";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { Search, Bell, Heart, Wallet } from "lucide-react";
|
|
|
|
import { LogoutButton } from "@/components/auth/logoutButton";
|
|
|
|
import useSession from "@/lib/supabase/useSession";
|
|
|
|
const landings = [
|
|
{
|
|
id: 1,
|
|
title: "Landing 01",
|
|
route: "/project-management",
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "Landing 02",
|
|
route: "/crm-landing",
|
|
},
|
|
];
|
|
const ListItem = React.forwardRef<React.ElementRef<"a">, React.ComponentPropsWithoutRef<"a">>(
|
|
({ className, title, children, ...props }, ref) => {
|
|
return (
|
|
<li>
|
|
<NavigationMenuLink asChild>
|
|
<a
|
|
ref={ref}
|
|
className={cn(
|
|
"block select-none space-y-1 rounded-md p-3 leading-none no-underline outline-none transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
|
|
className
|
|
)}
|
|
{...props}>
|
|
<div className="text-sm font-medium leading-none">{title}</div>
|
|
<hr />
|
|
<p className="line-clamp-2 text-sm leading-snug text-muted-foreground">{children}</p>
|
|
</a>
|
|
</NavigationMenuLink>
|
|
</li>
|
|
);
|
|
}
|
|
);
|
|
ListItem.displayName = "ListItem";
|
|
|
|
const unAuthenticatedComponents = () => {
|
|
return (
|
|
<div className="flex gap-2 pl-2">
|
|
<Link href="/auth">
|
|
<Button variant="secondary" className="border-2 border-border">
|
|
Login
|
|
</Button>
|
|
</Link>
|
|
<Button>Sign up</Button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const authenticatedComponents = () => {
|
|
return (
|
|
<div className="flex gap-3 pl-2 items-center">
|
|
<Bell />
|
|
<Heart />
|
|
<Wallet />
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline" size="icon" className="overflow-hidden rounded-full">
|
|
<Avatar>
|
|
<AvatarImage src="https://api.dicebear.com/9.x/pixel-art/svg" />
|
|
<AvatarFallback>1</AvatarFallback>
|
|
</Avatar>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>My Account</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem>Settings</DropdownMenuItem>
|
|
<DropdownMenuItem>Support</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem>
|
|
<LogoutButton />
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export function NavigationBar() {
|
|
const { session, loading } = useSession();
|
|
const user = session?.user;
|
|
const [sessionLoaded, setSessionLoaded] = React.useState(false);
|
|
|
|
React.useEffect(() => {
|
|
if (!loading) {
|
|
setSessionLoaded(true);
|
|
}
|
|
}, [loading]);
|
|
|
|
const businessComponents = [
|
|
{
|
|
title: "Businesses",
|
|
href: "/landing",
|
|
description: "Raise on B2DVentures",
|
|
},
|
|
];
|
|
|
|
const projectComponents = [
|
|
{
|
|
title: "Projects",
|
|
href: "/landing",
|
|
description: "Raise on B2DVentures",
|
|
},
|
|
];
|
|
|
|
const blogComponents = [
|
|
{
|
|
title: "Blogs",
|
|
href: "/landing",
|
|
description: "Raise on B2DVentures",
|
|
},
|
|
];
|
|
return (
|
|
<header className="sticky top-0 flex flex-wrap w-full bg-card text-sm py-3 border-b-2 border-border z-50">
|
|
<nav className="max-w-[85rem] w-full mx-auto px-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex flex-col">
|
|
<Link
|
|
className="flex-none text-xl font-semibold dark:text-white focus:outline-none focus:opacity-80"
|
|
href="/"
|
|
aria-label="Brand">
|
|
<span className="inline-flex items-center gap-x-2 text-xl font-semibold dark:text-white">
|
|
<Image src="./logo.svg" alt="logo" width={50} height={50} />
|
|
B2DVentures
|
|
</span>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="flex items-center">
|
|
<NavigationMenu>
|
|
<NavigationMenuList>
|
|
<NavigationMenuItem>
|
|
<NavigationMenuTrigger className="text-base">Businesses</NavigationMenuTrigger>
|
|
<NavigationMenuContent>
|
|
<ul className="grid w-[400px] ">
|
|
{businessComponents.map((component) => (
|
|
<ListItem key={component.title} title={component.title} href={component.href}>
|
|
{component.description}
|
|
</ListItem>
|
|
))}
|
|
</ul>
|
|
</NavigationMenuContent>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem>
|
|
<NavigationMenuTrigger className="text-base font-medium ">Projects</NavigationMenuTrigger>
|
|
<NavigationMenuContent>
|
|
<ul className="grid w-[400px] ">
|
|
{projectComponents.map((component) => (
|
|
<ListItem key={component.title} title={component.title} href={component.href}>
|
|
{component.description}
|
|
</ListItem>
|
|
))}
|
|
</ul>
|
|
</NavigationMenuContent>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem>
|
|
<NavigationMenuTrigger className="text-base">Blogs</NavigationMenuTrigger>
|
|
<NavigationMenuContent>
|
|
<ul className="grid w-[400px] ">
|
|
{blogComponents.map((component) => (
|
|
<ListItem key={component.title} title={component.title} href={component.href}>
|
|
{component.description}
|
|
</ListItem>
|
|
))}
|
|
</ul>
|
|
</NavigationMenuContent>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem>
|
|
<NavigationMenuLink className="text-base font-medium" href="docs">
|
|
Docs
|
|
</NavigationMenuLink>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem className="pl-5">
|
|
<Search />
|
|
</NavigationMenuItem>
|
|
</NavigationMenuList>
|
|
</NavigationMenu>
|
|
|
|
<div className="flex gap-2 pl-2">
|
|
<ThemeToggle />
|
|
<Separator orientation="vertical" className="mx-3" />
|
|
{sessionLoaded ? (
|
|
user ? (
|
|
authenticatedComponents()
|
|
) : (
|
|
unAuthenticatedComponents()
|
|
)
|
|
) : (
|
|
<div>
|
|
<Skeleton className="rounded-lg h-full w-[160px]" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
);
|
|
}
|