From 2fce051a54bfb2ecdf18f847335cb59705651999 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Fri, 4 Apr 2025 05:29:36 +0500 Subject: [PATCH] feat: add counts to activity --- app/components/Profile/Profile.Activity.tsx | 43 +++++---------------- 1 file changed, 9 insertions(+), 34 deletions(-) diff --git a/app/components/Profile/Profile.Activity.tsx b/app/components/Profile/Profile.Activity.tsx index 365a5f1..341a7c5 100644 --- a/app/components/Profile/Profile.Activity.tsx +++ b/app/components/Profile/Profile.Activity.tsx @@ -66,13 +66,19 @@ export function ProfileActivity(props: { color={tab == "comments" ? "blue" : "light"} onClick={() => setTab("comments")} > - Комментарии + Комментарии | {props.commentCount} + @@ -84,38 +90,7 @@ export function ProfileActivity(props: { )} {tab == "comments" && <>comments} {tab == "friends" && <>friends} - - {/*
-
-

- {props.commentCount}{" "} - {numberDeclension( - props.commentCount, - "комментарий", - "комментария", - "комментариев" - )} -

-

{props.videoCount} видео

-
-
- -

- {props.collectionCount}{" "} - {numberDeclension( - props.commentCount, - "коллекция", - "коллекции", - "коллекций" - )} -

- -

- {props.friendsCount}{" "} - {numberDeclension(props.commentCount, "друзей", "друга", "друзей")} -

-
-
*/} + {tab == "videos" && <>videos} ); }