import React from 'react'; import { View, Text, TouchableWithoutFeedback, FlatList, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import Modal from 'react-native-modal'; import Icon from 'react-native-vector-icons/MaterialIcons'; import Emoji from './Emoji'; import I18n from '../../i18n'; const styles = StyleSheet.create({ titleContainer: { width: '100%', alignItems: 'center', paddingVertical: 10 }, title: { color: '#ffffff', textAlign: 'center', fontSize: 16, fontWeight: '600' }, reactCount: { color: '#dddddd', fontSize: 10 }, peopleReacted: { color: '#ffffff', fontWeight: '500' }, peopleItemContainer: { flex: 1, flexDirection: 'column', justifyContent: 'center' }, emojiContainer: { width: 50, height: 50, alignItems: 'center', justifyContent: 'center' }, itemContainer: { height: 50, flexDirection: 'row' }, listContainer: { flex: 1 }, closeButton: { position: 'absolute', left: 0, top: 10, color: '#ffffff' } }); const standardEmojiStyle = { fontSize: 20 }; const customEmojiStyle = { width: 20, height: 20 }; export default class ReactionsModal extends React.PureComponent { static propTypes = { isVisible: PropTypes.bool.isRequired, close: PropTypes.func.isRequired, reactions: PropTypes.object.isRequired, user: PropTypes.object.isRequired, baseUrl: PropTypes.string.isRequired, customEmojis: PropTypes.oneOfType([ PropTypes.array, PropTypes.object ]) } renderItem = (item) => { const { user, customEmojis, baseUrl } = this.props; const count = item.usernames.length; let usernames = item.usernames.slice(0, 3) .map(username => (username.value === user.username ? I18n.t('you') : username.value)).join(', '); if (count > 3) { usernames = `${ usernames } ${ I18n.t('and_more') } ${ count - 3 }`; } else { usernames = usernames.replace(/,(?=[^,]*$)/, ` ${ I18n.t('and') }`); } return ( {count === 1 ? I18n.t('1_person_reacted') : I18n.t('N_people_reacted', { n: count })} { usernames } ); } render() { const { isVisible, close, reactions } = this.props; return ( {I18n.t('Reactions')} this.renderItem(item)} keyExtractor={item => item.emoji} /> ); } }