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

21 lines
521 B
JavaScript
Raw Normal View History

2018-01-17 10:49:57 -08:00
import {connect} from 'react-redux';
2018-01-18 09:33:26 -08:00
import {setPublishInChannel} from 'actions/publish';
2018-01-17 10:49:57 -08:00
import View from './view.jsx';
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-17 10:49:57 -08:00
};
};
const mapDispatchToProps = dispatch => {
return {
onPublishInChannelChange: (value) => {
dispatch(setPublishInChannel(value));
},
};
}
export default connect(mapStateToProps, mapDispatchToProps)(View);