2018-01-18 19:58:34 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-01-18 21:43:02 +01:00
|
|
|
import { updateLoggedInChannel } from 'actions/channel';
|
2018-01-18 19:58:34 +01:00
|
|
|
import View from './view';
|
2018-01-19 19:16:55 +01:00
|
|
|
import {updateSelectedChannel} from '../../actions/publish';
|
2018-01-18 19:58:34 +01:00
|
|
|
|
|
|
|
const mapStateToProps = ({ channel }) => {
|
|
|
|
return {
|
|
|
|
channelName : channel.loggedInChannel.name,
|
|
|
|
channelShortId: channel.loggedInChannel.shortId,
|
|
|
|
channelLongId : channel.loggedInChannel.longId,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-01-18 21:43:02 +01:00
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
onChannelLogin: (name, shortId, longId) => {
|
|
|
|
dispatch(updateLoggedInChannel(name, shortId, longId));
|
2018-01-19 19:16:55 +01:00
|
|
|
dispatch(updateSelectedChannel(name));
|
2018-01-18 21:43:02 +01:00
|
|
|
},
|
2018-02-02 23:48:04 +01:00
|
|
|
onChannelLogout: () => {
|
|
|
|
dispatch(updateLoggedInChannel(null, null, null));
|
|
|
|
},
|
2018-01-18 21:43:02 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|