summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/reaction/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/reaction/index.js')
-rw-r--r--webapp/components/post_view/reaction/index.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/webapp/components/post_view/reaction/index.js b/webapp/components/post_view/reaction/index.js
deleted file mode 100644
index 74edd1324..000000000
--- a/webapp/components/post_view/reaction/index.js
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-import {bindActionCreators} from 'redux';
-import {getCurrentUserId, makeGetProfilesForReactions} from 'mattermost-redux/selectors/entities/users';
-import {getMissingProfilesByIds} from 'mattermost-redux/actions/users';
-import {addReaction, removeReaction} from 'mattermost-redux/actions/posts';
-import {getEmojiImageUrl} from 'mattermost-redux/utils/emoji_utils';
-import * as Emoji from 'utils/emoji.jsx';
-
-import Reaction from './reaction.jsx';
-
-function makeMapStateToProps() {
- const getProfilesForReactions = makeGetProfilesForReactions();
-
- return function mapStateToProps(state, ownProps) {
- const profiles = getProfilesForReactions(state, ownProps.reactions);
- let emoji;
- if (Emoji.EmojiIndicesByAlias.has(ownProps.emojiName)) {
- emoji = Emoji.Emojis[Emoji.EmojiIndicesByAlias.get(ownProps.emojiName)];
- } else {
- emoji = ownProps.emojis.get(ownProps.emojiName);
- }
-
- let emojiImageUrl = '';
- if (emoji) {
- emojiImageUrl = getEmojiImageUrl(emoji);
- }
-
- return {
- ...ownProps,
- profiles,
- otherUsersCount: ownProps.reactions.length - profiles.length,
- currentUserId: getCurrentUserId(state),
- reactionCount: ownProps.reactions.length,
- emojiImageUrl
- };
- };
-}
-
-function mapDispatchToProps(dispatch) {
- return {
- actions: bindActionCreators({
- addReaction,
- removeReaction,
- getMissingProfilesByIds
- }, dispatch)
- };
-}
-
-export default connect(makeMapStateToProps, mapDispatchToProps)(Reaction);