038692cafc
Add livestream scheduling feature Also supports back to back streams, and will notify on a non-active stream of an active one.
20 lines
710 B
JavaScript
20 lines
710 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectClaimIdForUri } from 'redux/selectors/claims';
|
|
import { selectViewersForId } from 'redux/selectors/livestream';
|
|
import { doFetchViewCount, selectViewCountForUri } from 'lbryinc';
|
|
import FileViewCount from './view';
|
|
|
|
const select = (state, props) => {
|
|
const claimId = selectClaimIdForUri(state, props.uri);
|
|
return {
|
|
claimId,
|
|
viewCount: selectViewCountForUri(state, props.uri),
|
|
activeViewers: props.livestream && claimId ? selectViewersForId(state, claimId) : undefined,
|
|
};
|
|
};
|
|
|
|
const perform = (dispatch) => ({
|
|
fetchViewCount: (claimId) => dispatch(doFetchViewCount(claimId)),
|
|
});
|
|
|
|
export default connect(select, perform)(FileViewCount);
|