263 lines
9.0 KiB
TypeScript
263 lines
9.0 KiB
TypeScript
"use client";
|
||
|
||
import { signOut } from "@/app/login/actions";
|
||
import { Button, Card, CardContent } from "poyraz-ui/atoms";
|
||
import {
|
||
DropdownMenu,
|
||
DropdownMenuContent,
|
||
DropdownMenuItem,
|
||
DropdownMenuLabel,
|
||
DropdownMenuSeparator,
|
||
DropdownMenuTrigger,
|
||
} from "poyraz-ui/molecules";
|
||
import {
|
||
Sidebar,
|
||
SidebarBranding,
|
||
SidebarContent,
|
||
SidebarFooter,
|
||
SidebarHeader,
|
||
SidebarMenu,
|
||
SidebarMenuItem,
|
||
SidebarSection,
|
||
SidebarSeparator,
|
||
SidebarTrigger,
|
||
SidebarUserProfile,
|
||
} from "poyraz-ui/organisms";
|
||
import { portalSidebarData } from "@/config/portal-sidebar";
|
||
import { cn } from "@/lib/utils";
|
||
import { Activity, ChevronUp, LogOut, Menu, Settings } from "lucide-react";
|
||
import Image from "next/image";
|
||
import Link from "next/link";
|
||
import { usePathname } from "next/navigation";
|
||
import { useState } from "react";
|
||
|
||
type PortalShellProps = {
|
||
children: React.ReactNode;
|
||
user: {
|
||
email: string;
|
||
displayName: string;
|
||
shortName: string;
|
||
avatarUrl: string | null;
|
||
};
|
||
progress?: number;
|
||
};
|
||
|
||
export function PortalShell({ children, user, progress }: PortalShellProps) {
|
||
const pathname = usePathname();
|
||
const [isMobileSidebarOpen, setIsMobileSidebarOpen] = useState(false);
|
||
|
||
return (
|
||
<div className="min-h-screen bg-background text-foreground">
|
||
<div className="flex min-h-screen">
|
||
<aside className="sticky top-0 hidden h-dvh shrink-0 self-start border-r border-border bg-background lg:block">
|
||
<AppSidebar pathname={pathname} user={user} progress={progress} />
|
||
</aside>
|
||
|
||
{/* Mobile Sidebar Overlay */}
|
||
{isMobileSidebarOpen && (
|
||
<div
|
||
className="fixed inset-0 z-40 bg-black/50 backdrop-blur-sm lg:hidden transition-opacity"
|
||
onClick={() => setIsMobileSidebarOpen(false)}
|
||
/>
|
||
)}
|
||
|
||
{/* Mobile Sidebar Drawer */}
|
||
<aside
|
||
className={`fixed inset-y-0 left-0 z-50 w-72 transform border-r border-border bg-background transition-transform duration-300 ease-in-out lg:hidden ${
|
||
isMobileSidebarOpen ? "translate-x-0" : "-translate-x-full"
|
||
}`}
|
||
>
|
||
<AppSidebar
|
||
pathname={pathname}
|
||
user={user}
|
||
progress={progress}
|
||
onNavigate={() => setIsMobileSidebarOpen(false)}
|
||
/>
|
||
</aside>
|
||
|
||
<div className="flex flex-1 flex-col min-w-0">
|
||
<header className="sticky top-0 z-30 flex h-14 items-center justify-between border-b border-border bg-background/95 px-4 backdrop-blur lg:hidden">
|
||
<Link href="/portal" className="flex items-center gap-2 font-semibold">
|
||
<Image
|
||
src="/logo/blackLogoLong.png"
|
||
alt="Neta"
|
||
width={120}
|
||
height={32}
|
||
className="h-8 w-auto object-contain"
|
||
style={{ width: "auto" }}
|
||
priority
|
||
/>
|
||
</Link>
|
||
<div className="flex items-center gap-4">
|
||
<Button
|
||
type="button"
|
||
variant="outline"
|
||
className="h-9 w-9 p-0 lg:hidden"
|
||
onClick={() => setIsMobileSidebarOpen(true)}
|
||
>
|
||
<Menu className="h-4 w-4" />
|
||
</Button>
|
||
</div>
|
||
</header>
|
||
|
||
<main className="flex-1 p-4 lg:p-8 min-w-0">{children}</main>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
function AppSidebar({
|
||
pathname,
|
||
user,
|
||
progress = 0,
|
||
onNavigate,
|
||
}: {
|
||
pathname: string;
|
||
user: PortalShellProps["user"];
|
||
progress?: number;
|
||
onNavigate?: () => void;
|
||
}) {
|
||
return (
|
||
<Sidebar
|
||
variant="bordered"
|
||
className="flex h-dvh max-h-dvh flex-col overflow-hidden rounded-none border-0"
|
||
>
|
||
<SidebarHeader className="shrink-0 border-b-0 px-6 py-3">
|
||
<Link href="/portal" className="flex w-full items-center justify-center">
|
||
<Image
|
||
src="/logo/blackLogoLong.png"
|
||
alt="Neta"
|
||
width={160}
|
||
height={48}
|
||
className="h-12 w-auto object-contain"
|
||
style={{ width: "auto" }}
|
||
priority
|
||
/>
|
||
</Link>
|
||
</SidebarHeader>
|
||
|
||
<SidebarSeparator className="mx-0 my-0 w-full" />
|
||
|
||
<SidebarContent className="tiny-scrollbar min-h-0 flex-1 overflow-y-auto px-6 py-6">
|
||
{portalSidebarData.map((group, groupIndex) => (
|
||
<div key={group.title}>
|
||
<SidebarSection title={group.title} defaultOpen className="mb-0">
|
||
<SidebarMenu>
|
||
{group.items.map((item) => {
|
||
const isActive =
|
||
item.href === "/portal"
|
||
? pathname === "/portal"
|
||
: item.href
|
||
? pathname === item.href || pathname.startsWith(item.href + "/")
|
||
: false;
|
||
const Icon = item.icon;
|
||
|
||
return (
|
||
<SidebarMenuItem
|
||
key={item.href || item.title}
|
||
active={isActive}
|
||
icon={Icon ? <Icon className="h-4 w-4" /> : undefined}
|
||
className={cn(isActive && "font-semibold")}
|
||
>
|
||
<Link
|
||
href={item.href || "#"}
|
||
onClick={onNavigate}
|
||
className="block w-full"
|
||
>
|
||
{item.title}
|
||
</Link>
|
||
</SidebarMenuItem>
|
||
);
|
||
})}
|
||
</SidebarMenu>
|
||
</SidebarSection>
|
||
{groupIndex < portalSidebarData.length - 1 ? (
|
||
<SidebarSeparator className="-mx-6 my-5 w-[calc(100%+3rem)]" />
|
||
) : null}
|
||
</div>
|
||
))}
|
||
</SidebarContent>
|
||
|
||
<SidebarSeparator className="mx-0 my-0 w-full" />
|
||
|
||
<SidebarFooter className="shrink-0 border-t-0 px-6 py-5 flex flex-col gap-5">
|
||
<Card className="bg-primary/5 border-primary/10 shadow-none overflow-hidden relative">
|
||
<CardContent className="p-4 space-y-3">
|
||
<div className="text-sm font-semibold text-foreground relative z-10">Proje İlerlemesi</div>
|
||
<div className="space-y-1.5 mt-1 relative z-10">
|
||
<div className="flex items-center justify-between text-xs font-medium">
|
||
<span className="text-primary">%{progress} Tamamlandı</span>
|
||
</div>
|
||
<div className="h-2 w-full bg-primary/10 rounded-full overflow-hidden">
|
||
<div
|
||
className="h-full bg-primary transition-all duration-700 ease-out relative"
|
||
style={{ width: `${progress}%` }}
|
||
>
|
||
<div className="absolute top-0 right-0 bottom-0 left-0 bg-white/20 animate-pulse" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="absolute -right-4 -top-4 w-16 h-16 bg-primary/5 rounded-full blur-xl" />
|
||
</CardContent>
|
||
</Card>
|
||
|
||
<DropdownMenu>
|
||
<DropdownMenuTrigger asChild>
|
||
<button
|
||
type="button"
|
||
className="w-full rounded-sm text-left outline-none transition-colors hover:bg-accent focus-visible:ring-2 focus-visible:ring-ring"
|
||
>
|
||
<div className="flex items-center gap-2">
|
||
<SidebarUserProfile
|
||
name={user.displayName}
|
||
role={user.email}
|
||
avatarUrl={user.avatarUrl || undefined}
|
||
initials={user.shortName}
|
||
className="min-w-0 flex-1"
|
||
/>
|
||
<ChevronUp className="mr-3 h-4 w-4 shrink-0 text-muted-foreground" />
|
||
</div>
|
||
</button>
|
||
</DropdownMenuTrigger>
|
||
<DropdownMenuContent
|
||
align="end"
|
||
side="right"
|
||
sideOffset={8}
|
||
className="w-64"
|
||
>
|
||
<DropdownMenuLabel className="font-normal">
|
||
<div className="flex flex-col gap-1">
|
||
<span className="truncate text-sm font-medium text-foreground">
|
||
{user.displayName}
|
||
</span>
|
||
<span className="truncate text-xs text-muted-foreground">
|
||
{user.email}
|
||
</span>
|
||
</div>
|
||
</DropdownMenuLabel>
|
||
<DropdownMenuSeparator />
|
||
<DropdownMenuItem asChild>
|
||
<Link href="/portal/settings" onClick={onNavigate} className="gap-2">
|
||
<Settings className="h-4 w-4" />
|
||
Ayarlar
|
||
</Link>
|
||
</DropdownMenuItem>
|
||
<DropdownMenuSeparator />
|
||
<form action={signOut}>
|
||
<DropdownMenuItem asChild>
|
||
<button type="submit" className="w-full gap-2">
|
||
<LogOut className="h-4 w-4" />
|
||
Çıkış yap
|
||
</button>
|
||
</DropdownMenuItem>
|
||
</form>
|
||
</DropdownMenuContent>
|
||
</DropdownMenu>
|
||
</SidebarFooter>
|
||
|
||
<SidebarTrigger className="hidden" />
|
||
</Sidebar>
|
||
);
|
||
}
|