mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
97bc153ef9
* fix: create more toggle in update issue modal * fix: spreadsheet estimate column hide * fix: flickering in all the layouts * fix: logs
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import {
|
|
ListLayout,
|
|
CalendarLayout,
|
|
GanttLayout,
|
|
KanBanLayout,
|
|
ProjectAppliedFiltersRoot,
|
|
ProjectSpreadsheetLayout,
|
|
ProjectEmptyState,
|
|
} from "components/issues";
|
|
import { Spinner } from "@plane/ui";
|
|
|
|
export const ProjectLayoutRoot: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
const {
|
|
projectIssues: { loader, getIssues, fetchIssues },
|
|
projectIssuesFilter: { issueFilters, fetchFilters },
|
|
} = useMobxStore();
|
|
|
|
useSWR(workspaceSlug && projectId ? `PROJECT_ISSUES_V3_${workspaceSlug}_${projectId}` : null, async () => {
|
|
if (workspaceSlug && projectId) {
|
|
await fetchFilters(workspaceSlug, projectId);
|
|
await fetchIssues(workspaceSlug, projectId, getIssues ? "mutation" : "init-loader");
|
|
}
|
|
});
|
|
|
|
const activeLayout = issueFilters?.displayFilters?.layout;
|
|
|
|
return (
|
|
<div className="relative w-full h-full flex flex-col overflow-hidden">
|
|
<ProjectAppliedFiltersRoot />
|
|
|
|
{loader === "init-loader" || !getIssues ? (
|
|
<div className="w-full h-full flex justify-center items-center">
|
|
<Spinner />
|
|
</div>
|
|
) : (
|
|
<>
|
|
{Object.keys(getIssues ?? {}).length == 0 ? (
|
|
<ProjectEmptyState />
|
|
) : (
|
|
<div className="w-full h-full relative overflow-auto">
|
|
{activeLayout === "list" ? (
|
|
<ListLayout />
|
|
) : activeLayout === "kanban" ? (
|
|
<KanBanLayout />
|
|
) : activeLayout === "calendar" ? (
|
|
<CalendarLayout />
|
|
) : activeLayout === "gantt_chart" ? (
|
|
<GanttLayout />
|
|
) : activeLayout === "spreadsheet" ? (
|
|
<ProjectSpreadsheetLayout />
|
|
) : null}
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|