import React, { useState } from "react"; import { observer } from "mobx-react"; import { useRouter } from "next/router"; import { AlertTriangle } from "lucide-react"; import { Dialog, Transition } from "@headlessui/react"; // hooks import type { IIssueLabel } from "@plane/types"; import { Button, TOAST_TYPE, setToast } from "@plane/ui"; // constants import { E_LABELS, LABEL_DELETED, LABEL_GROUP_DELETED } from "@/constants/event-tracker"; import { useLabel, useEventTracker } from "@/hooks/store"; // icons // ui // types type Props = { isOpen: boolean; onClose: () => void; data: IIssueLabel | null; }; export const DeleteLabelModal: React.FC = observer((props) => { const { isOpen, onClose, data } = props; // router const router = useRouter(); const { workspaceSlug, projectId } = router.query; // store hooks const { deleteLabel, projectLabelsTree } = useLabel(); const { captureEvent } = useEventTracker(); // states const [isDeleteLoading, setIsDeleteLoading] = useState(false); const handleClose = () => { onClose(); setIsDeleteLoading(false); }; const handleDeletion = async () => { if (!workspaceSlug || !projectId || !data) return; setIsDeleteLoading(true); await deleteLabel(workspaceSlug.toString(), projectId.toString(), data.id) .then(() => { const labelChildCount = projectLabelsTree?.find((label) => label.id === data.id)?.children?.length || 0; if (labelChildCount > 0) { captureEvent(LABEL_GROUP_DELETED, { group_id: data.id, children_count: labelChildCount, element: E_LABELS, state: "SUCCESS", }); } else { captureEvent(LABEL_DELETED, { label_id: data.id, element: E_LABELS, state: "SUCCESS", }); } handleClose(); }) .catch((err) => { setIsDeleteLoading(false); const error = err?.error || "Label could not be deleted. Please try again."; setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: error, }); }); }; return (
Delete Label

Are you sure you wish to delete{" "} {data?.name}? This will remove the label from all the issue and from any views where the label is being filtered upon.

); });