* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
import {bindActionCreators} from 'redux';
|
|
import {createSelector} from 'reselect';
|
|
|
|
import {joinChannel} from '@mm-redux/actions/channels';
|
|
import {getChannelsNameMapInCurrentTeam} from '@mm-redux/selectors/entities/channels';
|
|
import {getCurrentTeamId} from '@mm-redux/selectors/entities/teams';
|
|
import {getCurrentUserId} from '@mm-redux/selectors/entities/users';
|
|
|
|
import {handleSelectChannel} from 'app/actions/views/channel';
|
|
|
|
import ChannelLink from './channel_link';
|
|
|
|
function makeGetChannelNamesMap() {
|
|
return createSelector(
|
|
getChannelsNameMapInCurrentTeam,
|
|
(state, props) => props && props.channelMentions,
|
|
(channelsNameMap, channelMentions) => {
|
|
if (channelMentions) {
|
|
return Object.assign({}, channelMentions, channelsNameMap);
|
|
}
|
|
|
|
return channelsNameMap;
|
|
},
|
|
);
|
|
}
|
|
|
|
function makeMapStateToProps() {
|
|
const getChannelNamesMap = makeGetChannelNamesMap();
|
|
|
|
return function mapStateToProps(state, ownProps) {
|
|
return {
|
|
channelsByName: getChannelNamesMap(state, ownProps),
|
|
currentTeamId: getCurrentTeamId(state),
|
|
currentUserId: getCurrentUserId(state),
|
|
};
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
handleSelectChannel,
|
|
joinChannel,
|
|
}, dispatch),
|
|
};
|
|
}
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(ChannelLink);
|