42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {newChannelRequest, updateRequestError, showNewChannel, updateShowChannel, clearShowChannel} from 'actions/show';
|
|
import View from './view';
|
|
|
|
const mapStateToProps = ({ show }) => {
|
|
return {
|
|
// request
|
|
requestId : show.request.id,
|
|
requestType : show.request.type,
|
|
requestChannelName: show.request.data.name,
|
|
requestChannelId : show.request.data.id,
|
|
requestList : show.channelRequests,
|
|
channelList : show.channelList,
|
|
// show channel
|
|
error : show.showChannel.error,
|
|
name : show.showChannel.channelData.name,
|
|
shortId : show.showChannel.channelData.shortId,
|
|
longId : show.showChannel.channelData.longId,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
onNewChannelRequest (id, name, channelId) {
|
|
dispatch(newChannelRequest(id, name, channelId));
|
|
},
|
|
onRequestError: (error) => {
|
|
dispatch(updateRequestError(error, null, null));
|
|
},
|
|
onShowNewChannel: (channelData) => {
|
|
dispatch(showNewChannel(channelData));
|
|
},
|
|
onShowExistingChannel: (error, name, shortId, longId, claimsData) => {
|
|
dispatch(updateShowChannel(error, name, shortId, longId, claimsData));
|
|
},
|
|
onShowChannelClear: () => {
|
|
dispatch(clearShowChannel());
|
|
},
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|