mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
70 lines
2.3 KiB
TypeScript
70 lines
2.3 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { IssuePeekOverview } from "components/issues/peek-overview";
|
|
import { ActiveLoader } from "components/ui";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { useIssues } from "hooks/store";
|
|
// components
|
|
import { ProjectDraftEmptyState } from "../empty-states";
|
|
import { DraftIssueAppliedFiltersRoot } from "../filters/applied-filters/roots/draft-issue";
|
|
import { DraftKanBanLayout } from "../kanban/roots/draft-issue-root";
|
|
import { DraftIssueListLayout } from "../list/roots/draft-issue-root";
|
|
// ui
|
|
// constants
|
|
|
|
export const DraftIssueLayoutRoot: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// hooks
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.DRAFT);
|
|
|
|
useSWR(
|
|
workspaceSlug && projectId ? `DRAFT_ISSUES_${workspaceSlug.toString()}_${projectId.toString()}` : null,
|
|
async () => {
|
|
if (workspaceSlug && projectId) {
|
|
await issuesFilter?.fetchFilters(workspaceSlug.toString(), projectId.toString());
|
|
await issues?.fetchIssues(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issues?.groupedIssueIds ? "mutation" : "init-loader"
|
|
);
|
|
}
|
|
},
|
|
{ revalidateIfStale: false, revalidateOnFocus: false }
|
|
);
|
|
|
|
const activeLayout = issuesFilter?.issueFilters?.displayFilters?.layout || undefined;
|
|
|
|
if (!workspaceSlug || !projectId) return <></>;
|
|
|
|
if (issues?.loader === "init-loader" || !issues?.groupedIssueIds) {
|
|
return <>{activeLayout && <ActiveLoader layout={activeLayout} />}</>;
|
|
}
|
|
|
|
return (
|
|
<div className="relative flex h-full w-full flex-col overflow-hidden">
|
|
<DraftIssueAppliedFiltersRoot />
|
|
|
|
{issues?.groupedIssueIds?.length === 0 ? (
|
|
<div className="relative h-full w-full overflow-y-auto">
|
|
<ProjectDraftEmptyState />
|
|
</div>
|
|
) : (
|
|
<div className="relative h-full w-full overflow-auto">
|
|
{activeLayout === "list" ? (
|
|
<DraftIssueListLayout />
|
|
) : activeLayout === "kanban" ? (
|
|
<DraftKanBanLayout />
|
|
) : null}
|
|
{/* issue peek overview */}
|
|
<IssuePeekOverview is_draft />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|