ae2354a0e0
This reverts commit a6c413da5c
.
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { selectMyChannelClaims, selectFetchingMyChannels, doClearPublish } from 'lbry-redux';
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
import { doFetchNoSourceClaims } from 'redux/actions/livestream';
|
|
import {
|
|
makeSelectPendingLivestreamsForChannelId,
|
|
makeSelectLivestreamsForChannelId,
|
|
makeSelectIsFetchingLivestreams,
|
|
} from 'redux/selectors/livestream';
|
|
import LivestreamSetupPage from './view';
|
|
import { push } from 'connected-react-router';
|
|
|
|
const select = (state) => {
|
|
const activeChannelClaim = selectActiveChannelClaim(state);
|
|
const { claim_id: channelId, name: channelName } = activeChannelClaim || {};
|
|
return {
|
|
channelName,
|
|
channelId,
|
|
channels: selectMyChannelClaims(state),
|
|
fetchingChannels: selectFetchingMyChannels(state),
|
|
activeChannelClaim,
|
|
myLivestreamClaims: makeSelectLivestreamsForChannelId(channelId)(state),
|
|
pendingClaims: makeSelectPendingLivestreamsForChannelId(channelId)(state),
|
|
fetchingLivestreams: makeSelectIsFetchingLivestreams(channelId)(state),
|
|
};
|
|
};
|
|
const perform = (dispatch) => ({
|
|
doNewLivestream: (path) => {
|
|
dispatch(doClearPublish());
|
|
dispatch(push(path));
|
|
},
|
|
fetchNoSourceClaims: (id) => dispatch(doFetchNoSourceClaims(id)),
|
|
});
|
|
export default connect(select, perform)(LivestreamSetupPage);
|