forked from github/plane
f347c1cd69
* refactor: update `create/update issue` modal to use currently active store's create/update method. * chore: add condition to avoid multiple API calls if the current store is MODULE or CYCLE. * remove: console log * chore: update `currentStore` to `storeType`.
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { FC, useMemo } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useIssues } from "hooks/store";
|
|
// components
|
|
import { ProjectIssueQuickActions } from "components/issues";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
import { EIssueActions } from "../../types";
|
|
// constants
|
|
import { BaseListRoot } from "../base-list-root";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
|
|
export const DraftIssueListLayout: FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
if (!workspaceSlug || !projectId) return null;
|
|
|
|
// store
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.DRAFT);
|
|
|
|
const issueActions = useMemo(
|
|
() => ({
|
|
[EIssueActions.UPDATE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await issues.updateIssue(workspaceSlug, projectId, issue.id, issue);
|
|
},
|
|
[EIssueActions.DELETE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await issues.removeIssue(workspaceSlug, projectId, issue.id);
|
|
},
|
|
}),
|
|
[issues, workspaceSlug, projectId]
|
|
);
|
|
|
|
return (
|
|
<BaseListRoot
|
|
issuesFilter={issuesFilter}
|
|
issues={issues}
|
|
QuickActions={ProjectIssueQuickActions}
|
|
issueActions={issueActions}
|
|
storeType={EIssuesStoreType.PROJECT}
|
|
/>
|
|
);
|
|
});
|