The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/client/components/message/variants/SystemMessage.tsx

114 lines
4.0 KiB

import type { IMessage } from '@rocket.chat/core-typings';
import {
MessageSystem,
MessageSystemBody,
MessageSystemContainer,
MessageSystemLeftContainer,
MessageSystemName,
MessageSystemTimestamp,
MessageSystemBlock,
CheckBox,
MessageUsername,
MessageNameContainer,
} from '@rocket.chat/fuselage';
import { useButtonPattern } from '@rocket.chat/fuselage-hooks';
import { MessageTypes } from '@rocket.chat/message-types';
import { UserAvatar } from '@rocket.chat/ui-avatar';
import { useUserDisplayName } from '@rocket.chat/ui-client';
import type { TranslationKey } from '@rocket.chat/ui-contexts';
import { useUserPresence, useUserCard } from '@rocket.chat/ui-contexts';
import type { ComponentProps, ReactElement } from 'react';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import {
useIsSelecting,
useToggleSelect,
useIsSelectedMessage,
useCountSelected,
} from '../../../views/room/MessageList/contexts/SelectedMessagesContext';
import Attachments from '../content/Attachments';
import MessageActions from '../content/MessageActions';
import {
useMessageListShowRealName,
useMessageListShowUsername,
useMessageListFormatDateAndTime,
useMessageListFormatTime,
} from '../list/MessageListContext';
type SystemMessageProps = {
message: IMessage;
showUserAvatar: boolean;
} & ComponentProps<typeof MessageSystem>;
const SystemMessage = ({ message, showUserAvatar, ...props }: SystemMessageProps): ReactElement => {
const { t } = useTranslation();
const formatTime = useMessageListFormatTime();
const formatDateAndTime = useMessageListFormatDateAndTime();
const { triggerProps, openUserCard } = useUserCard();
const showRealName = useMessageListShowRealName();
const user = { ...message.u, roles: [], ...useUserPresence(message.u._id) };
const usernameAndRealNameAreSame = !user.name || user.username === user.name;
const showUsername = useMessageListShowUsername() && showRealName && !usernameAndRealNameAreSame;
const displayName = useUserDisplayName(user);
const messageType = MessageTypes.getType(message);
const isSelecting = useIsSelecting();
const toggleSelected = useToggleSelect(message._id);
const isSelected = useIsSelectedMessage(message._id);
useCountSelected();
const buttonProps = useButtonPattern((e) => openUserCard(e, user.username));
return (
<MessageSystem
role='listitem'
aria-roledescription={t('system_message')}
tabIndex={0}
onClick={isSelecting ? toggleSelected : undefined}
isSelected={isSelected}
data-qa-selected={isSelected}
data-qa='system-message'
data-system-message-type={message.t}
{...props}
>
<MessageSystemLeftContainer>
{!isSelecting && showUserAvatar && <UserAvatar username={message.u.username} size='x18' />}
{isSelecting && <CheckBox checked={isSelected} onChange={toggleSelected} />}
</MessageSystemLeftContainer>
<MessageSystemContainer>
<MessageSystemBlock>
<MessageNameContainer style={{ cursor: 'pointer' }} {...buttonProps} {...triggerProps}>
<MessageSystemName>{displayName}</MessageSystemName>
{showUsername && (
<>
{' '}
<MessageUsername data-username={user.username}>@{user.username}</MessageUsername>
</>
)}
</MessageNameContainer>
{messageType && <MessageSystemBody data-qa-type='system-message-body'>{messageType.text(t, message)}</MessageSystemBody>}
<MessageSystemTimestamp title={formatDateAndTime(message.ts)}>{formatTime(message.ts)}</MessageSystemTimestamp>
</MessageSystemBlock>
{message.attachments && (
<MessageSystemBlock>
<Attachments attachments={message.attachments} />
</MessageSystemBlock>
)}
{message.actionLinks?.length && (
<MessageActions
message={message}
actions={message.actionLinks.map(({ method_id: methodId, i18nLabel, ...action }) => ({
methodId,
i18nLabel: i18nLabel as TranslationKey,
...action,
}))}
/>
)}
</MessageSystemContainer>
</MessageSystem>
);
};
export default memo(SystemMessage);