mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
style: change profile widgets positions
This commit is contained in:
parent
4276cc1314
commit
7a0b71020f
2 changed files with 21 additions and 25 deletions
|
@ -24,14 +24,14 @@ const CarouselTheme = {
|
|||
|
||||
export const ProfileReleaseRatings = (props: any) => {
|
||||
return (
|
||||
<Card>
|
||||
<Card className="h-fit">
|
||||
<h1 className="text-2xl font-bold">Оценки</h1>
|
||||
<div className="max-w-[700px] min-h-[200px]">
|
||||
<Carousel theme={CarouselTheme}>
|
||||
{props.ratings.map((release) => {
|
||||
return (
|
||||
<div
|
||||
className="flex gap-4 mx-16"
|
||||
className="flex gap-4 mx-20"
|
||||
key={`vote-${release.id}`}
|
||||
>
|
||||
<Image
|
||||
|
|
|
@ -134,37 +134,33 @@ export const ProfilePage = (props: any) => {
|
|||
friendsCount={user.friend_count}
|
||||
/>
|
||||
)}
|
||||
{!user.is_stats_hidden && (
|
||||
<ProfileReleaseRatings ratings={user.votes} />
|
||||
)}
|
||||
</div>
|
||||
<div className="flex flex-col gap-2 flex-1">
|
||||
<ProfileActions
|
||||
isMyProfile={isMyProfile}
|
||||
profile_id={user.id}
|
||||
isFriendRequestsDisallowed={user.is_friend_requests_disallowed}
|
||||
/>
|
||||
{!user.is_stats_hidden && (
|
||||
<ProfileReleaseRatings ratings={user.votes} />
|
||||
<>
|
||||
<ProfileStats
|
||||
lists={[
|
||||
user.watching_count,
|
||||
user.plan_count,
|
||||
user.completed_count,
|
||||
user.hold_on_count,
|
||||
user.dropped_count,
|
||||
]}
|
||||
watched_count={user.watched_episode_count}
|
||||
watched_time={user.watched_time}
|
||||
/>
|
||||
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
<div className="flex flex-col gap-2 flex-1">
|
||||
<ProfileStats
|
||||
lists={[
|
||||
user.watching_count,
|
||||
user.plan_count,
|
||||
user.completed_count,
|
||||
user.hold_on_count,
|
||||
user.dropped_count,
|
||||
]}
|
||||
watched_count={user.watched_episode_count}
|
||||
watched_time={user.watched_time}
|
||||
/>
|
||||
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
|
||||
</div>
|
||||
{/*
|
||||
{!user.is_stats_hidden && (
|
||||
<div className="flex flex-col gap-2">
|
||||
|
||||
</div>
|
||||
)}
|
||||
<div className="[grid-column:1] xl:[grid-row:3]">
|
||||
</div>*/}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue