mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6a16a98b03
* fix: handled undefined issue_id in list layout * chore: refactor peek overview and user role validation. * chore: sub issues * fix: sub issues state distribution changed * chore: sub_issues implementation in issue detail page * chore: fixes in cycle/ module layout. * Fix progress chart * Module issues's update/ delete. * Peek Overview for Modules/ Cycle. * Fix Cycle Filters not applying bug. --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
90 lines
2.7 KiB
TypeScript
90 lines
2.7 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// mobx store
|
|
import { useIssues } from "hooks/store";
|
|
// components
|
|
import {
|
|
IssuePeekOverview,
|
|
ModuleAppliedFiltersRoot,
|
|
ModuleCalendarLayout,
|
|
ModuleEmptyState,
|
|
ModuleGanttLayout,
|
|
ModuleKanBanLayout,
|
|
ModuleListLayout,
|
|
ModuleSpreadsheetLayout,
|
|
} from "components/issues";
|
|
// ui
|
|
import { Spinner } from "@plane/ui";
|
|
// constants
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
|
|
export const ModuleLayoutRoot: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, moduleId } = router.query;
|
|
// hooks
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.MODULE);
|
|
|
|
useSWR(
|
|
workspaceSlug && projectId && moduleId
|
|
? `MODULE_ISSUES_${workspaceSlug.toString()}_${projectId.toString()}_${moduleId.toString()}`
|
|
: null,
|
|
async () => {
|
|
if (workspaceSlug && projectId && moduleId) {
|
|
await issuesFilter?.fetchFilters(workspaceSlug.toString(), projectId.toString(), moduleId.toString());
|
|
await issues?.fetchIssues(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issues?.groupedIssueIds ? "mutation" : "init-loader",
|
|
moduleId.toString()
|
|
);
|
|
}
|
|
}
|
|
);
|
|
|
|
const activeLayout = issuesFilter?.issueFilters?.displayFilters?.layout || undefined;
|
|
|
|
if (!workspaceSlug || !projectId || !moduleId) return <></>;
|
|
return (
|
|
<div className="relative flex h-full w-full flex-col overflow-hidden">
|
|
<ModuleAppliedFiltersRoot />
|
|
|
|
{issues?.loader === "init-loader" ? (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<Spinner />
|
|
</div>
|
|
) : (
|
|
<>
|
|
{!issues?.groupedIssueIds ? (
|
|
<ModuleEmptyState
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
moduleId={moduleId.toString()}
|
|
/>
|
|
) : (
|
|
<>
|
|
<div className="h-full w-full overflow-auto">
|
|
{activeLayout === "list" ? (
|
|
<ModuleListLayout />
|
|
) : activeLayout === "kanban" ? (
|
|
<ModuleKanBanLayout />
|
|
) : activeLayout === "calendar" ? (
|
|
<ModuleCalendarLayout />
|
|
) : activeLayout === "gantt_chart" ? (
|
|
<ModuleGanttLayout />
|
|
) : activeLayout === "spreadsheet" ? (
|
|
<ModuleSpreadsheetLayout />
|
|
) : null}
|
|
</div>
|
|
{/* peek overview */}
|
|
<IssuePeekOverview />
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|