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/message-content/MessageAuthorText.tsx

58 lines
1.7 KiB
TypeScript

import React from 'react';
import { useSelector } from 'react-redux';
import styled from 'styled-components';
import { MessageRenderingProps } from '../../../../models/messageType';
import { PubKey } from '../../../../session/types';
import {
getMessageAuthorProps,
getSelectedConversationIsGroup,
isPublicGroupConversation,
} from '../../../../state/selectors/conversations';
import { Flex } from '../../../basic/Flex';
import { ContactName } from '../../ContactName';
export type MessageAuthorSelectorProps = Pick<
MessageRenderingProps,
'authorName' | 'authorProfileName' | 'sender' | 'direction' | 'firstMessageOfSeries'
>;
type Props = {
messageId: string;
};
const StyledAuthorContainer = styled(Flex)`
color: var(--color-text);
`;
export const MessageAuthorText = (props: Props) => {
const selected = useSelector(state => getMessageAuthorProps(state as any, props.messageId));
const isPublic = useSelector(isPublicGroupConversation);
const isGroup = useSelector(getSelectedConversationIsGroup);
if (!selected) {
return null;
}
const { authorName, sender, authorProfileName, direction, firstMessageOfSeries } = selected;
const title = authorName ? authorName : sender;
if (direction !== 'incoming' || !isGroup || !title || !firstMessageOfSeries) {
return null;
}
const displayedPubkey = authorProfileName ? PubKey.shorten(sender) : sender;
return (
<StyledAuthorContainer container={true}>
<ContactName
pubkey={displayedPubkey}
name={authorName}
profileName={authorProfileName}
module="module-message__author"
boldProfileName={true}
shouldShowPubkey={Boolean(isPublic)}
/>
</StyledAuthorContainer>
);
};