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>
107 lines
3.7 KiB
TypeScript
107 lines
3.7 KiB
TypeScript
import { useState, Fragment } from "react";
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
// hooks
|
|
import { useProject } from "hooks/store";
|
|
import { useIssues } from "hooks/store/use-issues";
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { Button } from "@plane/ui";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
data?: TIssue;
|
|
dataId?: string | null | undefined;
|
|
handleClose: () => void;
|
|
isOpen: boolean;
|
|
onSubmit?: () => Promise<void>;
|
|
};
|
|
|
|
export const ArchiveIssueModal: React.FC<Props> = (props) => {
|
|
const { dataId, data, isOpen, handleClose, onSubmit } = props;
|
|
// states
|
|
const [isArchiving, setIsArchiving] = useState(false);
|
|
// store hooks
|
|
const { getProjectById } = useProject();
|
|
const { issueMap } = useIssues();
|
|
// toast alert
|
|
const { setToastAlert } = useToast();
|
|
|
|
if (!dataId && !data) return null;
|
|
|
|
const issue = data ? data : issueMap[dataId!];
|
|
const projectDetails = getProjectById(issue.project_id);
|
|
|
|
const onClose = () => {
|
|
setIsArchiving(false);
|
|
handleClose();
|
|
};
|
|
|
|
const handleArchiveIssue = async () => {
|
|
if (!onSubmit) return;
|
|
|
|
setIsArchiving(true);
|
|
await onSubmit()
|
|
.then(() => onClose())
|
|
.catch(() =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Issue could not be archived. Please try again.",
|
|
})
|
|
)
|
|
.finally(() => setIsArchiving(false));
|
|
};
|
|
|
|
return (
|
|
<Transition.Root show={isOpen} as={Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={onClose}>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-custom-backdrop transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-10 overflow-y-auto">
|
|
<div className="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<Dialog.Panel className="relative transform overflow-hidden rounded-lg bg-custom-background-100 text-left shadow-custom-shadow-md transition-all sm:my-8 sm:w-full sm:max-w-lg">
|
|
<div className="px-5 py-4">
|
|
<h3 className="text-xl font-medium 2xl:text-2xl">
|
|
Archive issue {projectDetails?.identifier} {issue.sequence_id}
|
|
</h3>
|
|
<p className="text-sm text-custom-text-200 mt-3">
|
|
Are you sure you want to archive the issue? All your archived issues can be restored later.
|
|
</p>
|
|
<div className="flex justify-end gap-2 mt-3">
|
|
<Button variant="neutral-primary" size="sm" onClick={onClose}>
|
|
Cancel
|
|
</Button>
|
|
<Button size="sm" tabIndex={1} onClick={handleArchiveIssue} loading={isArchiving}>
|
|
{isArchiving ? "Archiving" : "Archive"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
};
|