75 lines
1.8 KiB
JavaScript
75 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import { View, Text } from 'react-native';
|
|
import removeMarkdown from 'remove-markdown';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import shortnameToUnicode from '../../utils/shortnameToUnicode';
|
|
import { CustomIcon } from '../../lib/Icons';
|
|
import styles from './styles';
|
|
import { themes } from '../../constants/colors';
|
|
import I18n from '../../i18n';
|
|
|
|
const RepliedThread = React.memo(({
|
|
tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme
|
|
}) => {
|
|
if (!tmid || !isHeader) {
|
|
return null;
|
|
}
|
|
|
|
if (!tmsg) {
|
|
fetchThreadName(tmid, id);
|
|
return null;
|
|
}
|
|
|
|
let msg = shortnameToUnicode(tmsg);
|
|
msg = removeMarkdown(msg);
|
|
|
|
if (isEncrypted) {
|
|
msg = I18n.t('Encrypted_message');
|
|
}
|
|
|
|
return (
|
|
<View style={styles.repliedThread} testID={`message-thread-replied-on-${ msg }`}>
|
|
<CustomIcon name='threads' size={20} style={styles.repliedThreadIcon} color={themes[theme].tintColor} />
|
|
<Text style={[styles.repliedThreadName, { color: themes[theme].tintColor }]} numberOfLines={1}>{msg}</Text>
|
|
<View style={styles.repliedThreadDisclosure}>
|
|
<CustomIcon
|
|
name='chevron-right'
|
|
color={themes[theme].auxiliaryText}
|
|
size={20}
|
|
/>
|
|
</View>
|
|
</View>
|
|
);
|
|
}, (prevProps, nextProps) => {
|
|
if (prevProps.tmid !== nextProps.tmid) {
|
|
return false;
|
|
}
|
|
if (prevProps.tmsg !== nextProps.tmsg) {
|
|
return false;
|
|
}
|
|
if (prevProps.isEncrypted !== nextProps.isEncrypted) {
|
|
return false;
|
|
}
|
|
if (prevProps.isHeader !== nextProps.isHeader) {
|
|
return false;
|
|
}
|
|
if (prevProps.theme !== nextProps.theme) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
RepliedThread.propTypes = {
|
|
tmid: PropTypes.string,
|
|
tmsg: PropTypes.string,
|
|
id: PropTypes.string,
|
|
isHeader: PropTypes.bool,
|
|
theme: PropTypes.string,
|
|
fetchThreadName: PropTypes.func,
|
|
isEncrypted: PropTypes.bool
|
|
};
|
|
RepliedThread.displayName = 'MessageRepliedThread';
|
|
|
|
export default RepliedThread;
|