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>
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { FC } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// hooks
|
|
import useGanttChartViewIssues from "hooks/gantt-chart/view-issues-view";
|
|
import useUser from "hooks/use-user";
|
|
import { updateGanttIssue } from "components/gantt-chart/hooks/block-update";
|
|
// components
|
|
import { GanttChartRoot, renderIssueBlocksStructure } from "components/gantt-chart";
|
|
import { IssueGanttBlock, IssueGanttSidebarBlock } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {};
|
|
|
|
export const ViewIssuesGanttChartView: FC<Props> = ({}) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, viewId } = router.query;
|
|
|
|
const { user } = useUser();
|
|
|
|
const { ganttIssues, mutateGanttIssues } = useGanttChartViewIssues(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
viewId as string
|
|
);
|
|
|
|
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}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|