forked from github/plane
4611ec0b83
* fix: handled undefined issue_id in list layout * dev: issue detail store and optimization * dev: issue filter and list operations * fix: typo on labels update * dev: Handled all issues in the list layout in project issues * dev: handled kanban and auick add issue in swimlanes * chore: fixed peekoverview in kanban * chore: fixed peekoverview in calendar * chore: fixed peekoverview in gantt * chore: updated quick add in the gantt chart * chore: handled issue detail properties and resolved build issues --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
94 lines
2.9 KiB
TypeScript
94 lines
2.9 KiB
TypeScript
import { FC } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// components
|
|
import {
|
|
ListLayout,
|
|
CalendarLayout,
|
|
GanttLayout,
|
|
KanBanLayout,
|
|
ProjectAppliedFiltersRoot,
|
|
ProjectSpreadsheetLayout,
|
|
ProjectEmptyState,
|
|
IssuePeekOverview,
|
|
} from "components/issues";
|
|
// ui
|
|
import { Spinner } from "@plane/ui";
|
|
// hooks
|
|
import { useIssues } from "hooks/store";
|
|
// constants
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
|
|
export const ProjectLayoutRoot: FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// hooks
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.PROJECT);
|
|
|
|
const {} = useSWR(
|
|
workspaceSlug && projectId ? `PROJECT_ISSUES_${workspaceSlug}_${projectId}` : null,
|
|
async () => {
|
|
if (workspaceSlug && projectId) {
|
|
await issuesFilter?.fetchFilters(workspaceSlug.toString(), projectId.toString());
|
|
await issues?.fetchIssues(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issues?.groupedIssueIds ? "mutation" : "init-loader"
|
|
);
|
|
}
|
|
},
|
|
{ revalidateOnFocus: false, refreshInterval: 600000, revalidateOnMount: true }
|
|
);
|
|
|
|
const activeLayout = issuesFilter?.issueFilters?.displayFilters?.layout;
|
|
|
|
if (!workspaceSlug || !projectId) return <></>;
|
|
return (
|
|
<div className="relative flex h-full w-full flex-col overflow-hidden">
|
|
<ProjectAppliedFiltersRoot />
|
|
|
|
{issues?.loader === "init-loader" ? (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<Spinner />
|
|
</div>
|
|
) : (
|
|
<>
|
|
{!issues?.groupedIssueIds ? (
|
|
<div className="relative h-full w-full overflow-y-auto">
|
|
<ProjectEmptyState />
|
|
</div>
|
|
) : (
|
|
<>
|
|
<div className="relative h-full w-full overflow-auto bg-custom-background-90">
|
|
{/* mutation loader */}
|
|
{issues?.loader === "mutation" && (
|
|
<div className="fixed w-[40px] h-[40px] z-50 right-[20px] top-[70px] flex justify-center items-center bg-custom-background-80 shadow-sm rounded">
|
|
<Spinner className="w-4 h-4" />
|
|
</div>
|
|
)}
|
|
|
|
{activeLayout === "list" ? (
|
|
<ListLayout />
|
|
) : activeLayout === "kanban" ? (
|
|
<KanBanLayout />
|
|
) : activeLayout === "calendar" ? (
|
|
<CalendarLayout />
|
|
) : activeLayout === "gantt_chart" ? (
|
|
<GanttLayout />
|
|
) : activeLayout === "spreadsheet" ? (
|
|
<ProjectSpreadsheetLayout />
|
|
) : null}
|
|
</div>
|
|
|
|
{/* peek overview */}
|
|
<IssuePeekOverview />
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|