remove video from profile counters

This commit is contained in:
Kentai Radiquum 2025-04-04 14:38:46 +05:00
parent 256ecea885
commit 5572f31c60
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 19 additions and 19 deletions

View file

@ -18,9 +18,9 @@ export function ProfileActivity(props: {
token: string;
isMyProfile: boolean;
}) {
const [tab, setTab] = useState<
"collections" | "comments" | "friends" | "videos"
>("collections");
const [tab, setTab] = useState<"collections" | "comments" | "friends">(
"collections"
);
const [collections, setCollections] = useState<Record<number, any>>({});
@ -64,25 +64,28 @@ export function ProfileActivity(props: {
color={tab == "collections" ? "blue" : "light"}
onClick={() => setTab("collections")}
>
Коллекции | {props.collectionCount}
<div className="flex flex-col gap-1 sm:flex-row sm:items-center">
<p>Коллекции</p>
<p>( {props.collectionCount} )</p>
</div>
</Button>
<Button
color={tab == "comments" ? "blue" : "light"}
onClick={() => setTab("comments")}
>
Комментарии | {props.commentCount}
<div className="flex flex-col gap-1 sm:flex-row sm:items-center">
<p>Комментарии</p>
<p>( {props.commentCount} )</p>
</div>
</Button>
<Button
color={tab == "friends" ? "blue" : "light"}
onClick={() => setTab("friends")}
>
Друзья | {props.friendsCount}
</Button>
<Button
color={tab == "videos" ? "blue" : "light"}
onClick={() => setTab("videos")}
>
Видео | {props.videoCount}
<div className="flex flex-col gap-1 sm:flex-row sm:items-center">
<p>Друзья</p>
<p>( {props.friendsCount} )</p>
</div>
</Button>
</ButtonGroup>
@ -101,7 +104,6 @@ export function ProfileActivity(props: {
profile_id={props.profile_id}
/>
)}
{tab == "videos" && <>videos</>}
</Card>
);
}

View file

@ -41,11 +41,9 @@ export const ProfileActivityCollections = (props: {
key={`col-prev-${collection.id}`}
style={{ width: "fit-content" }}
>
<Link href={`/collection/${collection.id}`}>
<div className="w-[400px] xl:w-[500px] aspect-video">
<div className="w-[350px] xl:w-[500px] aspect-video">
<CollectionLink {...collection} />
</div>
</Link>
</SwiperSlide>
);
})}
@ -53,7 +51,7 @@ export const ProfileActivityCollections = (props: {
{props.content && props.content.length > 0 ?
<SwiperSlide style={{ width: "fit-content" }}>
<Link href={`/profile/${props.profile_id}/collections`}>
<div className="w-[400px] xl:w-[500px] aspect-video flex flex-col items-center justify-center w-full gap-2 text-black transition-colors bg-gray-100 border hover:bg-gray-200 border-gray-50 hover:border-gray-100 dark:border-gray-700 dark:hover:border-gray-600 dark:hover:bg-gray-500 aspect-video group dark:bg-gray-600 dark:text-white">
<div className="w-[350px] xl:w-[500px] flex flex-col items-center justify-center gap-2 text-black transition-colors bg-gray-100 border hover:bg-gray-200 border-gray-50 hover:border-gray-100 dark:border-gray-700 dark:hover:border-gray-600 dark:hover:bg-gray-500 aspect-video group dark:bg-gray-600 dark:text-white">
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
<p>Все коллекции</p>
</div>