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>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 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 { ArchivedIssueQuickActions } from "components/issues";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
// constants
|
|
import { BaseListRoot } from "../base-list-root";
|
|
import { EIssueActions } from "../../types";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
|
|
export const ArchivedIssueListLayout: FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.ARCHIVED);
|
|
const issueActions = useMemo(
|
|
() => ({
|
|
[EIssueActions.DELETE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await issues.removeIssue(workspaceSlug, projectId, issue.id);
|
|
},
|
|
[EIssueActions.RESTORE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await issues.restoreIssue(workspaceSlug, projectId, issue.id);
|
|
},
|
|
}),
|
|
[issues, workspaceSlug, projectId]
|
|
);
|
|
|
|
const canEditPropertiesBasedOnProject = () => false;
|
|
|
|
return (
|
|
<BaseListRoot
|
|
issuesFilter={issuesFilter}
|
|
issues={issues}
|
|
QuickActions={ArchivedIssueQuickActions}
|
|
issueActions={issueActions}
|
|
storeType={EIssuesStoreType.PROJECT}
|
|
canEditPropertiesBasedOnProject={canEditPropertiesBasedOnProject}
|
|
/>
|
|
);
|
|
});
|