mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { Spinner } from "@plane/ui";
|
|
import { InstanceNotReady } from "components/instance";
|
|
import { useApplication } from "hooks/store";
|
|
// components
|
|
|
|
type Props = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
const InstanceLayout: FC<Props> = observer(({ children }) => {
|
|
// store
|
|
const {
|
|
instance: { fetchInstanceInfo, instance },
|
|
} = useApplication();
|
|
|
|
const router = useRouter();
|
|
const isGodMode = router.pathname.includes("god-mode");
|
|
|
|
useSWR("INSTANCE_INFO", () => fetchInstanceInfo(), {
|
|
revalidateOnFocus: false,
|
|
});
|
|
|
|
return (
|
|
<div className="h-screen w-full overflow-hidden">
|
|
{instance ? (
|
|
!instance.is_setup_done && !isGodMode ? (
|
|
<InstanceNotReady />
|
|
) : (
|
|
children
|
|
)
|
|
) : (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<Spinner />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
export default InstanceLayout;
|