mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import { useRouter } from "next/router";
|
|
|
|
// hooks
|
|
import useIssuesView from "hooks/use-issues-view";
|
|
import useUser from "hooks/use-user";
|
|
import useGanttChartCycleIssues from "hooks/gantt-chart/cycle-issues-view";
|
|
import { updateGanttIssue } from "components/gantt-chart/hooks/block-update";
|
|
import useProjectDetails from "hooks/use-project-details";
|
|
// components
|
|
import { GanttChartRoot, renderIssueBlocksStructure } from "components/gantt-chart";
|
|
import { IssueGanttBlock, IssueGanttSidebarBlock } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
export const CycleIssuesGanttChartView = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId } = router.query;
|
|
|
|
const { orderBy } = useIssuesView();
|
|
|
|
const { user } = useUser();
|
|
const { projectDetails } = useProjectDetails();
|
|
|
|
const { ganttIssues, mutateGanttIssues } = useGanttChartCycleIssues(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
cycleId as string
|
|
);
|
|
|
|
const isAllowed = projectDetails?.member_role === 20 || projectDetails?.member_role === 15;
|
|
|
|
return (
|
|
<div className="w-full h-full">
|
|
<GanttChartRoot
|
|
border={false}
|
|
title="Issues"
|
|
loaderTitle="Issues"
|
|
blocks={ganttIssues ? renderIssueBlocksStructure(ganttIssues as IIssue[]) : null}
|
|
blockUpdateHandler={(block, payload) =>
|
|
updateGanttIssue(block, payload, mutateGanttIssues, user, workspaceSlug?.toString())
|
|
}
|
|
SidebarBlockRender={IssueGanttSidebarBlock}
|
|
BlockRender={IssueGanttBlock}
|
|
enableBlockLeftResize={isAllowed}
|
|
enableBlockRightResize={isAllowed}
|
|
enableBlockMove={isAllowed}
|
|
enableReorder={orderBy === "sort_order" && isAllowed}
|
|
bottomSpacing
|
|
/>
|
|
</div>
|
|
);
|
|
};
|