mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fd5b7d20a8
* chore: instance type updated * chore: instance not ready screen added * chore: instance layout added * chore: instance magic sign in endpoint and type added * chore: instance admin password endpoint added * chore: instance setup page added * chore: instance setup form added * chore: instance layout updated * fix: instance admin workflow setup * fix: admin workflow setup --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
// layouts
|
|
import { AdminAuthWrapper, UserAuthWrapper } from "layouts/auth-layout";
|
|
// components
|
|
import { InstanceAdminSidebar } from "./sidebar";
|
|
import { InstanceAdminHeader } from "./header";
|
|
import { InstanceSetupView } from "components/instance";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
export interface IInstanceAdminLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const InstanceAdminLayout: FC<IInstanceAdminLayout> = (props) => {
|
|
const { children } = props;
|
|
// store
|
|
const {
|
|
instance: { instance },
|
|
user: { currentUser },
|
|
} = useMobxStore();
|
|
// fetch
|
|
|
|
console.log("instance", instance);
|
|
|
|
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 flex-col h-full w-full 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>
|
|
</>
|
|
);
|
|
};
|