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>
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
// layouts
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
import { CommandPalette } from "components/command-palette";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { useIssues } from "hooks/store/use-issues";
|
|
import { UserAuthWrapper, WorkspaceAuthWrapper, ProjectAuthWrapper } from "layouts/auth-layout";
|
|
// components
|
|
import { AppSidebar } from "./sidebar";
|
|
|
|
export interface IAppLayout {
|
|
children: ReactNode;
|
|
header: ReactNode;
|
|
withProjectWrapper?: boolean;
|
|
}
|
|
|
|
export const AppLayout: FC<IAppLayout> = observer((props) => {
|
|
const { children, header, withProjectWrapper = false } = props;
|
|
|
|
return (
|
|
<>
|
|
<CommandPalette />
|
|
<UserAuthWrapper>
|
|
<WorkspaceAuthWrapper>
|
|
<div className="relative flex h-screen w-full overflow-hidden">
|
|
<AppSidebar />
|
|
<main className="relative flex h-full w-full flex-col overflow-hidden bg-custom-background-100">
|
|
{header}
|
|
<div className="h-full w-full overflow-hidden">
|
|
<div className="relative h-full w-full overflow-x-hidden overflow-y-scroll">
|
|
{withProjectWrapper ? <ProjectAuthWrapper>{children}</ProjectAuthWrapper> : <>{children}</>}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</WorkspaceAuthWrapper>
|
|
</UserAuthWrapper>
|
|
</>
|
|
);
|
|
});
|