2021-09-13 20:41:05 +00:00
|
|
|
import React, { useContext } from 'react';
|
|
|
|
import { Text, View } from 'react-native';
|
|
|
|
import { dequal } from 'dequal';
|
|
|
|
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
import styles from './styles';
|
2022-02-17 15:27:01 +00:00
|
|
|
import Markdown, { MarkdownPreview } from '../markdown';
|
2021-09-13 20:41:05 +00:00
|
|
|
import User from './User';
|
|
|
|
import { SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME, getInfoMessage } from './utils';
|
|
|
|
import { themes } from '../../constants/colors';
|
|
|
|
import MessageContext from './Context';
|
|
|
|
import Encrypted from './Encrypted';
|
2022-04-04 19:15:29 +00:00
|
|
|
import { E2E_MESSAGE_TYPE } from '../../lib/constants';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { IMessageContent } from './interfaces';
|
2022-04-01 21:52:38 +00:00
|
|
|
import { useTheme } from '../../theme';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
const Content = React.memo(
|
|
|
|
(props: IMessageContent) => {
|
2022-04-01 21:52:38 +00:00
|
|
|
const { theme } = useTheme();
|
2021-09-13 20:41:05 +00:00
|
|
|
if (props.isInfo) {
|
|
|
|
// @ts-ignore
|
|
|
|
const infoMessage = getInfoMessage({ ...props });
|
|
|
|
|
|
|
|
const renderMessageContent = (
|
2022-04-01 21:52:38 +00:00
|
|
|
<Text style={[styles.textInfo, { color: themes[theme].auxiliaryText }]} accessibilityLabel={infoMessage}>
|
2021-09-13 20:41:05 +00:00
|
|
|
{infoMessage}
|
|
|
|
</Text>
|
|
|
|
);
|
|
|
|
|
|
|
|
if (SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME.includes(props.type)) {
|
|
|
|
return (
|
|
|
|
<Text>
|
|
|
|
<User {...props} /> {renderMessageContent}
|
|
|
|
</Text>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return renderMessageContent;
|
|
|
|
}
|
|
|
|
|
2022-04-01 21:52:38 +00:00
|
|
|
const isPreview = props.tmid && !props.isThreadRoom;
|
2021-09-13 20:41:05 +00:00
|
|
|
let content = null;
|
|
|
|
|
2022-03-23 14:37:11 +00:00
|
|
|
if (props.isEncrypted) {
|
2021-09-13 20:41:05 +00:00
|
|
|
content = (
|
2022-04-01 21:52:38 +00:00
|
|
|
<Text style={[styles.textInfo, { color: themes[theme].auxiliaryText }]} accessibilityLabel={I18n.t('Encrypted_message')}>
|
2021-12-02 13:19:15 +00:00
|
|
|
{I18n.t('Encrypted_message')}
|
|
|
|
</Text>
|
2021-09-13 20:41:05 +00:00
|
|
|
);
|
2022-02-17 15:27:01 +00:00
|
|
|
} else if (isPreview) {
|
|
|
|
content = <MarkdownPreview msg={props.msg} />;
|
2021-09-13 20:41:05 +00:00
|
|
|
} else {
|
|
|
|
const { baseUrl, user, onLinkPress } = useContext(MessageContext);
|
|
|
|
content = (
|
|
|
|
<Markdown
|
|
|
|
msg={props.msg}
|
2021-10-20 16:32:58 +00:00
|
|
|
md={props.md}
|
2021-09-13 20:41:05 +00:00
|
|
|
baseUrl={baseUrl}
|
|
|
|
getCustomEmoji={props.getCustomEmoji}
|
2021-10-20 16:32:58 +00:00
|
|
|
enableMessageParser={user.enableMessageParserEarlyAdoption}
|
2021-09-13 20:41:05 +00:00
|
|
|
username={user.username}
|
|
|
|
isEdited={props.isEdited}
|
|
|
|
channels={props.channels}
|
|
|
|
mentions={props.mentions}
|
|
|
|
navToRoomInfo={props.navToRoomInfo}
|
|
|
|
tmid={props.tmid}
|
|
|
|
useRealName={props.useRealName}
|
2022-04-01 21:52:38 +00:00
|
|
|
theme={theme}
|
2021-09-13 20:41:05 +00:00
|
|
|
onLinkPress={onLinkPress}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a encrypted message and is not a preview
|
|
|
|
if (props.type === E2E_MESSAGE_TYPE && !isPreview) {
|
|
|
|
content = (
|
|
|
|
<View style={styles.flex}>
|
|
|
|
<View style={styles.contentContainer}>{content}</View>
|
2022-04-01 21:52:38 +00:00
|
|
|
<Encrypted type={props.type} />
|
2021-09-13 20:41:05 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props.isIgnored) {
|
2022-04-01 21:52:38 +00:00
|
|
|
content = <Text style={[styles.textInfo, { color: themes[theme].auxiliaryText }]}>{I18n.t('Message_Ignored')}</Text>;
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return <View style={props.isTemp && styles.temp}>{content}</View>;
|
|
|
|
},
|
|
|
|
(prevProps, nextProps) => {
|
|
|
|
if (prevProps.isTemp !== nextProps.isTemp) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.msg !== nextProps.msg) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.type !== nextProps.type) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.isEncrypted !== nextProps.isEncrypted) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.isIgnored !== nextProps.isIgnored) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-10-20 16:32:58 +00:00
|
|
|
if (!dequal(prevProps.md, nextProps.md)) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
if (!dequal(prevProps.mentions, nextProps.mentions)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!dequal(prevProps.channels, nextProps.channels)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
Content.displayName = 'MessageContent';
|
|
|
|
|
|
|
|
export default Content;
|