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>
65 lines
2.1 KiB
TypeScript
65 lines
2.1 KiB
TypeScript
import { FC, useMemo } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useIssues, useUser } 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 { EUserProjectRoles } from "constants/project";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
|
|
export const ProfileIssuesListLayout: FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, userId } = router.query as { workspaceSlug: string; userId: string };
|
|
// store hooks
|
|
const { issues, issuesFilter } = useIssues(EIssuesStoreType.PROFILE);
|
|
|
|
const {
|
|
membership: { currentWorkspaceAllProjectsRole },
|
|
} = useUser();
|
|
|
|
const issueActions = useMemo(
|
|
() => ({
|
|
[EIssueActions.UPDATE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !userId) return;
|
|
|
|
await issues.updateIssue(workspaceSlug, issue.project_id, issue.id, issue, userId);
|
|
},
|
|
[EIssueActions.DELETE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !userId) return;
|
|
|
|
await issues.removeIssue(workspaceSlug, issue.project_id, issue.id, userId);
|
|
},
|
|
[EIssueActions.ARCHIVE]: async (issue: TIssue) => {
|
|
if (!workspaceSlug || !userId) return;
|
|
|
|
await issues.archiveIssue(workspaceSlug, issue.project_id, issue.id, userId);
|
|
},
|
|
}),
|
|
[issues, workspaceSlug, userId]
|
|
);
|
|
|
|
const canEditPropertiesBasedOnProject = (projectId: string) => {
|
|
const currentProjectRole = currentWorkspaceAllProjectsRole && currentWorkspaceAllProjectsRole[projectId];
|
|
|
|
return !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
|
};
|
|
|
|
return (
|
|
<BaseListRoot
|
|
issuesFilter={issuesFilter}
|
|
issues={issues}
|
|
QuickActions={ProjectIssueQuickActions}
|
|
issueActions={issueActions}
|
|
storeType={EIssuesStoreType.PROFILE}
|
|
canEditPropertiesBasedOnProject={canEditPropertiesBasedOnProject}
|
|
/>
|
|
);
|
|
});
|