* Move channel store and actions over to redux * Fix style errors * Fix unit test * Various fixes * More fixes * Revert config changes
29 строки
799 B
JavaScript
29 строки
799 B
JavaScript
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
import {bindActionCreators} from 'redux';
|
|
import {getUser} from 'mattermost-redux/actions/users';
|
|
import {getTeamStats} from 'mattermost-redux/actions/teams';
|
|
import {getChannelStats} from 'mattermost-redux/actions/channels';
|
|
|
|
import TeamMembersDropdown from './team_members_dropdown.jsx';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
...ownProps
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
getUser,
|
|
getTeamStats,
|
|
getChannelStats
|
|
}, dispatch)
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(TeamMembersDropdown);
|