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>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
// hooks
|
|
import { useIssues } from "hooks/store";
|
|
// components
|
|
import { ProjectIssueQuickActions } from "components/issues";
|
|
import { BaseCalendarRoot } from "../base-calendar-root";
|
|
import { EIssueActions } from "../../types";
|
|
import { TIssue } from "@plane/types";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { useMemo } from "react";
|
|
|
|
export const CalendarLayout: React.FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.PROJECT);
|
|
|
|
const issueActions = useMemo(
|
|
() => ({
|
|
[EIssueActions.UPDATE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await issues.updateIssue(workspaceSlug.toString(), issue.project_id, issue.id, issue);
|
|
},
|
|
[EIssueActions.DELETE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await issues.removeIssue(workspaceSlug.toString(), issue.project_id, issue.id);
|
|
},
|
|
[EIssueActions.ARCHIVE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await issues.archiveIssue(workspaceSlug.toString(), issue.project_id, issue.id);
|
|
},
|
|
}),
|
|
[issues, workspaceSlug]
|
|
);
|
|
|
|
return (
|
|
<BaseCalendarRoot
|
|
issueStore={issues}
|
|
issuesFilterStore={issuesFilter}
|
|
QuickActions={ProjectIssueQuickActions}
|
|
issueActions={issueActions}
|
|
/>
|
|
);
|
|
});
|