Rocket.Chat.ReactNative/app/containers/MessageBox/Mentions/index.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

import React from 'react';
2020-03-03 20:27:38 +00:00
import { FlatList, View } from 'react-native';
import PropTypes from 'prop-types';
import { dequal } from 'dequal';
import styles from '../styles';
import MentionItem from './MentionItem';
2019-12-04 16:39:53 +00:00
import { themes } from '../../../constants/colors';
2019-12-04 16:39:53 +00:00
const Mentions = React.memo(({ mentions, trackingType, theme }) => {
if (!trackingType) {
return null;
}
return (
2020-03-03 20:27:38 +00:00
<View testID='messagebox-container'>
<FlatList
style={[styles.mentionList, { backgroundColor: themes[theme].auxiliaryBackground }]}
data={mentions}
extraData={mentions}
renderItem={({ item }) => <MentionItem item={item} trackingType={trackingType} theme={theme} />}
keyExtractor={item => item.rid || item.name || item.command || item}
2020-03-03 20:27:38 +00:00
keyboardShouldPersistTaps='always'
/>
</View>
);
}, (prevProps, nextProps) => {
2019-12-04 16:39:53 +00:00
if (prevProps.theme !== nextProps.theme) {
return false;
}
if (prevProps.trackingType !== nextProps.trackingType) {
return false;
}
if (!dequal(prevProps.mentions, nextProps.mentions)) {
return false;
}
return true;
});
Mentions.propTypes = {
mentions: PropTypes.array,
2019-12-04 16:39:53 +00:00
trackingType: PropTypes.string,
theme: PropTypes.string
};
export default Mentions;