2020-01-30 22:01:23 +01:00
|
|
|
import * as PAGES from 'constants/pages';
|
|
|
|
import { connect } from 'react-redux';
|
2021-11-16 04:52:35 +01:00
|
|
|
import { selectClaimForUri, makeSelectClaimIsPending, isStreamPlaceholderClaim } from 'redux/selectors/claims';
|
2021-10-17 10:36:14 +02:00
|
|
|
import { doClearPublish, doPrepareEdit } from 'redux/actions/publish';
|
2020-01-30 22:01:23 +01:00
|
|
|
import { push } from 'connected-react-router';
|
2020-01-30 23:25:15 +01:00
|
|
|
import ClaimPreviewSubtitle from './view';
|
2021-11-15 15:08:23 +01:00
|
|
|
import { doFetchSubCount, selectSubCountForUri } from 'lbryinc';
|
2021-12-16 22:59:13 +01:00
|
|
|
import { selectIsActiveLivestreamForUri } from 'redux/selectors/livestream';
|
2020-01-30 22:01:23 +01:00
|
|
|
|
2021-10-28 05:39:30 +02:00
|
|
|
const select = (state, props) => {
|
|
|
|
const claim = selectClaimForUri(state, props.uri);
|
|
|
|
const isChannel = claim && claim.value_type === 'channel';
|
2021-12-16 22:59:13 +01:00
|
|
|
const isLivestream = isStreamPlaceholderClaim(claim);
|
2021-10-28 05:39:30 +02:00
|
|
|
return {
|
|
|
|
claim,
|
|
|
|
pending: makeSelectClaimIsPending(props.uri)(state),
|
2021-12-16 22:59:13 +01:00
|
|
|
isLivestream,
|
2021-11-15 15:08:23 +01:00
|
|
|
subCount: isChannel ? selectSubCountForUri(state, props.uri) : 0,
|
2021-12-16 22:59:13 +01:00
|
|
|
isLivestreamActive: isLivestream && selectIsActiveLivestreamForUri(state, props.uri),
|
2021-10-28 05:39:30 +02:00
|
|
|
};
|
|
|
|
};
|
2020-01-30 22:01:23 +01:00
|
|
|
|
2021-03-17 21:53:35 +01:00
|
|
|
const perform = (dispatch) => ({
|
|
|
|
beginPublish: (name) => {
|
2020-01-30 22:01:23 +01:00
|
|
|
dispatch(doClearPublish());
|
|
|
|
dispatch(doPrepareEdit({ name }));
|
2020-07-23 19:02:07 +02:00
|
|
|
dispatch(push(`/$/${PAGES.UPLOAD}`));
|
2020-01-30 22:01:23 +01:00
|
|
|
},
|
2021-10-16 20:12:09 +02:00
|
|
|
fetchSubCount: (claimId) => dispatch(doFetchSubCount(claimId)),
|
2020-01-30 22:01:23 +01:00
|
|
|
});
|
|
|
|
|
2020-07-23 19:02:07 +02:00
|
|
|
export default connect(select, perform)(ClaimPreviewSubtitle);
|