mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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>
56 lines
1.7 KiB
TypeScript
56 lines
1.7 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 ListLayout: FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
if (!workspaceSlug || !projectId) return null;
|
|
|
|
// store
|
|
const { issuesFilter, issues } = useIssues(EIssuesStoreType.PROJECT);
|
|
|
|
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);
|
|
},
|
|
[EIssueActions.ARCHIVE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await issues.archiveIssue(workspaceSlug, projectId, issue.id);
|
|
},
|
|
}),
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[issues]
|
|
);
|
|
|
|
return (
|
|
<BaseListRoot
|
|
issuesFilter={issuesFilter}
|
|
issues={issues}
|
|
QuickActions={ProjectIssueQuickActions}
|
|
issueActions={issueActions}
|
|
storeType={EIssuesStoreType.PROJECT}
|
|
/>
|
|
);
|
|
});
|