diff --git a/app/components/Profile/Profile.Activity.tsx b/app/components/Profile/Profile.Activity.tsx index d5c53af..1c02ab6 100644 --- a/app/components/Profile/Profile.Activity.tsx +++ b/app/components/Profile/Profile.Activity.tsx @@ -1,16 +1,14 @@ "use client"; import { Button, ButtonGroup, Card } from "flowbite-react"; -// import Link from "next/link"; -// import { numberDeclension } from "#/api/utils"; import { ProfileActivityCollections } from "./Profile.ActivityCollections"; import { useEffect, useState } from "react"; -import { CollectionCourusel } from "../CollectionCourusel/CollectionCourusel"; import { ProfileActivityFriends } from "./Profile.ActivityFriends"; +import { ProfileActivityComment } from "./Profile.ActivityComment"; export function ProfileActivity(props: { profile_id: number; commentCount: number; - videoCount: number; + commentPreview: any; collectionCount: number; collectionPreview: any; friendsCount: number; @@ -95,7 +93,12 @@ export function ProfileActivity(props: { profile_id={props.profile_id} /> )} - {tab == "comments" && <>comments} + {tab == "comments" && ( + + )} {tab == "friends" && ( { + return ( + <> + {props.content && props.content.length > 0 ? + props.content.map((comment) => { + let isHidden = comment.isSpoiler || comment.likes_count < -5 || false; + return ( +
+
+
+ + + {comment.profile.login} + +

+ +

+

0 ? + "text-green-500 dark:text-green-400 border-green-500 dark:border-green-400" + : comment.likes_count < 0 ? + "text-red-500 dark:text-red-400 border-red-500 dark:border-red-400" + : "text-gray-500 dark:text-gray-400 border-gray-500 dark:border-gray-400" + }`} + > + {comment.likes_count} +

+
+
+
+ {comment.release && typeof comment.release != "number" && ( + +

+ {!comment.isDeleted ? + `К релизу: ${comment.release.title_ru || comment.release.title_alt || comment.release.title_original} (${comment.release.year || "?"}) >>` + : ""} +

+ + )} +

+ {!comment.isDeleted ? + comment.message + : "Комментарий был удалён."} +

+ {isHidden && ( + + )} +
+
+ ); + }) + :

Пользователь не оставлял комментарии

} + + ); +}; diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index d5ee3d2..fdd44b4 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -129,7 +129,7 @@ export const ProfilePage = (props: any) => {