2018-01-17 19:49:57 +01:00
|
|
|
import {connect} from 'react-redux';
|
2018-01-24 21:02:40 +01:00
|
|
|
import {setPublishInChannel, updateSelectedChannel} from 'actions/publish';
|
2018-01-17 19:49:57 +01:00
|
|
|
import View from './view.jsx';
|
|
|
|
|
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,
|
2018-01-19 19:16:55 +01:00
|
|
|
selectedChannel : publish.selectedChannel,
|
2018-01-17 19:49:57 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
onPublishInChannelChange: (value) => {
|
|
|
|
dispatch(setPublishInChannel(value));
|
|
|
|
},
|
2018-01-19 19:16:55 +01:00
|
|
|
onChannelSelect: (value) => {
|
|
|
|
dispatch(updateSelectedChannel(value));
|
|
|
|
},
|
2018-01-17 19:49:57 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|