40 lines
978 B
TypeScript
40 lines
978 B
TypeScript
"use client"
|
|
|
|
import type React from "react"
|
|
|
|
import { useEffect } from "react"
|
|
import { useRouter } from "next/navigation"
|
|
import { useAuth } from "@/lib/auth-context"
|
|
import { AdminSidebar } from "./admin-sidebar"
|
|
import { Loader2 } from "lucide-react"
|
|
|
|
export function AdminShell({ children }: { children: React.ReactNode }) {
|
|
const { isAuthenticated, isLoading } = useAuth()
|
|
const router = useRouter()
|
|
|
|
useEffect(() => {
|
|
if (!isLoading && !isAuthenticated) {
|
|
router.push("/admin/login")
|
|
}
|
|
}, [isAuthenticated, isLoading, router])
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="min-h-screen bg-background flex items-center justify-center">
|
|
<Loader2 className="w-6 h-6 animate-spin text-primary" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (!isAuthenticated) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-background flex">
|
|
<AdminSidebar />
|
|
<main className="flex-1 overflow-auto">{children}</main>
|
|
</div>
|
|
)
|
|
}
|