import { Button, Label, Modal, ModalBody, ModalHeader, Textarea, ToggleSwitch } from "flowbite-react"; import { useState } from "react"; import { ENDPOINTS } from "#/api/config"; export const CommentsEditModal = (props: { isOpen: boolean; setIsOpen: any; parentComment?: any; token: string; setShouldRender?: any; setCommentSend?: any; type?: "release" | "collection"; }) => { const [message, setMessage] = useState(props.parentComment.message); const [isSpoiler, setIsSpoiler] = useState(props.parentComment.isSpoiler); const [isSending, setIsSending] = useState(false); function _sendComment(e) { e.preventDefault(); const re = /\n/gi; const data = { message: message.replace(re, "\r\n").trim(), spoiler: isSpoiler, }; async function _send() { let url; if (props.type == "collection") { url = `${ENDPOINTS.collection.base}/comment/edit/${props.parentComment.id}?token=${props.token}`; } else { url = `${ENDPOINTS.release.info}/comment/edit/${props.parentComment.id}?token=${props.token}`; } const res = await fetch(url, { method: "POST", body: JSON.stringify(data), }); if (props.setShouldRender && props.setCommentSend) { props.setShouldRender(true); props.setCommentSend(true); } props.setIsOpen(false); setIsSending(false); } if (props.token && message.trim() != "") { setIsSending(true); _send(); } } return ( props.setIsOpen(false)} >

Редактировать комментарий

_sendComment(e)}>