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.
session-desktop/ts/components/conversation/message/MessageAuthorText.tsx

55 lines
1.5 KiB
TypeScript

import React from 'react';
import { useSelector } from 'react-redux';
import { MessageModelType } from '../../../models/messageType';
import { PubKey } from '../../../session/types/PubKey';
import {
isGroupConversation,
isPublicGroupConversation,
} from '../../../state/selectors/conversations';
import { Flex } from '../../basic/Flex';
import { ContactName } from '../ContactName';
export type MessageAuthorProps = {
authorName: string | null;
authorProfileName: string | null;
authorPhoneNumber: string;
direction: MessageModelType;
firstMessageOfSeries: boolean;
};
export const MessageAuthorText = (props: MessageAuthorProps) => {
const {
authorName,
authorPhoneNumber,
authorProfileName,
direction,
firstMessageOfSeries,
} = props;
const isPublic = useSelector(isPublicGroupConversation);
const isGroup = useSelector(isGroupConversation);
const title = authorName ? authorName : authorPhoneNumber;
if (direction !== 'incoming' || !isGroup || !title || !firstMessageOfSeries) {
return null;
}
const shortenedPubkey = PubKey.shorten(authorPhoneNumber);
const displayedPubkey = authorProfileName ? shortenedPubkey : authorPhoneNumber;
return (
<Flex container={true}>
<ContactName
phoneNumber={displayedPubkey}
name={authorName}
profileName={authorProfileName}
module="module-message__author"
boldProfileName={true}
shouldShowPubkey={Boolean(isPublic)}
/>
</Flex>
);
};