Files
plane/apps/web/core/components/project-states/state-delete-modal.tsx
chuan bba4bb40c8
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
feat: init
2025-11-11 01:56:44 +08:00

93 lines
2.5 KiB
TypeScript

"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<TStateDeleteModal> = 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 (
<AlertModalCore
handleClose={handleClose}
handleSubmit={handleDeletion}
isSubmitting={isDeleteLoading}
isOpen={isOpen}
title="Delete State"
content={
<>
Are you sure you want to delete state- <span className="font-medium text-custom-text-100">{data?.name}</span>?
All of the data related to the state will be permanently removed. This action cannot be undone.
</>
}
/>
);
});