import React, { useState } from "react"; import { observer } from "mobx-react-lite"; import { useRouter } from "next/router"; import { AlertTriangle } from "lucide-react"; import { Dialog, Transition } from "@headlessui/react"; import type { IState } from "@plane/types"; // ui import { Button, TOAST_TYPE, setToast } from "@plane/ui"; // constants import { STATE_DELETED } from "@/constants/event-tracker"; // hooks import { useEventTracker, useProjectState } from "@/hooks/store"; // types type Props = { isOpen: boolean; onClose: () => void; data: IState | null; }; export const DeleteStateModal: React.FC = observer((props) => { const { isOpen, onClose, data } = props; // states const [isDeleteLoading, setIsDeleteLoading] = useState(false); // router const router = useRouter(); const { workspaceSlug } = router.query; // store hooks const { captureProjectStateEvent } = useEventTracker(); const { deleteState } = useProjectState(); const handleClose = () => { onClose(); setIsDeleteLoading(false); }; const handleDeletion = async () => { if (!workspaceSlug || !data) return; setIsDeleteLoading(true); await deleteState(workspaceSlug.toString(), data.project_id, data.id) .then(() => { captureProjectStateEvent({ eventName: STATE_DELETED, payload: { ...data, state: "SUCCESS", }, }); handleClose(); }) .catch((err) => { if (err.status === 400) setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "This state contains some issues within it, please move them to some other state to delete this state.", }); else setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "State could not be deleted. Please try again.", }); captureProjectStateEvent({ eventName: STATE_DELETED, payload: { ...data, state: "FAILED", }, }); }) .finally(() => { setIsDeleteLoading(false); }); }; return (
Delete State

Are you sure you want to delete state-{" "} {data?.name}? All of the data related to the state will be permanently removed. This action cannot be undone.

); });