mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
feat: add counts to activity
This commit is contained in:
parent
339d4150b1
commit
2fce051a54
1 changed files with 9 additions and 34 deletions
|
@ -66,13 +66,19 @@ export function ProfileActivity(props: {
|
|||
color={tab == "comments" ? "blue" : "light"}
|
||||
onClick={() => setTab("comments")}
|
||||
>
|
||||
Комментарии
|
||||
Комментарии | {props.commentCount}
|
||||
</Button>
|
||||
<Button
|
||||
color={tab == "friends" ? "blue" : "light"}
|
||||
onClick={() => setTab("friends")}
|
||||
>
|
||||
Друзья
|
||||
Друзья | {props.friendsCount}
|
||||
</Button>
|
||||
<Button
|
||||
color={tab == "videos" ? "blue" : "light"}
|
||||
onClick={() => setTab("videos")}
|
||||
>
|
||||
Видео | {props.videoCount}
|
||||
</Button>
|
||||
</ButtonGroup>
|
||||
|
||||
|
@ -84,38 +90,7 @@ export function ProfileActivity(props: {
|
|||
)}
|
||||
{tab == "comments" && <>comments</>}
|
||||
{tab == "friends" && <>friends</>}
|
||||
|
||||
{/* <div className="flex items-center gap-4 text-lg">
|
||||
<div>
|
||||
<p>
|
||||
{props.commentCount}{" "}
|
||||
{numberDeclension(
|
||||
props.commentCount,
|
||||
"комментарий",
|
||||
"комментария",
|
||||
"комментариев"
|
||||
)}
|
||||
</p>
|
||||
<p className="mt-2">{props.videoCount} видео</p>
|
||||
</div>
|
||||
<div>
|
||||
<Link href={`/profile/${props.profile_id}/collections`}>
|
||||
<p className="border-b-2 border-gray-300 border-solid dark:border-gray-400 hover:border-gray-500 dark:hover:border-gray-200">
|
||||
{props.collectionCount}{" "}
|
||||
{numberDeclension(
|
||||
props.commentCount,
|
||||
"коллекция",
|
||||
"коллекции",
|
||||
"коллекций"
|
||||
)}
|
||||
</p>
|
||||
</Link>
|
||||
<p className="mt-2">
|
||||
{props.friendsCount}{" "}
|
||||
{numberDeclension(props.commentCount, "друзей", "друга", "друзей")}
|
||||
</p>
|
||||
</div>
|
||||
</div> */}
|
||||
{tab == "videos" && <>videos</>}
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue