import React from 'react'; import { View, Text } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import PropTypes from 'prop-types'; import { CustomIcon } from '../../lib/Icons'; import styles from './styles'; import Emoji from './Emoji'; import { BUTTON_HIT_SLOP } from './utils'; const AddReaction = React.memo(({ reactionInit }) => ( )); const Reaction = React.memo(({ reaction, user, onReactionLongPress, onReactionPress, baseUrl, getCustomEmoji }) => { const reacted = reaction.usernames.findIndex(item => item === user.username) !== -1; return ( onReactionPress(reaction.emoji)} onLongPress={onReactionLongPress} key={reaction.emoji} testID={`message-reaction-${ reaction.emoji }`} style={[styles.reactionButton, reacted && styles.reactionButtonReacted]} background={Touchable.Ripple('#fff')} hitSlop={BUTTON_HIT_SLOP} > { reaction.usernames.length } ); }); const Reactions = React.memo(({ reactions, user, baseUrl, onReactionPress, reactionInit, onReactionLongPress, getCustomEmoji }) => { if (!reactions || reactions.length === 0) { return null; } return ( {reactions.map(reaction => ( ))} ); }); Reaction.propTypes = { reaction: PropTypes.object, user: PropTypes.object, baseUrl: PropTypes.string, onReactionPress: PropTypes.func, onReactionLongPress: PropTypes.func, getCustomEmoji: PropTypes.func }; Reaction.displayName = 'MessageReaction'; Reactions.propTypes = { reactions: PropTypes.oneOfType([PropTypes.array, PropTypes.object]), user: PropTypes.object, baseUrl: PropTypes.string, onReactionPress: PropTypes.func, reactionInit: PropTypes.func, onReactionLongPress: PropTypes.func, getCustomEmoji: PropTypes.func }; Reactions.displayName = 'MessageReactions'; AddReaction.propTypes = { reactionInit: PropTypes.func }; AddReaction.displayName = 'MessageAddReaction'; export default Reactions;