From dcdea007486de4872d519e0ca442399189cdafd0 Mon Sep 17 00:00:00 2001 From: William Grant Date: Thu, 29 Feb 2024 10:39:25 +1100 Subject: [PATCH] fix: dont show message avatar in message info panels also show admin crown --- .../message/message-content/MessageAvatar.tsx | 12 ++++-------- .../message/message-content/MessageContent.tsx | 15 ++++++--------- .../message-info/components/MessageFrom.tsx | 15 +++++++++++---- .../message-info/components/MessageInfo.tsx | 4 +++- ts/state/selectors/messages.ts | 4 ++-- 5 files changed, 26 insertions(+), 24 deletions(-) diff --git a/ts/components/conversation/message/message-content/MessageAvatar.tsx b/ts/components/conversation/message/message-content/MessageAvatar.tsx index 1cbe2dde8..e9b0dd9ff 100644 --- a/ts/components/conversation/message/message-content/MessageAvatar.tsx +++ b/ts/components/conversation/message/message-content/MessageAvatar.tsx @@ -38,10 +38,10 @@ export type MessageAvatarSelectorProps = Pick< 'sender' | 'isSenderAdmin' | 'lastMessageOfSeries' >; -type Props = { messageId: string; hideAvatar: boolean; isPrivate: boolean; isDetailView?: boolean }; +type Props = { messageId: string; isPrivate: boolean }; export const MessageAvatar = (props: Props) => { - const { messageId, hideAvatar, isPrivate, isDetailView } = props; + const { messageId, isPrivate } = props; const dispatch = useDispatch(); const selectedConvoKey = useSelectedConversationKey(); @@ -137,13 +137,9 @@ export const MessageAvatar = (props: Props) => { // The styledAvatar, when rendered needs to have a width with margins included of var(--width-avatar-group-msg-list). // This is so that the other message is still aligned when the avatar is not rendered (we need to make up for the space used by the avatar, and we use a margin of width-avatar-group-msg-list) return ( - + - {!isDetailView && isSenderAdmin ? : null} + {isSenderAdmin ? : null} ); }; diff --git a/ts/components/conversation/message/message-content/MessageContent.tsx b/ts/components/conversation/message/message-content/MessageContent.tsx index 24a0619b2..768a4e3f9 100644 --- a/ts/components/conversation/message/message-content/MessageContent.tsx +++ b/ts/components/conversation/message/message-content/MessageContent.tsx @@ -93,7 +93,7 @@ export const MessageContent = (props: Props) => { const scrollToLoadedMessage = useContext(ScrollToLoadedMessageContext); const selectedIsPrivate = useSelectedIsPrivate(); - const hideAvatar = useHideAvatarInMsgList(props.messageId); + const hideAvatar = useHideAvatarInMsgList(props.messageId, props.isDetailView); const [imageBroken, setImageBroken] = useState(false); @@ -164,14 +164,11 @@ export const MessageContent = (props: Props) => { title={toolTipTitle} msgDirection={direction} > - - - + {hideAvatar ? null : ( + + + + )} { - const { sender } = props; +const StyledAvatar = styled.div` + position: relative; +`; + +export const MessageFrom = (props: { sender: string; isSenderAdmin: boolean }) => { + const { sender, isSenderAdmin } = props; const profileName = useConversationUsername(sender); const from = window.i18n('from'); @@ -39,7 +43,10 @@ export const MessageFrom = (props: { sender: string }) => { {from} - + + + {isSenderAdmin ? : null} + {!!profileName && {profileName}} {sender} diff --git a/ts/components/conversation/right-panel/overlay/message-info/components/MessageInfo.tsx b/ts/components/conversation/right-panel/overlay/message-info/components/MessageInfo.tsx index 1875298f0..4bda46496 100644 --- a/ts/components/conversation/right-panel/overlay/message-info/components/MessageInfo.tsx +++ b/ts/components/conversation/right-panel/overlay/message-info/components/MessageInfo.tsx @@ -14,6 +14,7 @@ import { useMessageHash, useMessageReceivedAt, useMessageSender, + useMessageSenderIsAdmin, useMessageServerId, useMessageServerTimestamp, useMessageTimestamp, @@ -111,6 +112,7 @@ export const MessageInfo = ({ messageId, errors }: { messageId: string; errors: const sentAt = useMessageTimestamp(messageId); const serverTimestamp = useMessageServerTimestamp(messageId); const receivedAt = useMessageReceivedAt(messageId); + const isSenderAdmin = useMessageSenderIsAdmin(messageId); if (!messageId || !sender) { return null; @@ -137,7 +139,7 @@ export const MessageInfo = ({ messageId, errors }: { messageId: string; errors: ) : null} - + {hasError && ( <> diff --git a/ts/state/selectors/messages.ts b/ts/state/selectors/messages.ts index b998bf7f7..6c87ca3e6 100644 --- a/ts/state/selectors/messages.ts +++ b/ts/state/selectors/messages.ts @@ -160,10 +160,10 @@ export const useMessageText = (messageId: string | undefined): string | undefine return useMessagePropsByMessageId(messageId)?.propsForMessage.text; }; -export function useHideAvatarInMsgList(messageId?: string) { +export function useHideAvatarInMsgList(messageId?: string, isDetailView?: boolean) { const msgProps = useMessagePropsByMessageId(messageId); const selectedIsPrivate = useSelectedIsPrivate(); - return msgProps?.propsForMessage.direction === 'outgoing' || selectedIsPrivate; + return isDetailView || msgProps?.propsForMessage.direction === 'outgoing' || selectedIsPrivate; } export function useMessageSelected(messageId?: string) {