mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
7bff8d2ec5
* chore: issue action cycle sidebar mutation fix * chore: issue action module sidebar mutation fix
66 lines
2.4 KiB
TypeScript
66 lines
2.4 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { CycleIssueQuickActions } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// constants
|
|
import { BaseListRoot } from "../base-list-root";
|
|
import { IProjectStore } from "store/project";
|
|
import { EIssueActions } from "../../types";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export interface ICycleListLayout {}
|
|
|
|
export const CycleListLayout: React.FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, cycleId } = router.query as { workspaceSlug: string; cycleId: string };
|
|
// store
|
|
const {
|
|
cycleIssues: cycleIssueStore,
|
|
cycleIssuesFilter: cycleIssueFilterStore,
|
|
cycle: { fetchCycleWithId },
|
|
} = useMobxStore();
|
|
|
|
const issueActions = {
|
|
[EIssueActions.UPDATE]: async (group_by: string | null, issue: IIssue) => {
|
|
if (!workspaceSlug || !cycleId) return;
|
|
|
|
await cycleIssueStore.updateIssue(workspaceSlug, issue.project, issue.id, issue, cycleId);
|
|
fetchCycleWithId(workspaceSlug, issue.project, cycleId);
|
|
},
|
|
[EIssueActions.DELETE]: async (group_by: string | null, issue: IIssue) => {
|
|
if (!workspaceSlug || !cycleId) return;
|
|
|
|
await cycleIssueStore.removeIssue(workspaceSlug, issue.project, issue.id, cycleId);
|
|
fetchCycleWithId(workspaceSlug, issue.project, cycleId);
|
|
},
|
|
[EIssueActions.REMOVE]: async (group_by: string | null, issue: IIssue) => {
|
|
if (!workspaceSlug || !cycleId || !issue.bridge_id) return;
|
|
|
|
await cycleIssueStore.removeIssueFromCycle(workspaceSlug, issue.project, cycleId, issue.id, issue.bridge_id);
|
|
fetchCycleWithId(workspaceSlug, issue.project, cycleId);
|
|
},
|
|
};
|
|
const getProjects = (projectStore: IProjectStore) => {
|
|
if (!workspaceSlug) return null;
|
|
return projectStore?.projects[workspaceSlug] || null;
|
|
};
|
|
|
|
return (
|
|
<BaseListRoot
|
|
issueFilterStore={cycleIssueFilterStore}
|
|
issueStore={cycleIssueStore}
|
|
QuickActions={CycleIssueQuickActions}
|
|
issueActions={issueActions}
|
|
getProjects={getProjects}
|
|
viewId={cycleId}
|
|
currentStore={EProjectStore.CYCLE}
|
|
addIssuesToView={(issues: string[]) => cycleIssueStore.addIssueToCycle(workspaceSlug, cycleId, issues)}
|
|
/>
|
|
);
|
|
});
|