mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
53367a6bc4
* new toast setup * chore: new toast implementation. * chore: move toast component to ui package. * chore: replace `setToast` with `setPromiseToast` in required places for better UX. * chore: code cleanup. * chore: update theme. * fix: theme switching issue. * chore: remove toast from issue update operations. * chore: add promise toast for add/ remove issue to cycle/ module and remove local spinners. --------- Co-authored-by: rahulramesha <rahulramesham@gmail.com>
152 lines
5.3 KiB
TypeScript
152 lines
5.3 KiB
TypeScript
import { useState, ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { useIssueDetail, useIssues, useProject, useUser } from "hooks/store";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { IssueDetailRoot } from "components/issues";
|
|
import { ProjectArchivedIssueDetailsHeader } from "components/headers";
|
|
import { PageHead } from "components/core";
|
|
// ui
|
|
import { ArchiveIcon, Button, Loader, TOAST_TYPE, setToast } from "@plane/ui";
|
|
// icons
|
|
import { RotateCcw } from "lucide-react";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// constants
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { EUserProjectRoles } from "constants/project";
|
|
|
|
const ArchivedIssueDetailsPage: NextPageWithLayout = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, archivedIssueId } = router.query;
|
|
// states
|
|
const [isRestoring, setIsRestoring] = useState(false);
|
|
// hooks
|
|
const {
|
|
fetchIssue,
|
|
issue: { getIssueById },
|
|
} = useIssueDetail();
|
|
const {
|
|
issues: { restoreIssue },
|
|
} = useIssues(EIssuesStoreType.ARCHIVED);
|
|
const { getProjectById } = useProject();
|
|
const {
|
|
membership: { currentProjectRole },
|
|
} = useUser();
|
|
|
|
const { isLoading } = useSWR(
|
|
workspaceSlug && projectId && archivedIssueId
|
|
? `ARCHIVED_ISSUE_DETAIL_${workspaceSlug}_${projectId}_${archivedIssueId}`
|
|
: null,
|
|
workspaceSlug && projectId && archivedIssueId
|
|
? () => fetchIssue(workspaceSlug.toString(), projectId.toString(), archivedIssueId.toString(), "ARCHIVED")
|
|
: null
|
|
);
|
|
|
|
// derived values
|
|
const issue = archivedIssueId ? getIssueById(archivedIssueId.toString()) : undefined;
|
|
const project = issue ? getProjectById(issue?.project_id) : undefined;
|
|
const pageTitle = project && issue ? `${project?.identifier}-${issue?.sequence_id} ${issue?.name}` : undefined;
|
|
// auth
|
|
const canRestoreIssue = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
|
|
|
if (!issue) return <></>;
|
|
|
|
const handleRestore = async () => {
|
|
if (!workspaceSlug || !projectId || !archivedIssueId) return;
|
|
|
|
setIsRestoring(true);
|
|
|
|
await restoreIssue(workspaceSlug.toString(), projectId.toString(), archivedIssueId.toString())
|
|
.then(() => {
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success",
|
|
message:
|
|
issue &&
|
|
`${getProjectById(issue.project_id)?.identifier}-${
|
|
issue?.sequence_id
|
|
} is restored successfully under the project ${getProjectById(issue.project_id)?.name}`,
|
|
});
|
|
router.push(`/${workspaceSlug}/projects/${projectId}/issues/${archivedIssueId}`);
|
|
})
|
|
.catch(() => {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Something went wrong. Please try again.",
|
|
});
|
|
})
|
|
.finally(() => setIsRestoring(false));
|
|
};
|
|
|
|
const issueLoader = !issue || isLoading ? true : false;
|
|
|
|
return (
|
|
<>
|
|
<PageHead title={pageTitle} />
|
|
{issueLoader ? (
|
|
<Loader className="flex h-full gap-5 p-5">
|
|
<div className="basis-2/3 space-y-2">
|
|
<Loader.Item height="30px" width="40%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="40%" />
|
|
</div>
|
|
<div className="basis-1/3 space-y-3">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</div>
|
|
</Loader>
|
|
) : (
|
|
<div className="flex h-full overflow-hidden">
|
|
<div className="h-full w-full space-y-3 divide-y-2 divide-custom-border-200 overflow-y-auto p-5">
|
|
{issue?.archived_at && canRestoreIssue && (
|
|
<div className="flex items-center justify-between gap-2 rounded-md border border-custom-border-200 bg-custom-background-90 px-2.5 py-2 text-sm text-custom-text-200">
|
|
<div className="flex items-center gap-2">
|
|
<ArchiveIcon className="h-3.5 w-3.5" />
|
|
<p>This issue has been archived.</p>
|
|
</div>
|
|
<Button
|
|
className="flex items-center gap-1.5 rounded-md border border-custom-border-200 p-1.5 text-sm"
|
|
onClick={handleRestore}
|
|
disabled={isRestoring}
|
|
variant="neutral-primary"
|
|
>
|
|
<RotateCcw className="h-3 w-3" />
|
|
<span>{isRestoring ? "Restoring" : "Restore"}</span>
|
|
</Button>
|
|
</div>
|
|
)}
|
|
{workspaceSlug && projectId && archivedIssueId && (
|
|
<IssueDetailRoot
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
issueId={archivedIssueId.toString()}
|
|
is_archived
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|
|
|
|
ArchivedIssueDetailsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectArchivedIssueDetailsHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ArchivedIssueDetailsPage;
|