mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1a534a3c19
* chore: global bar graph component * chore: global pie graph component * chore: global line graph component * chore: removed unnecessary file * chore: refactored global chart components to accept all props * chore: function to convert response to chart data * chore: global calendar graph component added * chore: global scatter plot graph component * feat: analytics boilerplate created * chore: null value for segment and project * chore: clean up file * chore: change project query param key * chore: export, refresh buttons, analytics table * fix: analytics fetch key error * chore: show only integer values in the y-axis * chore: custom x-axis tick values and bar colors * refactor: divide analytics page into granular components * chore: convert analytics page to modal, save analytics modal * fix: build error * fix: modal overflow issues, analytics loading screen * chore: custom tooltip, refactor: graphs folder structure * refactor: folder structure, chore: x-axis tick values for larger data * chore: code cleanup * chore: remove unnecessary files * fix: refresh analytics button on error * feat: scope and demand analytics * refactor: scope and demand and custom analytics folder structure * fix: dynamic import type * chore: minor updates * feat: project, cycle and module level analytics * style: project analytics modal * fix: merge conflicts
147 lines
4.5 KiB
TypeScript
147 lines
4.5 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";
|
|
// hooks
|
|
import useIssuesView from "hooks/use-issues-view";
|
|
// layouts
|
|
import Container from "layouts/container";
|
|
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 { AnalyticsWorkspaceModal } from "components/analytics";
|
|
import { CommandPalette } from "components/command-palette";
|
|
// ui
|
|
import { PrimaryButton, Spinner } from "components/ui";
|
|
// icons
|
|
import { LayerDiagonalIcon } from "components/icons";
|
|
|
|
type Meta = {
|
|
title?: string | null;
|
|
description?: string | null;
|
|
image?: string | null;
|
|
url?: string | null;
|
|
};
|
|
|
|
type Props = {
|
|
meta?: Meta;
|
|
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> = ({
|
|
meta,
|
|
children,
|
|
noHeader = false,
|
|
bg = "primary",
|
|
breadcrumbs,
|
|
left,
|
|
right,
|
|
}) => {
|
|
const [toggleSidebar, setToggleSidebar] = useState(false);
|
|
const [analyticsModal, setAnalyticsModal] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { issueView } = useIssuesView();
|
|
|
|
const { loading, error, memberRole: memberType } = useProjectMyMembership();
|
|
|
|
const settingsLayout = router.pathname.includes("/settings");
|
|
|
|
return (
|
|
<Container meta={meta}>
|
|
<CommandPalette />
|
|
<div className="relative flex h-screen w-full overflow-hidden">
|
|
<AppSidebar
|
|
toggleSidebar={toggleSidebar}
|
|
setToggleSidebar={setToggleSidebar}
|
|
isAnalyticsModalOpen={analyticsModal}
|
|
setAnalyticsModal={setAnalyticsModal}
|
|
/>
|
|
|
|
{loading ? (
|
|
<div className="grid h-full w-full place-items-center p-4">
|
|
<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">
|
|
<div className="space-y-4 text-center">
|
|
<p className="text-2xl font-semibold">No such project exists. Create one?</p>
|
|
<PrimaryButton
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", { key: "p" });
|
|
document.dispatchEvent(e);
|
|
}}
|
|
>
|
|
Create project
|
|
</PrimaryButton>
|
|
</div>
|
|
</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-brand-surface-1"
|
|
: bg === "secondary"
|
|
? "bg-brand-sidebar"
|
|
: "bg-brand-base"
|
|
}`}
|
|
>
|
|
{analyticsModal && (
|
|
<AnalyticsWorkspaceModal
|
|
isOpen={analyticsModal}
|
|
onClose={() => setAnalyticsModal(false)}
|
|
/>
|
|
)}
|
|
{!noHeader && (
|
|
<AppHeader
|
|
breadcrumbs={breadcrumbs}
|
|
left={left}
|
|
right={right}
|
|
setToggleSidebar={setToggleSidebar}
|
|
/>
|
|
)}
|
|
<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>
|
|
</Container>
|
|
);
|
|
};
|