25 lines
842 B
JavaScript
25 lines
842 B
JavaScript
import * as SETTINGS from 'constants/settings';
|
|
import { connect } from 'react-redux';
|
|
import { makeSelectClaimForUri } from 'lbry-redux';
|
|
import { makeSelectNextUnplayedRecommended } from 'redux/selectors/content';
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
|
import { doSetPlayingUri } from 'redux/actions/content';
|
|
import RecommendedVideos from './view';
|
|
|
|
const select = (state, props) => {
|
|
const nextRecommendedUri = makeSelectNextUnplayedRecommended(props.uri)(state);
|
|
return {
|
|
nextRecommendedUri,
|
|
nextRecommendedClaim: makeSelectClaimForUri(nextRecommendedUri)(state),
|
|
autoplay: makeSelectClientSetting(SETTINGS.AUTOPLAY)(state),
|
|
};
|
|
};
|
|
|
|
const perform = dispatch => ({
|
|
setPlayingUri: uri => dispatch(doSetPlayingUri(uri)),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(RecommendedVideos);
|