From aea900a0a7ffa3c7aa29a7d61855ba943f6778f0 Mon Sep 17 00:00:00 2001 From: rique223 Date: Wed, 22 May 2024 17:28:47 -0300 Subject: [PATCH] Rollback UserInfo --- .../client/components/UserInfo/UserInfo.tsx | 121 +++++++++--------- 1 file changed, 57 insertions(+), 64 deletions(-) diff --git a/apps/meteor/client/components/UserInfo/UserInfo.tsx b/apps/meteor/client/components/UserInfo/UserInfo.tsx index 6832ef519068..a4656373b488 100644 --- a/apps/meteor/client/components/UserInfo/UserInfo.tsx +++ b/apps/meteor/client/components/UserInfo/UserInfo.tsx @@ -10,13 +10,6 @@ import { useUserCustomFields } from '../../hooks/useUserCustomFields'; import { useUserDisplayName } from '../../hooks/useUserDisplayName'; import { ContextualbarScrollableContent } from '../Contextualbar'; import InfoPanel from '../InfoPanel'; -import InfoPanelActionGroup from '../InfoPanel/InfoPanelActionGroup'; -import InfoPanelAvatar from '../InfoPanel/InfoPanelAvatar'; -import InfoPanelField from '../InfoPanel/InfoPanelField'; -import InfoPanelLabel from '../InfoPanel/InfoPanelLabel'; -import InfoPanelSection from '../InfoPanel/InfoPanelSection'; -import InfoPanelText from '../InfoPanel/InfoPanelText'; -import InfoPanelTitle from '../InfoPanel/InfoPanelTitle'; import MarkdownText from '../MarkdownText'; import UTCClock from '../UTCClock'; import { UserCardRoles } from '../UserCard'; @@ -79,119 +72,119 @@ const UserInfo = ({ {username && ( - + - + )} - {actions && {actions}} + {actions && {actions}} - - {userDisplayName && } + + {userDisplayName && } {statusText && ( - + - + )} - + - + {reason && ( - - {t('Reason_for_joining')} - {reason} - + + {t('Reason_for_joining')} + {reason} + )} {nickname && ( - - {t('Nickname')} - {nickname} - + + {t('Nickname')} + {nickname} + )} {roles.length !== 0 && ( - - {t('Roles')} + + {t('Roles')} {roles} - + )} {username && username !== name && ( - - {t('Username')} - {username} - + + {t('Username')} + {username} + )} {Number.isInteger(utcOffset) && ( - - {t('Local_Time')} - {utcOffset && } - + + {t('Local_Time')} + {utcOffset && } + )} {bio && ( - - {t('Bio')} - + + {t('Bio')} + - - + + )} {Number.isInteger(utcOffset) && canViewAllInfo && ( - - {t('Last_login')} - {lastLogin ? timeAgo(lastLogin) : t('Never')} - + + {t('Last_login')} + {lastLogin ? timeAgo(lastLogin) : t('Never')} + )} {phone && ( - - {t('Phone')} - + + {t('Phone')} + {phone} - - + + )} {email && ( - - {t('Email')} - + + {t('Email')} + {email} {verified ? t('Verified') : t('Not_verified')} - - + + )} {userCustomFields?.map( (customField) => customField?.value && ( - - {t(customField.label as TranslationKey)} - + + {t(customField.label as TranslationKey)} + - - + + ), )} {createdAt && ( - - {t('Created_at')} - {timeAgo(createdAt)} - + + {t('Created_at')} + {timeAgo(createdAt)} + )} - + );