// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import {OverlayTrigger, Tooltip} from 'react-bootstrap'; import {FormattedMessage} from 'react-intl'; import EmojiStore from 'stores/emoji_store.jsx'; import * as Utils from 'utils/utils.jsx'; export default class Reaction extends React.Component { static propTypes = { post: React.PropTypes.object.isRequired, currentUserId: React.PropTypes.string.isRequired, emojiName: React.PropTypes.string.isRequired, reactions: React.PropTypes.arrayOf(React.PropTypes.object), emojis: React.PropTypes.object.isRequired, profiles: React.PropTypes.array.isRequired, otherUsers: React.PropTypes.number.isRequired, actions: React.PropTypes.shape({ addReaction: React.PropTypes.func.isRequired, getMissingProfiles: React.PropTypes.func.isRequired, removeReaction: React.PropTypes.func.isRequired }) } constructor(props) { super(props); this.addReaction = this.addReaction.bind(this); this.removeReaction = this.removeReaction.bind(this); } addReaction(e) { e.preventDefault(); this.props.actions.addReaction(this.props.post.channel_id, this.props.post.id, this.props.emojiName); } removeReaction(e) { e.preventDefault(); this.props.actions.removeReaction(this.props.post.channel_id, this.props.post.id, this.props.emojiName); } render() { if (!this.props.emojis.has(this.props.emojiName)) { return null; } let currentUserReacted = false; const users = []; const otherUsers = this.props.otherUsers; for (const user of this.props.profiles) { if (user.id === this.props.currentUserId) { currentUserReacted = true; } else { users.push(Utils.displayUsernameForUser(user)); } } // Sort users in alphabetical order with "you" being first if the current user reacted users.sort(); if (currentUserReacted) { users.unshift(Utils.localizeMessage('reaction.you', 'You')); } let names; if (otherUsers > 0) { if (users.length > 0) { names = ( ); } else { names = ( ); } } else if (users.length > 1) { names = ( ); } else { names = users[0]; } let reactionVerb; if (users.length + otherUsers > 1) { if (currentUserReacted) { reactionVerb = ( ); } else { reactionVerb = ( ); } } else if (currentUserReacted) { reactionVerb = ( ); } else { reactionVerb = ( ); } const tooltip = ( {names}, reactionVerb, emoji: {':' + this.props.emojiName + ':'} }} /> ); let handleClick; let clickTooltip; let className = 'post-reaction'; if (currentUserReacted) { handleClick = this.removeReaction; clickTooltip = ( ); className += ' post-reaction--current-user'; } else { handleClick = this.addReaction; clickTooltip = ( ); } return ( {tooltip}
{clickTooltip} } onEnter={this.props.actions.getMissingProfiles} >
{this.props.reactions.length}
); } }