You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
TypeScript
79 lines
2.2 KiB
TypeScript
4 years ago
|
import React, { useCallback } from 'react';
|
||
|
import { useDispatch, useSelector } from 'react-redux';
|
||
3 years ago
|
import { MessageRenderingProps } from '../../../../models/messageType';
|
||
|
import { updateUserDetailsModal } from '../../../../state/ducks/modalDialog';
|
||
|
import { getMessageAvatarProps } from '../../../../state/selectors/conversations';
|
||
|
import { Avatar, AvatarSize } from '../../../avatar/Avatar';
|
||
|
// tslint:disable: use-simple-attributes
|
||
4 years ago
|
|
||
|
export type MessageAvatarSelectorProps = Pick<
|
||
|
MessageRenderingProps,
|
||
|
| 'authorAvatarPath'
|
||
|
| 'authorName'
|
||
|
| 'authorPhoneNumber'
|
||
|
| 'authorProfileName'
|
||
|
| 'isSenderAdmin'
|
||
|
| 'conversationType'
|
||
|
| 'direction'
|
||
|
| 'isPublic'
|
||
|
| 'lastMessageOfSeries'
|
||
|
>;
|
||
|
|
||
|
type Props = { messageId: string };
|
||
|
|
||
|
export const MessageAvatar = (props: Props) => {
|
||
|
const { messageId } = props;
|
||
|
|
||
|
const dispatch = useDispatch();
|
||
|
const avatarProps = useSelector(state => getMessageAvatarProps(state as any, messageId));
|
||
|
|
||
|
if (!avatarProps) {
|
||
|
return null;
|
||
|
}
|
||
|
const {
|
||
|
authorAvatarPath,
|
||
|
authorName,
|
||
|
authorPhoneNumber,
|
||
|
authorProfileName,
|
||
|
conversationType,
|
||
|
direction,
|
||
|
isPublic,
|
||
|
isSenderAdmin,
|
||
|
lastMessageOfSeries,
|
||
|
} = avatarProps;
|
||
|
|
||
|
if (conversationType !== 'group' || direction === 'outgoing') {
|
||
|
return null;
|
||
|
}
|
||
|
const userName = authorName || authorProfileName || authorPhoneNumber;
|
||
|
|
||
|
const onMessageAvatarClick = useCallback(() => {
|
||
|
dispatch(
|
||
|
updateUserDetailsModal({
|
||
|
conversationId: authorPhoneNumber,
|
||
|
userName,
|
||
|
authorAvatarPath,
|
||
|
})
|
||
|
);
|
||
|
}, [userName, authorPhoneNumber, authorAvatarPath]);
|
||
|
|
||
|
if (!lastMessageOfSeries) {
|
||
|
return <div style={{ marginInlineEnd: '60px' }} key={`msg-avatar-${authorPhoneNumber}`} />;
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className="module-message__author-avatar" key={`msg-avatar-${authorPhoneNumber}`}>
|
||
3 years ago
|
<Avatar
|
||
|
size={AvatarSize.S}
|
||
|
onAvatarClick={(!isPublic && onMessageAvatarClick) || undefined}
|
||
|
pubkey={authorPhoneNumber}
|
||
|
/>
|
||
4 years ago
|
{isPublic && isSenderAdmin && (
|
||
|
<div className="module-avatar__icon--crown-wrapper">
|
||
|
<div className="module-avatar__icon--crown" />
|
||
|
</div>
|
||
|
)}
|
||
|
</div>
|
||
|
);
|
||
|
};
|