|
|
|
@ -35,10 +35,10 @@ export type MessageAvatarSelectorProps = Pick<
|
|
|
|
|
| 'lastMessageOfSeries'
|
|
|
|
|
>;
|
|
|
|
|
|
|
|
|
|
type Props = { messageId: string; noAvatar: boolean };
|
|
|
|
|
type Props = { messageId: string; hideAvatar: boolean };
|
|
|
|
|
|
|
|
|
|
export const MessageAvatar = (props: Props) => {
|
|
|
|
|
const { messageId, noAvatar } = props;
|
|
|
|
|
const { messageId, hideAvatar } = props;
|
|
|
|
|
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
const avatarProps = useSelector(state => getMessageAvatarProps(state as any, messageId));
|
|
|
|
@ -60,10 +60,6 @@ export const MessageAvatar = (props: Props) => {
|
|
|
|
|
isPublic,
|
|
|
|
|
} = avatarProps;
|
|
|
|
|
|
|
|
|
|
if (noAvatar) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const userName = authorName || authorProfileName || sender;
|
|
|
|
|
|
|
|
|
|
const onMessageAvatarClick = useCallback(async () => {
|
|
|
|
@ -128,7 +124,10 @@ export const MessageAvatar = (props: Props) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<StyledAvatar key={`msg-avatar-${sender}`}>
|
|
|
|
|
<StyledAvatar
|
|
|
|
|
key={`msg-avatar-${sender}`}
|
|
|
|
|
style={{ visibility: hideAvatar ? 'hidden' : undefined }}
|
|
|
|
|
>
|
|
|
|
|
<Avatar size={AvatarSize.S} onAvatarClick={onMessageAvatarClick} pubkey={sender} />
|
|
|
|
|
{isSenderAdmin && <CrownIcon />}
|
|
|
|
|
</StyledAvatar>
|
|
|
|
|