mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9545dc77d6
* fix: cycle and module reordering in the gantt chart * chore: hide duration from sidebar if no dates are assigned * chore: updated date helper functions to accept undefined params * chore: update cycle sidebar condition
60 lines
2.1 KiB
TypeScript
60 lines
2.1 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useModule, useProject } from "hooks/store";
|
|
// components
|
|
import { GanttChartRoot, IBlockUpdateData, ModuleGanttSidebar } from "components/gantt-chart";
|
|
import { ModuleGanttBlock } from "components/modules";
|
|
// types
|
|
import { IModule } from "@plane/types";
|
|
|
|
export const ModulesListGanttChartView: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store
|
|
const { currentProjectDetails } = useProject();
|
|
const { projectModuleIds, moduleMap, updateModuleDetails } = useModule();
|
|
|
|
const handleModuleUpdate = async (module: IModule, data: IBlockUpdateData) => {
|
|
if (!workspaceSlug || !module) return;
|
|
|
|
const payload: any = { ...data };
|
|
if (data.sort_order) payload.sort_order = data.sort_order.newSortOrder;
|
|
|
|
await updateModuleDetails(workspaceSlug.toString(), module.project, module.id, payload);
|
|
};
|
|
|
|
const blockFormat = (blocks: string[]) =>
|
|
blocks?.map((blockId) => {
|
|
const block = moduleMap[blockId];
|
|
return {
|
|
data: block,
|
|
id: block.id,
|
|
sort_order: block.sort_order,
|
|
start_date: block.start_date ? new Date(block.start_date) : null,
|
|
target_date: block.target_date ? new Date(block.target_date) : null,
|
|
};
|
|
});
|
|
|
|
const isAllowed = currentProjectDetails?.member_role === 20 || currentProjectDetails?.member_role === 15;
|
|
|
|
return (
|
|
<div className="h-full w-full overflow-y-auto">
|
|
<GanttChartRoot
|
|
title="Modules"
|
|
loaderTitle="Modules"
|
|
blocks={projectModuleIds ? blockFormat(projectModuleIds) : null}
|
|
sidebarToRender={(props) => <ModuleGanttSidebar {...props} />}
|
|
blockUpdateHandler={(block, payload) => handleModuleUpdate(block, payload)}
|
|
blockToRender={(data: IModule) => <ModuleGanttBlock data={data} />}
|
|
enableBlockLeftResize={isAllowed}
|
|
enableBlockRightResize={isAllowed}
|
|
enableBlockMove={isAllowed}
|
|
enableReorder={isAllowed}
|
|
showAllBlocks
|
|
/>
|
|
</div>
|
|
);
|
|
});
|