forked from Ivasoft/mattermost-mobile
* RN-270 "Jump to conversation" filtering * Review Feedback * Change reduce filter for member details * Remove duplicate email push
55 lines
1.8 KiB
JavaScript
55 lines
1.8 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
import {bindActionCreators} from 'redux';
|
|
|
|
import {addReaction, getReactionsForPost, removeReaction} from 'mattermost-redux/actions/posts';
|
|
import {makeGetReactionsForPost} from 'mattermost-redux/selectors/entities/posts';
|
|
import {getCurrentUserId} from 'mattermost-redux/selectors/entities/users';
|
|
|
|
import {getTheme} from 'app/selectors/preferences';
|
|
|
|
import Reactions from './reactions';
|
|
|
|
function makeMapStateToProps() {
|
|
const getReactionsForPostSelector = makeGetReactionsForPost();
|
|
return function mapStateToProps(state, ownProps) {
|
|
const currentUserId = getCurrentUserId(state);
|
|
const reactionsForPost = getReactionsForPostSelector(state, ownProps.postId);
|
|
|
|
const highlightedReactions = [];
|
|
const reactionsByName = reactionsForPost.reduce((reactions, reaction) => {
|
|
if (reactions.has(reaction.emoji_name)) {
|
|
reactions.get(reaction.emoji_name).push(reaction);
|
|
} else {
|
|
reactions.set(reaction.emoji_name, [reaction]);
|
|
}
|
|
|
|
if (reaction.user_id === currentUserId) {
|
|
highlightedReactions.push(reaction.emoji_name);
|
|
}
|
|
|
|
return reactions;
|
|
}, new Map());
|
|
|
|
return {
|
|
highlightedReactions,
|
|
reactions: reactionsByName,
|
|
theme: getTheme(state)
|
|
};
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
addReaction,
|
|
getReactionsForPost,
|
|
removeReaction
|
|
}, dispatch)
|
|
};
|
|
}
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Reactions);
|