2018-01-17 10:49:57 -08:00
|
|
|
import {connect} from 'react-redux';
|
2018-01-24 15:29:23 -08:00
|
|
|
import {setPublishInChannel, updateSelectedChannel, updateError} from 'actions/publish';
|
2018-02-01 14:29:33 -08:00
|
|
|
import View from './view';
|
2018-01-17 10:49:57 -08:00
|
|
|
|
2018-01-18 09:33:26 -08:00
|
|
|
const mapStateToProps = ({ channel, publish }) => {
|
2018-01-17 10:49:57 -08:00
|
|
|
return {
|
2018-01-18 09:33:26 -08:00
|
|
|
loggedInChannelName: channel.loggedInChannel.name,
|
|
|
|
publishInChannel : publish.publishInChannel,
|
2018-01-19 10:16:55 -08:00
|
|
|
selectedChannel : publish.selectedChannel,
|
2018-01-24 12:32:24 -08:00
|
|
|
channelError : publish.error.channel,
|
2018-01-17 10:49:57 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
onPublishInChannelChange: (value) => {
|
2018-01-24 15:29:23 -08:00
|
|
|
dispatch(updateError('channel', null));
|
2018-01-17 10:49:57 -08:00
|
|
|
dispatch(setPublishInChannel(value));
|
|
|
|
},
|
2018-01-19 10:16:55 -08:00
|
|
|
onChannelSelect: (value) => {
|
2018-01-24 15:29:23 -08:00
|
|
|
dispatch(updateError('channel', null));
|
2018-01-19 10:16:55 -08:00
|
|
|
dispatch(updateSelectedChannel(value));
|
|
|
|
},
|
2018-01-17 10:49:57 -08:00
|
|
|
};
|
2018-02-21 17:02:57 -08:00
|
|
|
};
|
2018-01-17 10:49:57 -08:00
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|