refactor: return user stats & made release votes preview as a list

This commit is contained in:
Kentai Radiquum 2025-04-03 21:38:51 +05:00
parent 8cf1bb534d
commit cbdcfedb9b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 61 additions and 84 deletions

View file

@ -212,9 +212,9 @@ export function unixToDate(
" " + " " +
date.getFullYear() + date.getFullYear() +
", " + ", " +
date.getHours() + `${date.getHours()}`.padStart(2, "0") +
":" + ":" +
date.getMinutes() `${date.getMinutes()}`.padStart(2, "0")
); );
if (type === "dayMonth") if (type === "dayMonth")
return date.getDate() + " " + months[date.getMonth()]; return date.getDate() + " " + months[date.getMonth()];

View file

@ -51,33 +51,31 @@ export const ProfileReleaseRatings = (props: any) => {
Посмотреть все Посмотреть все
</Button> </Button>
</div> </div>
<div className="flex min-h-[200px] items-center justify-center"> <div className="flex flex-col w-full gap-4">
<Carousel theme={CarouselTheme}> {props.ratings.map((release) => {
{props.ratings.map((release) => { return (
return ( <Link href={`/release/${release.id}`} key={`vote-${release.id}`}>
<Link href={`/release/${release.id}`} key={`vote-${release.id}`}> <div className="flex gap-4">
<div className="flex gap-4 xl:mx-20"> <div className="max-w-32">
<div className="max-w-32"> <Poster image={release.image} />
<Poster image={release.image} />
</div>
<div className="flex flex-col gap-1 py-4">
<h2 className="text-lg">{release.title_ru}</h2>
<Rating size="md">
<RatingStar filled={release.my_vote >= 1} />
<RatingStar filled={release.my_vote >= 2} />
<RatingStar filled={release.my_vote >= 3} />
<RatingStar filled={release.my_vote >= 4} />
<RatingStar filled={release.my_vote >= 5} />
</Rating>
<h2 className="text-gray-500 text-md dark:text-gray-400">
{unixToDate(release.voted_at, "full")}
</h2>
</div>
</div> </div>
</Link> <div className="flex flex-col gap-1 py-4">
); <h2 className="text-lg">{release.title_ru}</h2>
})} <Rating size="md">
</Carousel> <RatingStar filled={release.my_vote >= 1} />
<RatingStar filled={release.my_vote >= 2} />
<RatingStar filled={release.my_vote >= 3} />
<RatingStar filled={release.my_vote >= 4} />
<RatingStar filled={release.my_vote >= 5} />
</Rating>
<h2 className="text-gray-500 text-md dark:text-gray-400">
{unixToDate(release.voted_at, "full")}
</h2>
</div>
</div>
</Link>
);
})}
</div> </div>
<ProfileReleaseRatingsModal <ProfileReleaseRatingsModal
profile_id={props.profile_id} profile_id={props.profile_id}

View file

@ -59,10 +59,6 @@ export const ProfilePage = (props: any) => {
); );
} }
const isPrivacy =
user.is_stats_hidden || user.is_counts_hidden || user.is_social_hidden;
return ( return (
<> <>
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
@ -73,23 +69,39 @@ export const ProfilePage = (props: any) => {
ban_expires={user.ban_expires} ban_expires={user.ban_expires}
/> />
<ProfilePrivacyBanner <ProfilePrivacyBanner
is_privacy={isPrivacy} is_privacy={
user.is_stats_hidden ||
user.is_counts_hidden ||
user.is_social_hidden
}
is_me_blocked={user.is_me_blocked} is_me_blocked={user.is_me_blocked}
/> />
</div> </div>
<div className="grid grid-cols-1 gap-2 lg:grid-cols-2"> <div
className={`grid grid-cols-1 gap-2 lg:grid-cols-2 ${
(
user.is_banned ||
user.is_perm_banned ||
user.is_stats_hidden ||
user.is_counts_hidden ||
user.is_social_hidden
) ?
"mt-4"
: ""
}`}
>
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<ProfileUser <ProfileUser
avatar={user.avatar} avatar={user.avatar || ""}
login={user.login} login={user.login || ""}
status={user.status} status={user.status || ""}
roles={user.roles} roles={user.roles || []}
rating={user.rating_score} rating={user.rating_score || 0}
isMyProfile={isMyProfile} isMyProfile={isMyProfile || false}
isVerified={user.is_verified} isVerified={user.is_verified || false}
isOnline={user.is_online} isOnline={user.is_online || false}
isSponsor={user.is_sponsor} isSponsor={user.is_sponsor || false}
isBlocked={user.is_blocked} isBlocked={user.is_blocked || false}
socials={{ socials={{
vk: user.vk_page || null, vk: user.vk_page || null,
tg: user.tg_page || null, tg: user.tg_page || null,
@ -112,35 +124,6 @@ export const ProfilePage = (props: any) => {
edit_setIsOpen={setIsOpen} edit_setIsOpen={setIsOpen}
/> />
)} )}
</div>
<div className="flex flex-col gap-2"></div>
</div>
{/* <div
className={`flex flex-wrap gap-2 ${
isPrivacy || user.is_banned || user.is_perm_banned ? "mt-4" : ""
}`}
>
<div className="flex flex-col gap-2 w-full xl:w-[50%]">
<ProfileUser
isOnline={user.is_online}
avatar={user.avatar}
login={user.login}
status={user.status}
socials={{
isPrivate: user.is_social_hidden,
hasSocials: hasSocials,
socials: socials,
}}
chips={{
hasChips: hasChips,
isMyProfile: isMyProfile,
isVerified: user.is_verified,
isSponsor: user.is_sponsor,
isBlocked: user.is_blocked,
roles: user.roles,
}}
rating={user.rating_score}
/>
{!user.is_counts_hidden && ( {!user.is_counts_hidden && (
<ProfileActivity <ProfileActivity
profile_id={user.id} profile_id={user.id}
@ -151,7 +134,7 @@ export const ProfilePage = (props: any) => {
/> />
)} )}
{!user.is_stats_hidden && ( {!user.is_stats_hidden && (
<div className="flex-col hidden gap-2 xl:flex"> <div className="flex-col hidden gap-2 lg:flex">
{user.votes && user.votes.length > 0 && ( {user.votes && user.votes.length > 0 && (
<ProfileReleaseRatings <ProfileReleaseRatings
ratings={user.votes} ratings={user.votes}
@ -159,14 +142,10 @@ export const ProfilePage = (props: any) => {
profile_id={user.id} profile_id={user.id}
/> />
)} )}
{user.history && user.history.length > 0 && (
<ProfileReleaseHistory history={user.history} />
)}
</div> </div>
)} )}
</div> </div>
<div className="flex flex-col w-full gap-2 xl:flex-1 xl:w-auto "> <div className="flex flex-col gap-2">
{!user.is_stats_hidden && ( {!user.is_stats_hidden && (
<> <>
<ProfileStats <ProfileStats
@ -182,7 +161,7 @@ export const ProfilePage = (props: any) => {
profile_id={user.id} profile_id={user.id}
/> />
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} /> <ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
<div className="flex flex-col gap-2 xl:hidden"> <div className="flex flex-col gap-2 lg:hidden">
{user.votes && user.votes.length > 0 && ( {user.votes && user.votes.length > 0 && (
<ProfileReleaseRatings <ProfileReleaseRatings
ratings={user.votes} ratings={user.votes}
@ -190,14 +169,14 @@ export const ProfilePage = (props: any) => {
profile_id={user.id} profile_id={user.id}
/> />
)} )}
{user.history && user.history.length > 0 && (
<ProfileReleaseHistory history={user.history} />
)}
</div> </div>
{user.history && user.history.length > 0 && (
<ProfileReleaseHistory history={user.history} />
)}
</> </>
)} )}
</div> </div>
</div> */} </div>
<ProfileEditModal <ProfileEditModal
isOpen={isOpen && isMyProfile} isOpen={isOpen && isMyProfile}
setIsOpen={setIsOpen} setIsOpen={setIsOpen}