2019-08-02 08:28:14 +02:00
|
|
|
import { connect } from 'react-redux';
|
2020-07-10 23:04:36 +02:00
|
|
|
import { makeSelectClaimForUri, makeSelectFileInfoForUri, makeSelectThumbnailForUri, SETTINGS } from 'lbry-redux';
|
2020-08-07 22:59:20 +02:00
|
|
|
import { doChangeVolume, doChangeMute, doAnalyticsView, doAnalyticsBuffer } from 'redux/actions/app';
|
2019-08-02 08:28:14 +02:00
|
|
|
import { selectVolume, selectMute } from 'redux/selectors/app';
|
2020-05-15 03:18:54 +02:00
|
|
|
import { savePosition, clearPosition } from 'redux/actions/content';
|
2020-04-30 09:49:52 +02:00
|
|
|
import { makeSelectContentPositionForUri } from 'redux/selectors/content';
|
2019-08-02 08:28:14 +02:00
|
|
|
import VideoViewer from './view';
|
2020-02-04 22:14:08 +01:00
|
|
|
import { withRouter } from 'react-router';
|
2020-06-15 22:33:03 +02:00
|
|
|
import { doClaimEligiblePurchaseRewards } from 'redux/actions/rewards';
|
2021-04-12 18:43:47 +02:00
|
|
|
import { makeSelectClientSetting, selectHomepageData } from 'redux/selectors/settings';
|
2021-01-14 14:16:04 +01:00
|
|
|
import { toggleVideoTheaterMode, doSetClientSetting } from 'redux/actions/settings';
|
2021-04-12 18:43:47 +02:00
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2019-08-02 08:28:14 +02:00
|
|
|
|
2020-02-04 22:14:08 +01:00
|
|
|
const select = (state, props) => {
|
|
|
|
const { search } = props.location;
|
|
|
|
const urlParams = new URLSearchParams(search);
|
|
|
|
const autoplay = urlParams.get('autoplay');
|
2020-04-30 09:49:52 +02:00
|
|
|
const position = urlParams.get('t') !== null ? urlParams.get('t') : makeSelectContentPositionForUri(props.uri)(state);
|
2020-03-19 21:25:37 +01:00
|
|
|
|
2020-02-04 22:14:08 +01:00
|
|
|
return {
|
2020-04-14 01:48:11 +02:00
|
|
|
autoplayIfEmbedded: Boolean(autoplay),
|
|
|
|
autoplaySetting: Boolean(makeSelectClientSetting(SETTINGS.AUTOPLAY)(state)),
|
2020-02-04 22:14:08 +01:00
|
|
|
volume: selectVolume(state),
|
|
|
|
muted: selectMute(state),
|
2021-01-14 14:16:04 +01:00
|
|
|
videoPlaybackRate: makeSelectClientSetting(SETTINGS.VIDEO_PLAYBACK_RATE)(state),
|
2020-03-19 21:25:37 +01:00
|
|
|
position: position,
|
2020-02-04 22:14:08 +01:00
|
|
|
hasFileInfo: Boolean(makeSelectFileInfoForUri(props.uri)(state)),
|
|
|
|
thumbnail: makeSelectThumbnailForUri(props.uri)(state),
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
2021-04-12 18:43:47 +02:00
|
|
|
homepageData: selectHomepageData(state),
|
|
|
|
authenticated: selectUserVerifiedEmail(state),
|
2020-02-04 22:14:08 +01:00
|
|
|
};
|
|
|
|
};
|
2019-08-02 08:28:14 +02:00
|
|
|
|
2021-04-12 18:43:47 +02:00
|
|
|
const perform = (dispatch) => ({
|
|
|
|
changeVolume: (volume) => dispatch(doChangeVolume(volume)),
|
2019-08-13 07:35:13 +02:00
|
|
|
savePosition: (uri, position) => dispatch(savePosition(uri, position)),
|
2021-04-12 18:43:47 +02:00
|
|
|
clearPosition: (uri) => dispatch(clearPosition(uri)),
|
|
|
|
changeMute: (muted) => dispatch(doChangeMute(muted)),
|
2020-04-14 01:48:11 +02:00
|
|
|
doAnalyticsView: (uri, timeToStart) => dispatch(doAnalyticsView(uri, timeToStart)),
|
2020-08-07 22:59:20 +02:00
|
|
|
doAnalyticsBuffer: (uri, bufferData) => dispatch(doAnalyticsBuffer(uri, bufferData)),
|
2020-04-14 01:48:11 +02:00
|
|
|
claimRewards: () => dispatch(doClaimEligiblePurchaseRewards()),
|
2021-01-08 16:21:27 +01:00
|
|
|
toggleVideoTheaterMode: () => dispatch(toggleVideoTheaterMode()),
|
2021-04-12 18:43:47 +02:00
|
|
|
setVideoPlaybackRate: (rate) => dispatch(doSetClientSetting(SETTINGS.VIDEO_PLAYBACK_RATE, rate)),
|
2019-08-02 08:28:14 +02:00
|
|
|
});
|
|
|
|
|
2020-03-19 21:25:37 +01:00
|
|
|
export default withRouter(connect(select, perform)(VideoViewer));
|