77 lines
3.1 KiB
JavaScript
77 lines
3.1 KiB
JavaScript
// File: frontend/app/(protected)/layout.jsx
|
|
|
|
import { cookies } from "next/headers"; // 1. ยังคงใช้ฟังก์ชันฝั่ง Server
|
|
import { redirect } from "next/navigation";
|
|
import { Users } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger } from '@/components/ui/dropdown-menu';
|
|
|
|
// 2. Import SideNavigation Component ที่เราสร้างขึ้นมาใหม่
|
|
import { SideNavigation } from "./_components/SideNavigation";
|
|
|
|
// (ฟังก์ชัน fetchSession และตัวแปรอื่นๆ เหมือนเดิม)
|
|
const API_BASE = process.env.NEXT_PUBLIC_API_URL || "http://localhost:3001";
|
|
|
|
async function fetchSession() {
|
|
const cookieStore = cookies();
|
|
const token = cookieStore.get("access_token")?.value;
|
|
if (!token) return null;
|
|
try {
|
|
const res = await fetch(`${API_BASE}/api/auth/me`, {
|
|
headers: { Authorization: `Bearer ${token}` },
|
|
cache: "no-store",
|
|
});
|
|
if (!res.ok) return null;
|
|
return await res.json();
|
|
} catch (error) {
|
|
console.error("Failed to fetch session:", error);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default async function ProtectedLayout({ children }) {
|
|
// 3. ดึงข้อมูล Session บน Server
|
|
const session = await fetchSession();
|
|
|
|
if (!session?.user) {
|
|
redirect("/login");
|
|
}
|
|
|
|
return (
|
|
<div className="grid min-h-screen w-full md:grid-cols-[220px_1fr] lg:grid-cols-[280px_1fr]">
|
|
<aside className="hidden border-r bg-muted/40 md:block">
|
|
{/* 4. ใช้ SideNavigation Component และส่งข้อมูล user เป็น props */}
|
|
<SideNavigation user={session.user} />
|
|
</aside>
|
|
|
|
<div className="flex flex-col">
|
|
<header className="flex h-14 items-center gap-4 border-b bg-muted/40 px-4 lg:h-[60px] lg:px-6">
|
|
<div className="flex-1 w-full">
|
|
{/* Optional: Add a search bar */}
|
|
</div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="secondary" size="icon" className="rounded-full">
|
|
<Users className="w-5 h-5" />
|
|
<span className="sr-only">Toggle user menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>{session.user.username || 'My Account'}</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem>Settings</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem>
|
|
{/* ปุ่ม Logout จริงๆ ควรอยู่ใน Client Component ที่เรียกใช้ useAuth() hook */}
|
|
Logout
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</header>
|
|
<main className="flex flex-col flex-1 gap-4 p-4 lg:gap-6 lg:p-6">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |