mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { InstanceSetupView } from "@/components/instance";
|
|
import { useApplication } from "@/hooks/store";
|
|
// layouts
|
|
import { AdminAuthWrapper, UserAuthWrapper } from "@/layouts/auth-layout";
|
|
// components
|
|
import { InstanceAdminHeader } from "./header";
|
|
import { InstanceAdminSidebar } from "./sidebar";
|
|
|
|
export interface IInstanceAdminLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const InstanceAdminLayout: FC<IInstanceAdminLayout> = observer((props) => {
|
|
const { children } = props;
|
|
// store hooks
|
|
const {
|
|
instance: { instance },
|
|
} = useApplication();
|
|
|
|
if (instance?.is_setup_done === false) return <InstanceSetupView />;
|
|
|
|
return (
|
|
<>
|
|
<UserAuthWrapper>
|
|
<AdminAuthWrapper>
|
|
<div className="relative flex h-screen w-full overflow-hidden">
|
|
<InstanceAdminSidebar />
|
|
<main className="relative flex h-full w-full flex-col overflow-hidden bg-custom-background-100">
|
|
<InstanceAdminHeader />
|
|
<div className="h-full w-full overflow-hidden px-10 py-12">
|
|
<div className="relative h-full w-full overflow-x-hidden overflow-y-scroll">
|
|
<>{children}</>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</AdminAuthWrapper>
|
|
</UserAuthWrapper>
|
|
</>
|
|
);
|
|
});
|