spee.ch/react/containers/ChannelSelect/index.js

28 lines
830 B
JavaScript
Raw Normal View History

2018-01-17 19:49:57 +01:00
import {connect} from 'react-redux';
import {setPublishInChannel, updateSelectedChannel, updateError} from 'actions/publish';
import View from './view';
2018-01-17 19:49:57 +01:00
2018-01-18 18:33:26 +01:00
const mapStateToProps = ({ channel, publish }) => {
2018-01-17 19:49:57 +01:00
return {
2018-01-18 18:33:26 +01:00
loggedInChannelName: channel.loggedInChannel.name,
publishInChannel : publish.publishInChannel,
selectedChannel : publish.selectedChannel,
channelError : publish.error.channel,
2018-01-17 19:49:57 +01:00
};
};
const mapDispatchToProps = dispatch => {
return {
onPublishInChannelChange: (value) => {
dispatch(updateError('channel', null));
2018-01-17 19:49:57 +01:00
dispatch(setPublishInChannel(value));
},
onChannelSelect: (value) => {
dispatch(updateError('channel', null));
dispatch(updateSelectedChannel(value));
},
2018-01-17 19:49:57 +01:00
};
}
export default connect(mapStateToProps, mapDispatchToProps)(View);