mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-26 13:20:48 +00:00
Rename files
This commit is contained in:
195
ts/components/conversation/MessageBody.dom.tsx
Normal file
195
ts/components/conversation/MessageBody.dom.tsx
Normal file
@@ -0,0 +1,195 @@
|
||||
// Copyright 2018 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { KeyboardEvent } from 'react';
|
||||
import React from 'react';
|
||||
import type { AttachmentType } from '../../types/Attachment.std.js';
|
||||
import { canBeDownloaded, isDownloaded } from '../../util/Attachment.std.js';
|
||||
import type { ShowConversationType } from '../../state/ducks/conversations.preload.js';
|
||||
import type { HydratedBodyRangesType } from '../../types/BodyRange.std.js';
|
||||
import type { LocalizerType } from '../../types/Util.std.js';
|
||||
import { MessageTextRenderer } from './MessageTextRenderer.dom.js';
|
||||
import type { RenderLocation } from './MessageTextRenderer.dom.js';
|
||||
import { UserText } from '../UserText.dom.js';
|
||||
import { shouldLinkifyMessage } from '../../types/LinkPreview.std.js';
|
||||
import { FunJumboEmojiSize } from '../fun/FunEmoji.dom.js';
|
||||
import { getEmojifyData } from '../fun/data/emojis.std.js';
|
||||
|
||||
function getSizeClass(str: string): FunJumboEmojiSize | null {
|
||||
const emojifyData = getEmojifyData(str);
|
||||
// Do we have non-emoji characters?
|
||||
if (!emojifyData.isEmojiOnlyText) {
|
||||
return null;
|
||||
}
|
||||
if (emojifyData.emojiCount === 1) {
|
||||
return FunJumboEmojiSize.Max;
|
||||
}
|
||||
if (emojifyData.emojiCount === 2) {
|
||||
return FunJumboEmojiSize.ExtraLarge;
|
||||
}
|
||||
if (emojifyData.emojiCount === 3) {
|
||||
return FunJumboEmojiSize.Large;
|
||||
}
|
||||
if (emojifyData.emojiCount === 4) {
|
||||
return FunJumboEmojiSize.Medium;
|
||||
}
|
||||
if (emojifyData.emojiCount === 5) {
|
||||
return FunJumboEmojiSize.Small;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
export type Props = {
|
||||
author?: string;
|
||||
bodyRanges?: HydratedBodyRangesType;
|
||||
direction?: 'incoming' | 'outgoing';
|
||||
// If set, all emoji will be the same size. Otherwise, just one emoji will be large.
|
||||
disableJumbomoji?: boolean;
|
||||
// If set, interactive elements will be left as plain text: links, mentions, spoilers
|
||||
disableLinks?: boolean;
|
||||
i18n: LocalizerType;
|
||||
isSpoilerExpanded: Record<string, boolean>;
|
||||
kickOffBodyDownload?: () => void;
|
||||
onExpandSpoiler?: (data: Record<number, boolean>) => unknown;
|
||||
onIncreaseTextLength?: () => unknown;
|
||||
prefix?: string;
|
||||
renderLocation: RenderLocation;
|
||||
showConversation?: ShowConversationType;
|
||||
text: string;
|
||||
textAttachment?: Pick<
|
||||
AttachmentType,
|
||||
'pending' | 'digest' | 'key' | 'wasTooBig' | 'path'
|
||||
>;
|
||||
originalText: string;
|
||||
};
|
||||
|
||||
/**
|
||||
* This component makes it very easy to use all three of our message formatting
|
||||
* components: `Emojify`, `Linkify`, and `AddNewLines`. Because each of them is fully
|
||||
* configurable with their `renderXXX` props, this component will assemble all three of
|
||||
* them for you.
|
||||
*/
|
||||
export function MessageBody({
|
||||
author,
|
||||
bodyRanges,
|
||||
direction,
|
||||
disableJumbomoji,
|
||||
disableLinks,
|
||||
i18n,
|
||||
isSpoilerExpanded,
|
||||
kickOffBodyDownload,
|
||||
onExpandSpoiler,
|
||||
onIncreaseTextLength,
|
||||
prefix,
|
||||
renderLocation,
|
||||
showConversation,
|
||||
text,
|
||||
textAttachment,
|
||||
originalText,
|
||||
}: Props): JSX.Element {
|
||||
const shouldDisableLinks =
|
||||
disableLinks || !shouldLinkifyMessage(originalText);
|
||||
const textWithSuffix =
|
||||
textAttachment?.pending || onIncreaseTextLength || textAttachment?.wasTooBig
|
||||
? `${text}...`
|
||||
: text;
|
||||
|
||||
const sizeClass = disableJumbomoji ? null : getSizeClass(text);
|
||||
|
||||
let endNotification: React.ReactNode;
|
||||
if (onIncreaseTextLength) {
|
||||
endNotification = (
|
||||
<button
|
||||
className="MessageBody__read-more"
|
||||
onClick={() => {
|
||||
onIncreaseTextLength();
|
||||
}}
|
||||
onKeyDown={(ev: KeyboardEvent) => {
|
||||
if (ev.key === 'Space' || ev.key === 'Enter') {
|
||||
onIncreaseTextLength();
|
||||
}
|
||||
}}
|
||||
tabIndex={0}
|
||||
type="button"
|
||||
>
|
||||
{' '}
|
||||
{i18n('icu:MessageBody--read-more')}
|
||||
</button>
|
||||
);
|
||||
} else if (textAttachment?.pending) {
|
||||
endNotification = (
|
||||
<span className="MessageBody__highlight"> {i18n('icu:downloading')}</span>
|
||||
);
|
||||
} else if (
|
||||
textAttachment &&
|
||||
canBeDownloaded(textAttachment) &&
|
||||
!isDownloaded(textAttachment) &&
|
||||
kickOffBodyDownload
|
||||
) {
|
||||
endNotification = (
|
||||
<span>
|
||||
{' '}
|
||||
<button
|
||||
className="MessageBody__download-body"
|
||||
onClick={() => {
|
||||
kickOffBodyDownload();
|
||||
}}
|
||||
onKeyDown={(ev: KeyboardEvent) => {
|
||||
if (ev.key === 'Space' || ev.key === 'Enter') {
|
||||
kickOffBodyDownload();
|
||||
}
|
||||
}}
|
||||
tabIndex={0}
|
||||
type="button"
|
||||
>
|
||||
{i18n('icu:downloadFullMessage')}
|
||||
</button>
|
||||
</span>
|
||||
);
|
||||
} else if (textAttachment?.wasTooBig) {
|
||||
endNotification = (
|
||||
<span className="MessageBody__message-too-long">
|
||||
{' '}
|
||||
{i18n('icu:MessageBody--message-too-long')}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<span>
|
||||
{author && (
|
||||
<>
|
||||
<span className="MessageBody__author">
|
||||
<UserText text={author} />
|
||||
</span>
|
||||
:{' '}
|
||||
</>
|
||||
)}
|
||||
{prefix && (
|
||||
<>
|
||||
<span className="MessageBody__prefix">
|
||||
<UserText text={prefix} />
|
||||
</span>{' '}
|
||||
</>
|
||||
)}
|
||||
|
||||
<MessageTextRenderer
|
||||
bodyRanges={bodyRanges ?? []}
|
||||
direction={direction}
|
||||
disableLinks={shouldDisableLinks}
|
||||
jumboEmojiSize={sizeClass}
|
||||
i18n={i18n}
|
||||
isSpoilerExpanded={isSpoilerExpanded}
|
||||
messageText={textWithSuffix}
|
||||
originalMessageText={originalText}
|
||||
onMentionTrigger={conversationId =>
|
||||
showConversation?.({ conversationId })
|
||||
}
|
||||
onExpandSpoiler={onExpandSpoiler}
|
||||
renderLocation={renderLocation}
|
||||
textLength={text.length}
|
||||
/>
|
||||
|
||||
{endNotification}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user