"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"; export function ProfileActivity(props: { profile_id: number; commentCount: number; videoCount: number; collectionCount: number; collectionPreview: any; friendsCount: number; friendsPreview: any; }) { const [tab, setTab] = useState< "collections" | "comments" | "friends" | "videos" >("collections"); const [collections, setCollections] = useState>({}); function _setCollection(array: any[]) { if (array && array.length == 0) { return; } let _coll = array.filter((col) => { if (typeof col == "number") { return false; } return true; }); _coll.map((col) => { setCollections((prev) => { return { ...prev, [col.id]: col, }; }); if ( col.creator.collections_preview && col.creator.collections_preview.length > 0 ) { _setCollection(col.creator.collections_preview || []); } }); } useEffect(() => { _setCollection(props.collectionPreview || []); // eslint-disable-next-line react-hooks/exhaustive-deps }, [props.collectionPreview]); return (

Активность

{tab == "collections" && ( )} {tab == "comments" && <>comments} {tab == "friends" && } {tab == "videos" && <>videos}
); }