import { useState } from "react"; import omit from "lodash/omit"; import { observer } from "mobx-react"; import { useRouter } from "next/router"; import { Copy, ExternalLink, Link, Pencil, Trash2 } from "lucide-react"; // types import { TIssue } from "@plane/types"; // ui import { ArchiveIcon, ContextMenu, CustomMenu, TContextMenuItem, TOAST_TYPE, setToast } from "@plane/ui"; // components import { ArchiveIssueModal, CreateUpdateIssueModal, DeleteIssueModal } from "@/components/issues"; // constants import { EIssuesStoreType } from "@/constants/issue"; import { STATE_GROUPS } from "@/constants/state"; // helpers import { cn } from "@/helpers/common.helper"; import { copyUrlToClipboard } from "@/helpers/string.helper"; // hooks import { useEventTracker, useProjectState } from "@/hooks/store"; // types import { IQuickActionProps } from "../list/list-view-types"; export const AllIssueQuickActions: React.FC = observer((props) => { const { issue, handleDelete, handleUpdate, handleArchive, customActionButton, portalElement, readOnly = false, placements = "bottom-start", parentRef, } = props; // states const [createUpdateIssueModal, setCreateUpdateIssueModal] = useState(false); const [issueToEdit, setIssueToEdit] = useState(undefined); const [deleteIssueModal, setDeleteIssueModal] = useState(false); const [archiveIssueModal, setArchiveIssueModal] = useState(false); // router const router = useRouter(); const { workspaceSlug } = router.query; // store hooks const { setTrackElement } = useEventTracker(); const { getStateById } = useProjectState(); // derived values const stateDetails = getStateById(issue.state_id); const isEditingAllowed = !readOnly; // auth const isArchivingAllowed = handleArchive && isEditingAllowed; const isInArchivableGroup = !!stateDetails && [STATE_GROUPS.completed.key, STATE_GROUPS.cancelled.key].includes(stateDetails?.group); const issueLink = `${workspaceSlug}/projects/${issue.project_id}/issues/${issue.id}`; const handleOpenInNewTab = () => window.open(`/${issueLink}`, "_blank"); const handleCopyIssueLink = () => copyUrlToClipboard(issueLink).then(() => setToast({ type: TOAST_TYPE.SUCCESS, title: "Link copied", message: "Issue link copied to clipboard", }) ); const duplicateIssuePayload = omit( { ...issue, name: `${issue.name} (copy)`, }, ["id"] ); const MENU_ITEMS: TContextMenuItem[] = [ { key: "edit", title: "Edit", icon: Pencil, action: () => { setTrackElement("Global issues"); setIssueToEdit(issue); setCreateUpdateIssueModal(true); }, shouldRender: isEditingAllowed, }, { key: "make-a-copy", title: "Make a copy", icon: Copy, action: () => { setTrackElement("Global issues"); setCreateUpdateIssueModal(true); }, shouldRender: isEditingAllowed, }, { key: "open-in-new-tab", title: "Open in new tab", icon: ExternalLink, action: handleOpenInNewTab, }, { key: "copy-link", title: "Copy link", icon: Link, action: handleCopyIssueLink, }, { key: "archive", title: "Archive", description: isInArchivableGroup ? undefined : "Only completed or canceled\nissues can be archived", icon: ArchiveIcon, className: "items-start", iconClassName: "mt-1", action: () => setArchiveIssueModal(true), disabled: !isInArchivableGroup, shouldRender: isArchivingAllowed, }, { key: "delete", title: "Delete", icon: Trash2, action: () => { setTrackElement("Global issues"); setDeleteIssueModal(true); }, shouldRender: isEditingAllowed, }, ]; return ( <> setArchiveIssueModal(false)} onSubmit={handleArchive} /> setDeleteIssueModal(false)} onSubmit={handleDelete} /> { setCreateUpdateIssueModal(false); setIssueToEdit(undefined); }} data={issueToEdit ?? duplicateIssuePayload} onSubmit={async (data) => { if (issueToEdit && handleUpdate) await handleUpdate(data); }} storeType={EIssuesStoreType.PROJECT} /> {MENU_ITEMS.map((item) => { if (item.shouldRender === false) return null; return ( { e.preventDefault(); e.stopPropagation(); item.action(); }} className={cn( "flex items-center gap-2", { "text-custom-text-400": item.disabled, }, item.className )} > {item.icon && }
{item.title}
{item.description && (

{item.description}

)}
); })}
); });