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 && (
+
+
+
+ )}
+
+
+
+ );
+};
diff --git a/app/components/Comments/Comments.Comment.tsx b/app/components/Comments/Comments.Comment.tsx
index a152aef..e13bf9a 100644
--- a/app/components/Comments/Comments.Comment.tsx
+++ b/app/components/Comments/Comments.Comment.tsx
@@ -1,10 +1,12 @@
import { unixToDate, sinceUnixDate } from "#/api/utils";
-import { useEffect, useState } from "react";
+import { useEffect, useState, useCallback } from "react";
import { ENDPOINTS } from "#/api/config";
import { Button } from "flowbite-react";
import Link from "next/link";
+import { CommentsAddModal } from "./Comments.Add";
export const CommentsComment = (props: {
+ release_id: number;
profile: { login: string; avatar: string; id: number };
comment: {
id: number;
@@ -19,17 +21,34 @@ export const CommentsComment = (props: {
};
isSubComment?: boolean;
token: string | null;
+ isReplying?: boolean;
+ parentComment?: any;
+ setShouldRender?: (shouldRender: boolean) => void;
+ setCommentSend?: (commentSend: boolean) => void;
}) => {
const [replies, setReplies] = useState([]);
const [likes, setLikes] = useState(props.comment.likes_count);
const [vote, setVote] = useState(props.comment.vote);
+ const [isAddCommentsOpen, setIsAddCommentsOpen] = useState(false);
const [isHidden, setIsHidden] = useState(
- props.comment.isSpoiler || props.comment.likes_count < -5
+ !props.isReplying &&
+ (props.comment.isSpoiler || props.comment.likes_count < -5)
);
+ const [shouldRender, setShouldRender] = useState(true);
+ const [commentSend, setCommentSend] = useState(false);
+
+ let parentCommentId: number | null = null;
+ if (props.parentComment) {
+ parentCommentId = props.parentComment.id;
+ }
+
useEffect(() => {
async function _fetchReplies() {
- let url = `${ENDPOINTS.release.info}/comment/replies/${props.comment.id}/0?sort=2`;
+ setReplies([]);
+ let url = `${ENDPOINTS.release.info}/comment/replies/${
+ parentCommentId || props.comment.id
+ }/0?sort=2`;
if (props.token) {
url += `&token=${props.token}`;
}
@@ -39,10 +58,17 @@ export const CommentsComment = (props: {
setReplies(data.content);
});
}
- if (!props.isSubComment && props.comment.reply_count > 0) {
+ if (
+ !props.isSubComment &&
+ !props.isReplying &&
+ shouldRender &&
+ (commentSend || props.comment.reply_count > 0)
+ ) {
_fetchReplies();
+ setShouldRender(false);
+ setCommentSend(false);
}
- }, []);
+ }, [commentSend]);
async function _sendVote(action: number) {
if (props.token) {
@@ -81,144 +107,170 @@ export const CommentsComment = (props: {
}
return (
-
-
-
-
- {!props.comment.isDeleted
- ? props.comment.message
- : "Комментарий был удалён."}
-
- {isHidden && (
-
- )}
-
-
+
-
-
- {props.token && (
-
- )}
-
-
- {replies.length > 0 &&
- replies.map((comment: any) => (
-
- ))}
-
+ isSubComment={true}
+ token={props.token}
+ parentComment={props.parentComment || props.comment}
+ setShouldRender={props.setShouldRender || setShouldRender}
+ setCommentSend={props.setCommentSend || setCommentSend}
+ />
+ ))}
+
+
+ >
);
};
diff --git a/app/components/Comments/Comments.Main.tsx b/app/components/Comments/Comments.Main.tsx
index 5ca9d4a..6a4bfda 100644
--- a/app/components/Comments/Comments.Main.tsx
+++ b/app/components/Comments/Comments.Main.tsx
@@ -3,6 +3,7 @@ import { CommentsComment } from "./Comments.Comment";
import { useState, useEffect, useCallback } from "react";
import { ENDPOINTS } from "#/api/config";
import useSWRInfinite from "swr/infinite";
+import { CommentsAddModal } from "./Comments.Add";
export const CommentsMain = (props: {
release_id: number;
@@ -10,6 +11,8 @@ export const CommentsMain = (props: {
comments: any;
}) => {
const [isAllCommentsOpen, setIsAllCommentsOpen] = useState(false);
+ const [isAddCommentsOpen, setIsAddCommentsOpen] = useState(false);
+
return (
<>
@@ -23,36 +26,22 @@ export const CommentsMain = (props: {
Популярные и актуальные
- setIsAllCommentsOpen(true)}
- color="light"
- pill={true}
- size={"sm"}
- >
- Показать все
-
-
-