forked from github/plane
651b252c23
* chore: svg icons added in plane/ui package * chore: swap priority and state icon with plane/ui icons * chore: replace core folder icons with lucide and plane ui icons * style: priority icon size * chore: replace icons with lucide and plane/ui icons * chore: replace cycle folder icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * fix: build error * fix: build error * fix: build error
123 lines
3.9 KiB
TypeScript
123 lines
3.9 KiB
TypeScript
import { useState } from "react";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
|
|
// contexts
|
|
import { useProjectMyMembership, ProjectMemberProvider } from "contexts/project-member.context";
|
|
// layouts
|
|
import AppHeader from "layouts/app-layout-legacy/app-header";
|
|
import AppSidebar from "layouts/app-layout-legacy/app-sidebar";
|
|
// components
|
|
import { NotAuthorizedView, JoinProject } from "components/auth-screens";
|
|
import { CommandPalette } from "components/command-palette";
|
|
// ui
|
|
import { Button, LayersIcon, Spinner } from "@plane/ui";
|
|
import { EmptyState } from "components/common";
|
|
// images
|
|
import emptyProject from "public/empty-state/project.svg";
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
noHeader?: boolean;
|
|
bg?: "primary" | "secondary";
|
|
breadcrumbs?: JSX.Element;
|
|
left?: JSX.Element;
|
|
right?: JSX.Element;
|
|
};
|
|
|
|
export const ProjectAuthorizationWrapper: React.FC<Props> = (props) => (
|
|
<ProjectMemberProvider>
|
|
<ProjectAuthorizationWrapped {...props} />
|
|
</ProjectMemberProvider>
|
|
);
|
|
|
|
const ProjectAuthorizationWrapped: React.FC<Props> = ({
|
|
children,
|
|
noHeader = false,
|
|
bg = "primary",
|
|
breadcrumbs,
|
|
left,
|
|
right,
|
|
}) => {
|
|
const [toggleSidebar, setToggleSidebar] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { loading, error, memberRole: memberType } = useProjectMyMembership();
|
|
|
|
const settingsLayout = router.pathname.includes("/settings");
|
|
|
|
return (
|
|
<>
|
|
<CommandPalette />
|
|
<div className="relative flex h-screen w-full overflow-hidden">
|
|
<AppSidebar toggleSidebar={toggleSidebar} setToggleSidebar={setToggleSidebar} />
|
|
|
|
{loading ? (
|
|
<div className="grid h-full w-full place-items-center p-4 bg-custom-background-100">
|
|
<div className="flex flex-col items-center gap-3 text-center">
|
|
<h3 className="text-xl">Loading your project...</h3>
|
|
<Spinner />
|
|
</div>
|
|
</div>
|
|
) : error?.status === 401 || error?.status === 403 ? (
|
|
<JoinProject />
|
|
) : error?.status === 404 ? (
|
|
<div className="container grid h-screen place-items-center bg-custom-background-100">
|
|
<EmptyState
|
|
title="No such project exists"
|
|
description="Try creating a new project"
|
|
image={emptyProject}
|
|
primaryButton={{
|
|
text: "Create Project",
|
|
onClick: () => {
|
|
const e = new KeyboardEvent("keydown", {
|
|
key: "p",
|
|
});
|
|
document.dispatchEvent(e);
|
|
},
|
|
}}
|
|
/>
|
|
</div>
|
|
) : settingsLayout && (memberType?.isGuest || memberType?.isViewer) ? (
|
|
<NotAuthorizedView
|
|
actionButton={
|
|
<Link href={`/${workspaceSlug}/projects/${projectId}/issues`}>
|
|
<a>
|
|
<Button variant="primary" prependIcon={<LayersIcon color="white" />}>
|
|
Go to issues
|
|
</Button>
|
|
</a>
|
|
</Link>
|
|
}
|
|
type="project"
|
|
/>
|
|
) : (
|
|
<main
|
|
className={`relative flex h-full w-full flex-col overflow-hidden ${
|
|
bg === "primary"
|
|
? "bg-custom-background-100"
|
|
: bg === "secondary"
|
|
? "bg-custom-background-90"
|
|
: "bg-custom-background-80"
|
|
}`}
|
|
>
|
|
<AppHeader
|
|
breadcrumbs={breadcrumbs}
|
|
left={left}
|
|
right={right}
|
|
setToggleSidebar={setToggleSidebar}
|
|
noHeader={noHeader}
|
|
/>
|
|
<div className="h-full w-full overflow-hidden">
|
|
<div className="h-full w-full overflow-x-hidden overflow-y-scroll">{children}</div>
|
|
</div>
|
|
</main>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|