From 4aa48f589bc624d4ad914084bbb0ee04ef1aa1c4 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Thu, 3 Apr 2025 22:10:58 +0500 Subject: [PATCH] small changes --- .../Profile/Profile.ReleaseRatings.tsx | 6 +- app/components/Profile/Profile.User.tsx | 118 +++++++++--------- app/pages/Profile.tsx | 3 +- 3 files changed, 65 insertions(+), 62 deletions(-) diff --git a/app/components/Profile/Profile.ReleaseRatings.tsx b/app/components/Profile/Profile.ReleaseRatings.tsx index ffdeee9..c93e69f 100644 --- a/app/components/Profile/Profile.ReleaseRatings.tsx +++ b/app/components/Profile/Profile.ReleaseRatings.tsx @@ -28,12 +28,12 @@ export const ProfileReleaseRatings = (props: any) => { {props.ratings.map((release) => { return ( -
+
-
-

{release.title_ru}

+
+

{release.title_ru}

= 1} /> = 2} /> diff --git a/app/components/Profile/Profile.User.tsx b/app/components/Profile/Profile.User.tsx index e2033cc..538cd62 100644 --- a/app/components/Profile/Profile.User.tsx +++ b/app/components/Profile/Profile.User.tsx @@ -27,6 +27,7 @@ interface ProfileUserProps { inst: string; discord: string; }; + is_social_hidden: boolean; } export const ProfileUser = ({ @@ -41,8 +42,8 @@ export const ProfileUser = ({ isSponsor, isBlocked, socials, + is_social_hidden, }: ProfileUserProps) => { - const theme = useThemeMode().mode; return ( @@ -88,65 +89,66 @@ export const ProfileUser = ({

{status}

- {(socials.vk || - socials.tg || - socials.discord || - socials.tt || - socials.inst) && ( -
- {socials.vk && ( - + {!is_social_hidden && + (socials.vk || + socials.tg || + socials.discord || + socials.tt || + socials.inst) && ( +
+ {socials.vk && ( + + + + )} + {socials.tg && ( + + + + )} + {socials.tt && ( + + + + )} + {socials.inst && ( + + + + )} + {socials.discord && ( - - )} - {socials.tg && ( - - - - )} - {socials.tt && ( - - - - )} - {socials.inst && ( - - - - )} - {socials.discord && ( - - )} -
- )} + )} +
+ )} ); }; diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index 6e5d043..77ce5f1 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -88,7 +88,7 @@ export const ProfilePage = (props: any) => { ) ? "mt-4" : "" - }`} + } mb-4`} >
{ inst: user.inst_page || null, discord: user.discord_page || null, }} + is_social_hidden={user.is_social_hidden} /> {authUser.token && (