|
|
|
@ -9,6 +9,7 @@ import { PubKey } from '../../../../session/types';
|
|
|
|
|
import { openConversationWithMessages } from '../../../../state/ducks/conversations';
|
|
|
|
|
import { updateUserDetailsModal } from '../../../../state/ducks/modalDialog';
|
|
|
|
|
import {
|
|
|
|
|
getIsTypingEnabled,
|
|
|
|
|
getMessageAvatarProps,
|
|
|
|
|
getSelectedConversationKey,
|
|
|
|
|
} from '../../../../state/selectors/conversations';
|
|
|
|
@ -37,6 +38,8 @@ export const MessageAvatar = (props: Props) => {
|
|
|
|
|
const avatarProps = useSelector(state => getMessageAvatarProps(state as any, messageId));
|
|
|
|
|
const selectedConvoKey = useSelector(getSelectedConversationKey);
|
|
|
|
|
|
|
|
|
|
const isTypingEnabled = useSelector(getIsTypingEnabled);
|
|
|
|
|
|
|
|
|
|
if (!avatarProps) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
@ -75,6 +78,11 @@ export const MessageAvatar = (props: Props) => {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isPublic && !isTypingEnabled) {
|
|
|
|
|
window.log.info('onMessageAvatarClick: no typing enabled. Dropping...');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isPublic && selectedConvoKey) {
|
|
|
|
|
const convoOpen = getConversationController().get(selectedConvoKey);
|
|
|
|
|
const room = OpenGroupData.getV2OpenGroupRoom(convoOpen.id);
|
|
|
|
|