fronted แก้ layout build 2

This commit is contained in:
admin
2025-10-05 11:05:03 +07:00
parent 5dec188744
commit 754e494e7f
2 changed files with 98 additions and 28 deletions

View File

@@ -1,39 +1,26 @@
// frontend/app/(protected)/layout.jsx
// frontend/app/(protected)/layout.jsx
// File: frontend/app/(protected)/layout.jsx
import { cookies, headers } from "next/headers"; // 1. ยังคงใช้ฟังก์ชันฝั่ง Server
import { cookies } from "next/headers"; // 1. ยังคงใช้ฟังก์ชันฝั่ง Server
import { redirect } from "next/navigation";
import { Bell, Users } from 'lucide-react';
import { Users } from 'lucide-react';
import { Button } from '@/components/ui/button';
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from '@/components/ui/dropdown-menu';
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger } from '@/components/ui/dropdown-menu';
// 2. Import Navigation Component ที่เราสร้างขึ้นมาใหม่
import { Navigation } from "./_components/navigation";
export const metadata = { title: "DMS | Protected" };
// 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) {
@@ -42,12 +29,10 @@ async function fetchSession() {
}
}
export default async function ProtectedLayout({ children }) {
// 3. ดึงข้อมูล Session บน Server
const session = await fetchSession();
// ถ้าไม่มี session หรือ user ให้ redirect ไปหน้า login
if (!session?.user) {
redirect("/login");
}
@@ -55,13 +40,12 @@ export default async function ProtectedLayout({ children }) {
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. ใช้ Navigation Component และส่งข้อมูล user เป็น props */}
<Navigation user={session.user} />
{/* 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">
{/* Mobile navigation can be here */}
<div className="flex-1 w-full">
{/* Optional: Add a search bar */}
</div>
@@ -77,12 +61,14 @@ export default async function ProtectedLayout({ children }) {
<DropdownMenuSeparator />
<DropdownMenuItem>Settings</DropdownMenuItem>
<DropdownMenuSeparator />
{/* Logout button in client-side auth context handles the action */}
<DropdownMenuItem>Logout</DropdownMenuItem>
<DropdownMenuItem>
{/* ปุ่ม Logout จริงๆ ควรอยู่ใน Client Component ที่เรียกใช้ useAuth() hook */}
Logout
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</header>
<main className="flex-1 p-4 lg:p-6">
<main className="flex flex-col flex-1 gap-4 p-4 lg:gap-6 lg:p-6">
{children}
</main>
</div>