import React from 'react'; import PropTypes from 'prop-types'; import { Text } from 'react-native'; import styles from './styles'; const AtMention = React.memo(({ mention, mentions, username, navToRoomInfo }) => { let mentionStyle = styles.mention; if (mention === 'all' || mention === 'here') { mentionStyle = { ...mentionStyle, ...styles.mentionAll }; } else if (mention === username) { mentionStyle = { ...mentionStyle, ...styles.mentionLoggedUser }; } const handlePress = () => { if (mentions && mentions.length && mentions.findIndex(m => m.username === mention) !== -1) { const index = mentions.findIndex(m => m.username === mention); const navParam = { t: 'd', rid: mentions[index]._id }; navToRoomInfo(navParam); } }; return ( {`@${ mention }`} ); }); AtMention.propTypes = { mention: PropTypes.string, username: PropTypes.string, navToRoomInfo: PropTypes.func, mentions: PropTypes.oneOfType([PropTypes.array, PropTypes.object]) }; export default AtMention;