{
if (isSelectingMessages) {
// we could toggle the selection of this message,
// but this just disable opening the new Conversation dialog with that user while selecting messages
return;
}
if (props.onAvatarClick) {
e.stopPropagation();
e.preventDefault();
props.onAvatarClick?.();
}
}}
role="button"
data-testid={dataTestId}
>
{hasImage ? (
// tslint:disable-next-line: use-simple-attributes
) : (
)}
);
};
export const Avatar = React.memo(AvatarInner, isEqual);