"use client"; import React, { useState } from "react"; import { observer } from "mobx-react"; import { useParams } from "next/navigation"; // types import { STATE_TRACKER_EVENTS } from "@plane/constants"; import { TOAST_TYPE, setToast } from "@plane/propel/toast"; import type { IState } from "@plane/types"; // ui import { AlertModalCore } from "@plane/ui"; // constants // hooks import { captureError, captureSuccess } from "@/helpers/event-tracker.helper"; import { useProjectState } from "@/hooks/store/use-project-state"; type TStateDeleteModal = { isOpen: boolean; onClose: () => void; data: IState | null; }; export const StateDeleteModal: React.FC = observer((props) => { const { isOpen, onClose, data } = props; // states const [isDeleteLoading, setIsDeleteLoading] = useState(false); // router const { workspaceSlug } = useParams(); 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(() => { captureSuccess({ eventName: STATE_TRACKER_EVENTS.delete, payload: { id: data.id, }, }); handleClose(); }) .catch((err) => { if (err.status === 400) setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "This state contains some work items 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.", }); captureError({ eventName: STATE_TRACKER_EVENTS.delete, payload: { id: data.id, }, }); }) .finally(() => { setIsDeleteLoading(false); }); }; return ( 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. } /> ); });