2020-04-01 20:43:50 +02:00
|
|
|
import { connect } from 'react-redux';
|
2020-05-21 17:38:28 +02:00
|
|
|
import { makeSelectFileInfoForUri, makeSelectStreamingUrlForUri } from 'lbry-redux';
|
2020-06-15 22:33:03 +02:00
|
|
|
import { doClaimEligiblePurchaseRewards } from 'redux/actions/rewards';
|
2020-10-20 19:10:02 +02:00
|
|
|
import { makeSelectFileRenderModeForUri, selectPrimaryUri } from 'redux/selectors/content';
|
2020-04-01 20:43:50 +02:00
|
|
|
import { withRouter } from 'react-router';
|
|
|
|
import { doAnalyticsView } from 'redux/actions/app';
|
|
|
|
import FileRenderInline from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
2020-10-20 19:10:02 +02:00
|
|
|
isPlaying: selectPrimaryUri(state) === props.uri,
|
2020-05-21 17:38:28 +02:00
|
|
|
streamingUrl: makeSelectStreamingUrlForUri(props.uri)(state),
|
2020-04-01 20:43:50 +02:00
|
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
|
|
|
triggerAnalyticsView: (uri, timeToStart) => dispatch(doAnalyticsView(uri, timeToStart)),
|
|
|
|
claimRewards: () => dispatch(doClaimEligiblePurchaseRewards()),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default withRouter(connect(select, perform)(FileRenderInline));
|