diff --git a/TODO.md b/TODO.md index 1954512..e5571e3 100644 --- a/TODO.md +++ b/TODO.md @@ -29,10 +29,6 @@ ### Страница аниме тайтла -- [ ] Просмотр комментариев и комментирование - - [ ] Удаление - - [ ] Редактирование - - [ ] Видео тайтла [трейлеры, опенинги] (?) ### Профиль diff --git a/app/components/Comments/Comments.Comment.tsx b/app/components/Comments/Comments.Comment.tsx index e13bf9a..02b3707 100644 --- a/app/components/Comments/Comments.Comment.tsx +++ b/app/components/Comments/Comments.Comment.tsx @@ -1,9 +1,11 @@ import { unixToDate, sinceUnixDate } from "#/api/utils"; -import { useEffect, useState, useCallback } from "react"; +import { useEffect, useState } from "react"; import { ENDPOINTS } from "#/api/config"; -import { Button } from "flowbite-react"; +import { Button, Dropdown } from "flowbite-react"; import Link from "next/link"; import { CommentsAddModal } from "./Comments.Add"; +import { CommentsEditModal } from "./Comments.Edit"; +import { useUserStore } from "#/store/auth"; export const CommentsComment = (props: { release_id: number; @@ -30,10 +32,12 @@ export const CommentsComment = (props: { const [likes, setLikes] = useState(props.comment.likes_count); const [vote, setVote] = useState(props.comment.vote); const [isAddCommentsOpen, setIsAddCommentsOpen] = useState(false); + const [isEditCommentsOpen, setIsEditCommentsOpen] = useState(false); const [isHidden, setIsHidden] = useState( !props.isReplying && (props.comment.isSpoiler || props.comment.likes_count < -5) ); + const user: any = useUserStore((state) => state.user); const [shouldRender, setShouldRender] = useState(true); const [commentSend, setCommentSend] = useState(false); @@ -43,6 +47,18 @@ export const CommentsComment = (props: { parentCommentId = props.parentComment.id; } + async function _deleteComment() { + if (props.token) { + let url = `${ENDPOINTS.release.info}/comment/delete/${props.comment.id}?token=${props.token}`; + await fetch(url); + + if (props.setShouldRender && props.setCommentSend) { + props.setShouldRender(true); + props.setCommentSend(true); + } + } + } + useEffect(() => { async function _fetchReplies() { setReplies([]); @@ -135,6 +151,20 @@ export const CommentsComment = (props: {
+ {user && props.profile.id == user.id && ( +
@@ -266,11 +296,21 @@ export const CommentsComment = (props: {
release_id={props.release_id}
token={props.token}
isReply={true}
- parentComment={props.comment}
+ parentComment={props.parentComment || props.comment}
parentProfile={props.profile}
setShouldRender={props.setShouldRender || setShouldRender}
setCommentSend={props.setCommentSend || setCommentSend}
/>
+ {props.token && (
+
+ Редактировать комментарий
+