35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import {
|
||
|
makeSelectFileInfoForUri,
|
||
|
makeSelectStreamingUrlForUri,
|
||
|
makeSelectMediaTypeForUri,
|
||
|
makeSelectContentTypeForUri,
|
||
|
makeSelectUriIsStreamable,
|
||
|
} from 'lbry-redux';
|
||
|
import { doClaimEligiblePurchaseRewards } from 'lbryinc';
|
||
|
import { makeSelectIsPlaying } from 'redux/selectors/content';
|
||
|
import { withRouter } from 'react-router';
|
||
|
import { doAnalyticsView } from 'redux/actions/app';
|
||
|
import FileViewer from './view';
|
||
|
|
||
|
const select = (state, props) => ({
|
||
|
mediaType: makeSelectMediaTypeForUri(props.uri)(state),
|
||
|
contentType: makeSelectContentTypeForUri(props.uri)(state),
|
||
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
||
|
isPlaying: makeSelectIsPlaying(props.uri)(state),
|
||
|
streamingUrl: makeSelectStreamingUrlForUri(props.uri)(state),
|
||
|
isStreamable: makeSelectUriIsStreamable(props.uri)(state),
|
||
|
});
|
||
|
|
||
|
const perform = dispatch => ({
|
||
|
triggerAnalyticsView: (uri, timeToStart) => dispatch(doAnalyticsView(uri, timeToStart)),
|
||
|
claimRewards: () => dispatch(doClaimEligiblePurchaseRewards()),
|
||
|
});
|
||
|
|
||
|
export default withRouter(
|
||
|
connect(
|
||
|
select,
|
||
|
perform
|
||
|
)(FileViewer)
|
||
|
);
|