forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
124 lines
3.9 KiB
TypeScript
124 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/app-header";
|
|
import AppSidebar from "layouts/app-layout/app-sidebar";
|
|
// components
|
|
import { NotAuthorizedView, JoinProject } from "components/auth-screens";
|
|
import { CommandPalette } from "components/command-palette";
|
|
// ui
|
|
import { EmptyState, PrimaryButton, Spinner } from "components/ui";
|
|
// icons
|
|
import { LayerDiagonalIcon } from "components/icons";
|
|
// 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>
|
|
<PrimaryButton className="flex items-center gap-1">
|
|
<LayerDiagonalIcon height={16} width={16} color="white" /> Go to issues
|
|
</PrimaryButton>
|
|
</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>
|
|
</>
|
|
);
|
|
};
|