mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
remove video from profile counters
This commit is contained in:
parent
256ecea885
commit
5572f31c60
2 changed files with 19 additions and 19 deletions
|
@ -18,9 +18,9 @@ export function ProfileActivity(props: {
|
||||||
token: string;
|
token: string;
|
||||||
isMyProfile: boolean;
|
isMyProfile: boolean;
|
||||||
}) {
|
}) {
|
||||||
const [tab, setTab] = useState<
|
const [tab, setTab] = useState<"collections" | "comments" | "friends">(
|
||||||
"collections" | "comments" | "friends" | "videos"
|
"collections"
|
||||||
>("collections");
|
);
|
||||||
|
|
||||||
const [collections, setCollections] = useState<Record<number, any>>({});
|
const [collections, setCollections] = useState<Record<number, any>>({});
|
||||||
|
|
||||||
|
@ -64,25 +64,28 @@ export function ProfileActivity(props: {
|
||||||
color={tab == "collections" ? "blue" : "light"}
|
color={tab == "collections" ? "blue" : "light"}
|
||||||
onClick={() => setTab("collections")}
|
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>
|
||||||
<Button
|
<Button
|
||||||
color={tab == "comments" ? "blue" : "light"}
|
color={tab == "comments" ? "blue" : "light"}
|
||||||
onClick={() => setTab("comments")}
|
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>
|
||||||
<Button
|
<Button
|
||||||
color={tab == "friends" ? "blue" : "light"}
|
color={tab == "friends" ? "blue" : "light"}
|
||||||
onClick={() => setTab("friends")}
|
onClick={() => setTab("friends")}
|
||||||
>
|
>
|
||||||
Друзья | {props.friendsCount}
|
<div className="flex flex-col gap-1 sm:flex-row sm:items-center">
|
||||||
</Button>
|
<p>Друзья</p>
|
||||||
<Button
|
<p>( {props.friendsCount} )</p>
|
||||||
color={tab == "videos" ? "blue" : "light"}
|
</div>
|
||||||
onClick={() => setTab("videos")}
|
|
||||||
>
|
|
||||||
Видео | {props.videoCount}
|
|
||||||
</Button>
|
</Button>
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
|
|
||||||
|
@ -101,7 +104,6 @@ export function ProfileActivity(props: {
|
||||||
profile_id={props.profile_id}
|
profile_id={props.profile_id}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{tab == "videos" && <>videos</>}
|
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,11 +41,9 @@ export const ProfileActivityCollections = (props: {
|
||||||
key={`col-prev-${collection.id}`}
|
key={`col-prev-${collection.id}`}
|
||||||
style={{ width: "fit-content" }}
|
style={{ width: "fit-content" }}
|
||||||
>
|
>
|
||||||
<Link href={`/collection/${collection.id}`}>
|
<div className="w-[350px] xl:w-[500px] aspect-video">
|
||||||
<div className="w-[400px] xl:w-[500px] aspect-video">
|
|
||||||
<CollectionLink {...collection} />
|
<CollectionLink {...collection} />
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
|
||||||
</SwiperSlide>
|
</SwiperSlide>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
@ -53,7 +51,7 @@ export const ProfileActivityCollections = (props: {
|
||||||
{props.content && props.content.length > 0 ?
|
{props.content && props.content.length > 0 ?
|
||||||
<SwiperSlide style={{ width: "fit-content" }}>
|
<SwiperSlide style={{ width: "fit-content" }}>
|
||||||
<Link href={`/profile/${props.profile_id}/collections`}>
|
<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>
|
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
|
||||||
<p>Все коллекции</p>
|
<p>Все коллекции</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue