From 6f4e6e2fa60ad38cbb18979e15d089e677740a6e Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sat, 10 Aug 2024 17:39:35 +0500 Subject: [PATCH] feat: add comment and reply posting, for a release. I'm sorry for this mess . . . --- TODO.md | 4 +- app/components/Comments/Comments.Add.tsx | 132 ++++++++ app/components/Comments/Comments.Comment.tsx | 328 +++++++++++-------- app/components/Comments/Comments.Main.tsx | 52 ++- 4 files changed, 347 insertions(+), 169 deletions(-) create mode 100644 app/components/Comments/Comments.Add.tsx diff --git a/TODO.md b/TODO.md index c4dad17..1954512 100644 --- a/TODO.md +++ b/TODO.md @@ -30,8 +30,8 @@ ### Страница аниме тайтла - [ ] Просмотр комментариев и комментирование - - [ ] Отправление комментариев - - [ ] Отправление ответов + - [ ] Удаление + - [ ] Редактирование - [ ] Видео тайтла [трейлеры, опенинги] (?) diff --git a/app/components/Comments/Comments.Add.tsx b/app/components/Comments/Comments.Add.tsx new file mode 100644 index 0000000..b275ddb --- /dev/null +++ b/app/components/Comments/Comments.Add.tsx @@ -0,0 +1,132 @@ +import { Button, Modal, ToggleSwitch, Label, Textarea } from "flowbite-react"; +import { CommentsComment } from "./Comments.Comment"; +import { useState } from "react"; +import { ENDPOINTS } from "#/api/config"; + +export const CommentsAddModal = (props: { + isOpen: boolean; + setIsOpen: any; + release_id: number; + isReply?: boolean; + parentComment?: any; + parentProfile?: any; + token: string; + setShouldRender?: any; + setCommentSend?: any; +}) => { + const [message, setMessage] = useState( + props.isReply ? `${props.parentProfile.login}, ` : "" + ); + const [isSpoiler, setIsSpoiler] = useState(false); + const [isSending, setIsSending] = useState(false); + + function _sendComment(e) { + e.preventDefault(); + const re = /\n/gi; + const data = { + message: message.replace(re, "\r\n").trim(), + parentCommentId: !props.parentComment ? null : props.parentComment.id, + replyToProfileId: !props.parentProfile ? null : props.parentProfile.id, + spoiler: isSpoiler, + }; + + async function _send() { + const res = await fetch( + `${ENDPOINTS.release.info}/comment/add/${props.release_id}?token=${props.token}`, + { + method: "POST", + body: JSON.stringify(data), + } + ); + + if (props.isReply && props.setShouldRender && props.setCommentSend) { + props.setShouldRender(true); + props.setCommentSend(true); + } + + setMessage(props.isReply ? `${props.parentProfile.login}, ` : ""); + setIsSpoiler(false); + props.setIsOpen(false); + setIsSending(false); + } + + if (props.token && message.trim() != "") { + setIsSending(true); + _send(); + } + } + + return ( + props.setIsOpen(false)} + > + +

+ {props.isReply ? "Ответ на комментарий" : "Оставить комментарий"} +

+
+ + {props.isReply && ( +
+ +
+ )} +
_sendComment(e)}> +
+
+
+ +
+ {props.token && ( + + )} +
- - +
{props.comments.map((comment: any) => ( + ); }; @@ -143,7 +138,6 @@ const CommentsAllModal = (props: { } useEffect(() => { - console.log(scrollPosition); if (scrollPosition >= 95 && scrollPosition <= 96) { setSize(size + 1); } @@ -160,7 +154,7 @@ const CommentsAllModal = (props: {

Все комментарии

-

+

всего: {!isLoadingEnd ? "загрузка..." : data[0].total_count}

@@ -175,6 +169,7 @@ const CommentsAllModal = (props: { ) : content ? ( content.map((comment: any) => ( + /> )) ) : (

@@ -197,7 +192,6 @@ const CommentsAllModal = (props: {

)} - {/* TEXT */}
); };