Adds MobileHeader with hamburger button (left-aligned) that opens a slide-in sidebar drawer on mobile. Desktop layout is unchanged. All hardcoded multi-column grids updated with responsive Tailwind breakpoints. Co-Authored-By: Jack Levy
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import { usePathname, useRouter } from "next/navigation";
|
|
import { useAuthStore } from "@/stores/authStore";
|
|
import { Sidebar } from "./Sidebar";
|
|
import { MobileHeader } from "./MobileHeader";
|
|
|
|
const PUBLIC_PATHS = ["/login", "/register"];
|
|
|
|
export function AuthGuard({ children }: { children: React.ReactNode }) {
|
|
const router = useRouter();
|
|
const pathname = usePathname();
|
|
const token = useAuthStore((s) => s.token);
|
|
// Zustand persist hydrates asynchronously — wait for it before rendering
|
|
const [hydrated, setHydrated] = useState(false);
|
|
const [drawerOpen, setDrawerOpen] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setHydrated(true);
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!hydrated) return;
|
|
if (!token && !PUBLIC_PATHS.includes(pathname)) {
|
|
router.replace("/login");
|
|
}
|
|
}, [hydrated, token, pathname, router]);
|
|
|
|
if (!hydrated) return null;
|
|
|
|
// Public pages (login/register) render without the app shell
|
|
if (PUBLIC_PATHS.includes(pathname)) {
|
|
return <>{children}</>;
|
|
}
|
|
|
|
// Not logged in yet — blank while redirecting
|
|
if (!token) return null;
|
|
|
|
// Authenticated: render the full app shell
|
|
return (
|
|
<div className="flex h-screen bg-background">
|
|
{/* Desktop sidebar — hidden on mobile */}
|
|
<div className="hidden md:flex">
|
|
<Sidebar />
|
|
</div>
|
|
|
|
{/* Mobile slide-in drawer */}
|
|
{drawerOpen && (
|
|
<div className="fixed inset-0 z-50 md:hidden">
|
|
<div className="absolute inset-0 bg-black/50" onClick={() => setDrawerOpen(false)} />
|
|
<div className="absolute left-0 top-0 bottom-0">
|
|
<Sidebar onClose={() => setDrawerOpen(false)} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Content column */}
|
|
<div className="flex-1 flex flex-col min-h-0">
|
|
<MobileHeader onMenuClick={() => setDrawerOpen(true)} />
|
|
<main className="flex-1 overflow-auto">
|
|
<div className="container mx-auto px-4 md:px-6 py-6 max-w-7xl">
|
|
{children}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|