vn-verdnaturachat/app/containers/markdown/AtMention.js

79 lines
1.6 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import { Text } from 'react-native';
2019-12-04 16:39:53 +00:00
import { themes } from '../../constants/colors';
import styles from './styles';
import { logEvent, events } from '../../utils/log';
const AtMention = React.memo(({
2020-02-28 16:18:03 +00:00
mention, mentions, username, navToRoomInfo, style = [], useRealName, theme
}) => {
if (mention === 'all' || mention === 'here') {
return (
<Text
style={[
styles.mention,
{
color: themes[theme].mentionGroupColor
},
...style
]}
>{mention}
</Text>
);
}
let mentionStyle = {};
if (mention === username) {
mentionStyle = {
color: themes[theme].mentionMeColor
2019-12-04 16:39:53 +00:00
};
} else {
mentionStyle = {
color: themes[theme].mentionOtherColor
};
}
const user = mentions?.find?.(m => m && m.username === mention);
const handlePress = () => {
logEvent(events.ROOM_MENTION_GO_USER_INFO);
const navParam = {
t: 'd',
rid: user && user._id
};
navToRoomInfo(navParam);
};
if (user) {
return (
<Text
style={[styles.mention, mentionStyle, ...style]}
2020-02-28 16:18:03 +00:00
onPress={handlePress}
>
{useRealName && user.name ? user.name : user.username}
</Text>
);
}
return (
<Text style={[styles.text, { color: themes[theme].bodyText }, ...style]}>
{`@${ mention }`}
</Text>
);
});
AtMention.propTypes = {
mention: PropTypes.string,
username: PropTypes.string,
navToRoomInfo: PropTypes.func,
2019-10-02 12:41:51 +00:00
style: PropTypes.array,
useRealName: PropTypes.bool,
2019-12-04 16:39:53 +00:00
theme: PropTypes.string,
mentions: PropTypes.oneOfType([PropTypes.array, PropTypes.object])
};
export default AtMention;