2020-04-30 20:05:59 +00:00
|
|
|
import React, { useContext } from 'react';
|
2019-05-20 20:43:50 +00:00
|
|
|
import { View, Text } from 'react-native';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
2020-04-30 20:05:59 +00:00
|
|
|
import Touchable from './Touchable';
|
2019-05-20 20:43:50 +00:00
|
|
|
import { CustomIcon } from '../../lib/Icons';
|
|
|
|
import styles from './styles';
|
|
|
|
import Emoji from './Emoji';
|
|
|
|
import { BUTTON_HIT_SLOP } from './utils';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
|
|
|
import { withTheme } from '../../theme';
|
2020-04-30 20:05:59 +00:00
|
|
|
import MessageContext from './Context';
|
2019-05-20 20:43:50 +00:00
|
|
|
|
2020-04-30 20:05:59 +00:00
|
|
|
const AddReaction = React.memo(({ theme }) => {
|
|
|
|
const { reactionInit } = useContext(MessageContext);
|
|
|
|
return (
|
|
|
|
<Touchable
|
|
|
|
onPress={reactionInit}
|
|
|
|
key='message-add-reaction'
|
|
|
|
testID='message-add-reaction'
|
|
|
|
style={[styles.reactionButton, { backgroundColor: themes[theme].backgroundColor }]}
|
|
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
|
|
|
hitSlop={BUTTON_HIT_SLOP}
|
|
|
|
>
|
|
|
|
<View style={[styles.reactionContainer, { borderColor: themes[theme].borderColor }]}>
|
2020-07-27 19:53:33 +00:00
|
|
|
<CustomIcon name='reaction-add' size={21} color={themes[theme].tintColor} />
|
2020-04-30 20:05:59 +00:00
|
|
|
</View>
|
|
|
|
</Touchable>
|
|
|
|
);
|
|
|
|
});
|
2019-05-20 20:43:50 +00:00
|
|
|
|
|
|
|
const Reaction = React.memo(({
|
2020-04-30 20:05:59 +00:00
|
|
|
reaction, getCustomEmoji, theme
|
2019-05-20 20:43:50 +00:00
|
|
|
}) => {
|
2020-04-30 20:05:59 +00:00
|
|
|
const {
|
|
|
|
onReactionPress, onReactionLongPress, baseUrl, user
|
|
|
|
} = useContext(MessageContext);
|
2019-05-20 20:43:50 +00:00
|
|
|
const reacted = reaction.usernames.findIndex(item => item === user.username) !== -1;
|
|
|
|
return (
|
|
|
|
<Touchable
|
|
|
|
onPress={() => onReactionPress(reaction.emoji)}
|
|
|
|
onLongPress={onReactionLongPress}
|
|
|
|
key={reaction.emoji}
|
|
|
|
testID={`message-reaction-${ reaction.emoji }`}
|
2019-12-04 16:39:53 +00:00
|
|
|
style={[styles.reactionButton, { backgroundColor: reacted ? themes[theme].bannerBackground : themes[theme].backgroundColor }]}
|
|
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
2019-05-20 20:43:50 +00:00
|
|
|
hitSlop={BUTTON_HIT_SLOP}
|
|
|
|
>
|
2019-12-04 16:39:53 +00:00
|
|
|
<View style={[styles.reactionContainer, { borderColor: reacted ? themes[theme].tintColor : themes[theme].borderColor }]}>
|
2019-05-20 20:43:50 +00:00
|
|
|
<Emoji
|
|
|
|
content={reaction.emoji}
|
|
|
|
standardEmojiStyle={styles.reactionEmoji}
|
|
|
|
customEmojiStyle={styles.reactionCustomEmoji}
|
|
|
|
baseUrl={baseUrl}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
/>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={[styles.reactionCount, { color: themes[theme].tintColor }]}>{ reaction.usernames.length }</Text>
|
2019-05-20 20:43:50 +00:00
|
|
|
</View>
|
|
|
|
</Touchable>
|
|
|
|
);
|
2019-05-23 17:51:42 +00:00
|
|
|
});
|
2019-05-20 20:43:50 +00:00
|
|
|
|
|
|
|
const Reactions = React.memo(({
|
2020-04-30 20:05:59 +00:00
|
|
|
reactions, getCustomEmoji, theme
|
2019-05-20 20:43:50 +00:00
|
|
|
}) => {
|
2020-02-17 16:06:30 +00:00
|
|
|
if (!Array.isArray(reactions) || reactions.length === 0) {
|
2019-05-20 20:43:50 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<View style={styles.reactionsContainer}>
|
|
|
|
{reactions.map(reaction => (
|
|
|
|
<Reaction
|
|
|
|
key={reaction.emoji}
|
|
|
|
reaction={reaction}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-05-20 20:43:50 +00:00
|
|
|
/>
|
|
|
|
))}
|
2020-04-30 20:05:59 +00:00
|
|
|
<AddReaction theme={theme} />
|
2019-05-20 20:43:50 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
Reaction.propTypes = {
|
|
|
|
reaction: PropTypes.object,
|
2019-12-04 16:39:53 +00:00
|
|
|
getCustomEmoji: PropTypes.func,
|
|
|
|
theme: PropTypes.string
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
Reaction.displayName = 'MessageReaction';
|
|
|
|
|
|
|
|
Reactions.propTypes = {
|
|
|
|
reactions: PropTypes.oneOfType([PropTypes.array, PropTypes.object]),
|
2019-12-04 16:39:53 +00:00
|
|
|
getCustomEmoji: PropTypes.func,
|
|
|
|
theme: PropTypes.string
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
Reactions.displayName = 'MessageReactions';
|
|
|
|
|
|
|
|
AddReaction.propTypes = {
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
AddReaction.displayName = 'MessageAddReaction';
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default withTheme(Reactions);
|