mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
c4602951c9
* fix: kanban board block menu click * fix: menu active/disable * fix: drag n drop delete modal * fix: quick action button in all the layouts * chore: toast for drag & drop api
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { CustomMenu } from "@plane/ui";
|
|
import { Link, Trash2 } from "lucide-react";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import { DeleteArchivedIssueModal } from "components/issues";
|
|
// helpers
|
|
import { copyUrlToClipboard } from "helpers/string.helper";
|
|
// types
|
|
import { IQuickActionProps } from "../list/list-view-types";
|
|
|
|
export const ArchivedIssueQuickActions: React.FC<IQuickActionProps> = (props) => {
|
|
const { issue, handleDelete, customActionButton } = props;
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
// states
|
|
const [deleteIssueModal, setDeleteIssueModal] = useState(false);
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const handleCopyIssueLink = () => {
|
|
copyUrlToClipboard(`/${workspaceSlug}/projects/${issue.project}/archived-issues/${issue.id}`).then(() =>
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Link copied",
|
|
message: "Issue link copied to clipboard",
|
|
})
|
|
);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<DeleteArchivedIssueModal
|
|
data={issue}
|
|
isOpen={deleteIssueModal}
|
|
handleClose={() => setDeleteIssueModal(false)}
|
|
onSubmit={handleDelete}
|
|
/>
|
|
<CustomMenu placement="bottom-start" customButton={customActionButton} ellipsis>
|
|
<CustomMenu.MenuItem
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
handleCopyIssueLink();
|
|
}}
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<Link className="h-3 w-3" />
|
|
Copy link
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setDeleteIssueModal(true);
|
|
}}
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<Trash2 className="h-3 w-3" />
|
|
Delete issue
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
</CustomMenu>
|
|
</>
|
|
);
|
|
};
|