64cbd4ae8d
* Dont show countdown on Lists * Add Repeat icon * Add Shuffle icon * Add Replay Icon * Add Replay Option to autoplayCountdown * Add Loop Control for Lists * Add Shuffle control for Lists * Improve View List Link and Fetch action * Add Play Button to List page * Add Shuffle Play Option on List Page and Menus * Fix Modal Remove Collection I18n * CSS: Fix Large list titles * Fix List playback on Floating Player * Add Theater Mode to its own class and fix bar text display * Add Play Next VJS component * Add Play Next Button * Add Play Previous VJS Component * Add Play Previous Button * Add Autoplay Next Button * Add separate control for autoplay next in list * Bump redux * Update CHANGELOG.md
16 lines
620 B
JavaScript
16 lines
620 B
JavaScript
import { connect } from 'react-redux';
|
|
import { makeSelectClaimForUri } from 'lbry-redux';
|
|
import { withRouter } from 'react-router';
|
|
import AutoplayCountdown from './view';
|
|
import { selectModal } from 'redux/selectors/app';
|
|
|
|
/*
|
|
AutoplayCountdown does not fetch it's own next content to play, it relies on <RecommendedContent> being rendered.
|
|
This is dumb but I'm just the guy who noticed -kj
|
|
*/
|
|
const select = (state, props) => ({
|
|
nextRecommendedClaim: makeSelectClaimForUri(props.nextRecommendedUri)(state),
|
|
modal: selectModal(state),
|
|
});
|
|
|
|
export default withRouter(connect(select, null)(AutoplayCountdown));
|