32 lines
884 B
JavaScript
32 lines
884 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {bindActionCreators} from 'redux';
|
|
import {connect} from 'react-redux';
|
|
|
|
import {handleCreateChannel} from 'app/actions/views/create_channel';
|
|
|
|
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
|
|
|
|
import CreateChannel from './create_channel';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const {createChannel: createChannelRequest} = state.requests.channels;
|
|
|
|
return {
|
|
...ownProps,
|
|
createChannelRequest,
|
|
channelType: ownProps.channelType,
|
|
theme: getTheme(state)
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
handleCreateChannel
|
|
}, dispatch)
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(CreateChannel);
|