import React from 'react'; import { FlatList } from 'react-native'; import PropTypes from 'prop-types'; import equal from 'deep-equal'; import styles from '../styles'; import MentionItem from './MentionItem'; import { themes } from '../../../constants/colors'; const Mentions = React.memo(({ mentions, trackingType, theme }) => { if (!trackingType) { return null; } return ( } keyExtractor={item => item.id || item.username || item.command || item} keyboardShouldPersistTaps='always' /> ); }, (prevProps, nextProps) => { if (prevProps.theme !== nextProps.theme) { return false; } if (prevProps.trackingType !== nextProps.trackingType) { return false; } if (!equal(prevProps.mentions, nextProps.mentions)) { return false; } return true; }); Mentions.propTypes = { mentions: PropTypes.array, trackingType: PropTypes.string, theme: PropTypes.string }; export default Mentions;