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 ( ); })} - +
)}