From 04c072fba70824b6de77aa33a3f69472ae4d03fa Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 11 Aug 2024 17:53:37 +0500 Subject: [PATCH] feat: add new user banned info on profile. fix: social buttons cut out fix: social button icon on dark theme is black fix: user avatar shrink on mobile is status is too long --- app/pages/Profile.tsx | 63 +++++++++++++++++++++++++++---------------- 1 file changed, 40 insertions(+), 23 deletions(-) diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index 0dc246f..b85ba3b 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -73,52 +73,69 @@ export const ProfilePage = (props: any) => { }, ]; + const hasChips = user.is_verified || user.is_blocked || isMyProfile; + return ( -
+
+ {user.is_banned && ( +
+
+

+ Пользователь был заблокирован администрацией до{" "} + {unixToDate(user.ban_expires)} +

+

+ {user.ban_reason} +

+
+
+ )} +
-
- {isMyProfile && } - {user.is_banned && ( - - )} - {user.is_verified && ( - - )} -
+ {hasChips && ( +
+ {isMyProfile && ( + + )} + {user.is_blocked && ( + + )} + {user.is_verified && ( + + )} +
+ )} -
+
{user.login}
-
+

{user.status} -

+

{hasSocials && ( - +
{socials .filter((social: any) => { - if (!social.nickname) { + if (social.nickname == "") { return false; } return true; }) .map((social: any) => { - if (social.name == "discord") + if (social.name == "discord" && social.nickname != "") return ( ); })} - +
)}