58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
import type { FC, ReactNode } from "react";
|
|
import { useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/navigation";
|
|
// components
|
|
import { LogoSpinner } from "@/components/common/logo-spinner";
|
|
import { NewUserPopup } from "@/components/new-user-popup";
|
|
// hooks
|
|
import { useUser } from "@/hooks/store";
|
|
// local components
|
|
import { AdminHeader } from "./header";
|
|
import { AdminSidebar } from "./sidebar";
|
|
|
|
type TAdminLayout = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
const AdminLayout: FC<TAdminLayout> = (props) => {
|
|
const { children } = props;
|
|
// router
|
|
const router = useRouter();
|
|
// store hooks
|
|
const { isUserLoggedIn } = useUser();
|
|
|
|
useEffect(() => {
|
|
if (isUserLoggedIn === false) {
|
|
router.push("/");
|
|
}
|
|
}, [router, isUserLoggedIn]);
|
|
|
|
if (isUserLoggedIn === undefined) {
|
|
return (
|
|
<div className="relative flex h-screen w-full items-center justify-center">
|
|
<LogoSpinner />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (isUserLoggedIn) {
|
|
return (
|
|
<div className="relative flex h-screen w-screen overflow-hidden">
|
|
<AdminSidebar />
|
|
<main className="relative flex h-full w-full flex-col overflow-hidden bg-custom-background-100">
|
|
<AdminHeader />
|
|
<div className="h-full w-full overflow-hidden">{children}</div>
|
|
</main>
|
|
<NewUserPopup />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return <></>;
|
|
};
|
|
|
|
export default observer(AdminLayout);
|