forked from github/plane
20e7dc68e6
* style: update modals typography, alignment * style: made the modal separator full width * style: delete modals consistency * style: update the remaining delete modals * chore: delete modal secondary button text * style: update the remaining create modals * chore: update cancel button text * chore: created modal core * style: modals responsiveness
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
import React, { useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
// types
|
|
import type { IIssueLabel } from "@plane/types";
|
|
// ui
|
|
import { TOAST_TYPE, setToast } from "@plane/ui";
|
|
// components
|
|
import { AlertModalCore } from "@/components/core";
|
|
// hooks
|
|
import { useLabel } from "@/hooks/store";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
data: IIssueLabel | null;
|
|
};
|
|
|
|
export const DeleteLabelModal: React.FC<Props> = observer((props) => {
|
|
const { isOpen, onClose, data } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// store hooks
|
|
const { deleteLabel } = useLabel();
|
|
// 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(() => {
|
|
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 (
|
|
<AlertModalCore
|
|
handleClose={handleClose}
|
|
handleSubmit={handleDeletion}
|
|
isDeleting={isDeleteLoading}
|
|
isOpen={isOpen}
|
|
title="Delete Label"
|
|
content={
|
|
<>
|
|
Are you sure you want to delete <span className="font-medium text-custom-text-100">{data?.name}</span>? This
|
|
will remove the label from all the issue and from any views where the label is being filtered upon.
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
});
|