forked from github/plane
30cc923fdb
* fix: issue archive without automation * fix: unarchive issue endpoint change * chore: archiving logic implemented in the quick-actions dropdowns * chore: peek overview archive button * chore: issue archive completed at state * chore: updated archiving icon and added archive option everywhere * chore: all issues quick actions dropdown * chore: archive and unarchive response * fix: archival mutation * fix: restore issue from peek overview * chore: update notification content for archive/restore * refactor: activity user name * fix: all issues mutation * fix: restore issue auth * chore: close peek overview on archival --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com>
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// hoks
|
|
import { useIssues } from "hooks/store";
|
|
// components
|
|
import { ModuleIssueQuickActions } from "components/issues";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
import { EIssueActions } from "../../types";
|
|
import { BaseCalendarRoot } from "../base-calendar-root";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { useMemo } from "react";
|
|
|
|
export const ModuleCalendarLayout: React.FC = observer(() => {
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.MODULE);
|
|
const router = useRouter();
|
|
const { workspaceSlug, moduleId } = router.query as {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
moduleId: string;
|
|
};
|
|
|
|
const issueActions = useMemo(
|
|
() => ({
|
|
[EIssueActions.UPDATE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !moduleId) return;
|
|
await issues.updateIssue(workspaceSlug, issue.project_id, issue.id, issue, moduleId);
|
|
},
|
|
[EIssueActions.DELETE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !moduleId) return;
|
|
await issues.removeIssue(workspaceSlug, issue.project_id, issue.id, moduleId);
|
|
},
|
|
[EIssueActions.REMOVE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !moduleId) return;
|
|
await issues.removeIssueFromModule(workspaceSlug, issue.project_id, moduleId, issue.id);
|
|
},
|
|
[EIssueActions.ARCHIVE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !moduleId) return;
|
|
await issues.archiveIssue(workspaceSlug, issue.project_id, issue.id, moduleId);
|
|
},
|
|
}),
|
|
[issues, workspaceSlug, moduleId]
|
|
);
|
|
|
|
return (
|
|
<BaseCalendarRoot
|
|
issueStore={issues}
|
|
issuesFilterStore={issuesFilter}
|
|
QuickActions={ModuleIssueQuickActions}
|
|
issueActions={issueActions}
|
|
viewId={moduleId}
|
|
/>
|
|
);
|
|
});
|