2023-05-20 12:00:15 +00:00
|
|
|
import { FC } from "react";
|
2023-08-11 10:29:13 +00:00
|
|
|
|
2023-05-21 13:07:26 +00:00
|
|
|
import { useRouter } from "next/router";
|
2023-08-11 10:29:13 +00:00
|
|
|
|
|
|
|
import { KeyedMutator } from "swr";
|
|
|
|
|
|
|
|
// services
|
|
|
|
import cyclesService from "services/cycles.service";
|
|
|
|
// hooks
|
|
|
|
import useUser from "hooks/use-user";
|
2023-05-20 12:00:15 +00:00
|
|
|
// components
|
2023-08-11 10:29:13 +00:00
|
|
|
import { CycleGanttBlock, GanttChartRoot, IBlockUpdateData } from "components/gantt-chart";
|
2023-05-20 12:00:15 +00:00
|
|
|
// types
|
|
|
|
import { ICycle } from "types";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
cycles: ICycle[];
|
2023-08-11 10:29:13 +00:00
|
|
|
mutateCycles: KeyedMutator<ICycle[]>;
|
2023-05-20 12:00:15 +00:00
|
|
|
};
|
|
|
|
|
2023-08-11 10:29:13 +00:00
|
|
|
export const CyclesListGanttChartView: FC<Props> = ({ cycles, mutateCycles }) => {
|
2023-05-21 13:07:26 +00:00
|
|
|
const router = useRouter();
|
2023-08-11 10:29:13 +00:00
|
|
|
const { workspaceSlug } = router.query;
|
|
|
|
|
|
|
|
const { user } = useUser();
|
2023-05-21 13:07:26 +00:00
|
|
|
|
2023-05-20 12:00:15 +00:00
|
|
|
// rendering issues on gantt sidebar
|
|
|
|
const GanttSidebarBlockView = ({ data }: any) => (
|
|
|
|
<div className="relative flex w-full h-full items-center p-1 overflow-hidden gap-1">
|
|
|
|
<div
|
|
|
|
className="rounded-sm flex-shrink-0 w-[10px] h-[10px] flex justify-center items-center"
|
2023-07-17 10:58:23 +00:00
|
|
|
style={{ backgroundColor: "rgb(var(--color-primary-100))" }}
|
2023-05-20 12:00:15 +00:00
|
|
|
/>
|
2023-07-10 07:17:00 +00:00
|
|
|
<div className="text-custom-text-100 text-sm">{data?.name}</div>
|
2023-05-20 12:00:15 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2023-08-11 10:29:13 +00:00
|
|
|
const handleCycleUpdate = (cycle: ICycle, payload: IBlockUpdateData) => {
|
|
|
|
if (!workspaceSlug || !user) return;
|
|
|
|
|
|
|
|
mutateCycles((prevData) => {
|
|
|
|
if (!prevData) return prevData;
|
|
|
|
|
|
|
|
const newList = prevData.map((p) => ({
|
|
|
|
...p,
|
|
|
|
...(p.id === cycle.id
|
|
|
|
? {
|
|
|
|
start_date: payload.start_date ? payload.start_date : p.start_date,
|
|
|
|
target_date: payload.target_date ? payload.target_date : p.end_date,
|
|
|
|
sort_order: payload.sort_order ? payload.sort_order.newSortOrder : p.sort_order,
|
|
|
|
}
|
|
|
|
: {}),
|
|
|
|
}));
|
|
|
|
|
|
|
|
if (payload.sort_order) {
|
|
|
|
const removedElement = newList.splice(payload.sort_order.sourceIndex, 1)[0];
|
|
|
|
newList.splice(payload.sort_order.destinationIndex, 0, removedElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
return newList;
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
const newPayload: any = { ...payload };
|
|
|
|
|
|
|
|
if (newPayload.sort_order && payload.sort_order)
|
|
|
|
newPayload.sort_order = payload.sort_order.newSortOrder;
|
2023-05-20 12:00:15 +00:00
|
|
|
|
2023-08-11 10:29:13 +00:00
|
|
|
cyclesService
|
|
|
|
.patchCycle(workspaceSlug.toString(), cycle.project, cycle.id, newPayload, user)
|
|
|
|
.finally(() => mutateCycles());
|
2023-05-20 12:00:15 +00:00
|
|
|
};
|
|
|
|
|
2023-08-11 10:29:13 +00:00
|
|
|
const blockFormat = (blocks: ICycle[]) =>
|
2023-05-20 12:00:15 +00:00
|
|
|
blocks && blocks.length > 0
|
2023-08-11 10:29:13 +00:00
|
|
|
? blocks
|
|
|
|
.filter((b) => b.start_date && b.end_date)
|
|
|
|
.map((block) => ({
|
|
|
|
data: block,
|
|
|
|
id: block.id,
|
|
|
|
sort_order: block.sort_order,
|
|
|
|
start_date: new Date(block.start_date ?? ""),
|
|
|
|
target_date: new Date(block.end_date ?? ""),
|
|
|
|
}))
|
2023-05-20 12:00:15 +00:00
|
|
|
: [];
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="w-full h-full overflow-y-auto">
|
|
|
|
<GanttChartRoot
|
2023-08-11 10:29:13 +00:00
|
|
|
title="Cycles"
|
2023-05-20 12:00:15 +00:00
|
|
|
loaderTitle="Cycles"
|
|
|
|
blocks={cycles ? blockFormat(cycles) : null}
|
2023-08-11 10:29:13 +00:00
|
|
|
blockUpdateHandler={(block, payload) => handleCycleUpdate(block, payload)}
|
2023-05-20 12:00:15 +00:00
|
|
|
sidebarBlockRender={(data: any) => <GanttSidebarBlockView data={data} />}
|
2023-08-11 10:29:13 +00:00
|
|
|
blockRender={(data: any) => <CycleGanttBlock cycle={data as ICycle} />}
|
|
|
|
enableLeftDrag={false}
|
|
|
|
enableRightDrag={false}
|
2023-05-20 12:00:15 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|