96 lines
2.7 KiB
TypeScript
96 lines
2.7 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { Input, Modal, Spin } from "antd";
|
|
import { useModalState } from "../../../zustand/Modal";
|
|
import { ModalEnum } from "../../../enums/Model";
|
|
import { useObjectToEdit } from "../../../zustand/ObjectToEditState";
|
|
import { useDeleteQuestion } from "../../../api/Question";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
const ModalForm: React.FC = () => {
|
|
const { isOpen, setIsOpen } = useModalState((state) => state);
|
|
const [inputValue, setInputValue] = useState("");
|
|
|
|
const { mutate, isLoading, isSuccess } = useDeleteQuestion();
|
|
const { object_to_edit, set_object_to_edit } = useObjectToEdit();
|
|
|
|
useEffect(() => {
|
|
if (isSuccess) {
|
|
setIsOpen("");
|
|
setInputValue("");
|
|
}
|
|
}, [isSuccess, setIsOpen]);
|
|
|
|
const handleSubmit = () => {
|
|
mutate({
|
|
id: Number(object_to_edit?.id),
|
|
});
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
setInputValue("");
|
|
setIsOpen("");
|
|
set_object_to_edit({});
|
|
};
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
// Step 2: Handle changes to the input field
|
|
setInputValue(e.target.value);
|
|
};
|
|
const [t] = useTranslation();
|
|
console.log(object_to_edit?.id);
|
|
|
|
return (
|
|
<>
|
|
<Modal
|
|
className="ModalForm"
|
|
centered
|
|
width={"40vw"}
|
|
footer={null}
|
|
open={isOpen === ModalEnum?.QUESTION_DELETE}
|
|
onCancel={handleCancel}
|
|
>
|
|
<header>
|
|
{t("practical.delete")} {t("input.id")} ({object_to_edit?.id}){" "}
|
|
</header>
|
|
<main className="main_modal">
|
|
<div className="ValidationField w-100 mb-5">
|
|
<label className="text ">
|
|
{t("practical.to_confirm_deletion_please_re_enter")}{" "}
|
|
{t("input.id")} {t("models.Question")}
|
|
</label>
|
|
|
|
<Input
|
|
size="large"
|
|
type="text"
|
|
placeholder={`${t("practical.enter")} ${t("input.id")} ${t("models.Question")} `}
|
|
value={inputValue}
|
|
onChange={handleChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className="buttons">
|
|
<div onClick={handleCancel}>{t("practical.cancel")}</div>
|
|
<button
|
|
className={
|
|
object_to_edit?.id !== inputValue ? "disabled_button" : ""
|
|
}
|
|
disabled={Number(object_to_edit?.id) !== Number(inputValue) || isLoading}
|
|
onClick={handleSubmit}
|
|
>
|
|
{t("practical.delete")}
|
|
|
|
{isLoading && (
|
|
<span className="Spinier_Div">
|
|
<Spin />
|
|
</span>
|
|
)}
|
|
</button>
|
|
</div>
|
|
</main>
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ModalForm;
|