2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2022-03-23 19:24:16 +01:00
|
|
|
import {
|
|
|
|
selectClaimForUri,
|
|
|
|
selectTitleForUri,
|
|
|
|
makeSelectClaimWasPurchased,
|
|
|
|
selectGeoRestrictionForUri,
|
|
|
|
} from 'redux/selectors/claims';
|
2022-02-23 22:13:22 +01:00
|
|
|
import { makeSelectStreamingUrlForUri } from 'redux/selectors/file_info';
|
2021-03-19 16:04:12 +01:00
|
|
|
import {
|
2021-09-10 19:27:21 +02:00
|
|
|
makeSelectNextUrlForCollectionAndUrl,
|
|
|
|
makeSelectPreviousUrlForCollectionAndUrl,
|
2021-10-17 10:36:14 +02:00
|
|
|
} from 'redux/selectors/collections';
|
|
|
|
import * as SETTINGS from 'constants/settings';
|
2020-01-06 21:57:49 +01:00
|
|
|
import {
|
2020-04-14 01:48:11 +02:00
|
|
|
makeSelectIsPlayerFloating,
|
2020-10-20 19:10:02 +02:00
|
|
|
selectPrimaryUri,
|
2020-01-06 21:57:49 +01:00
|
|
|
selectPlayingUri,
|
2020-04-01 20:43:50 +02:00
|
|
|
makeSelectFileRenderModeForUri,
|
2020-01-06 21:57:49 +01:00
|
|
|
} from 'redux/selectors/content';
|
2021-11-23 05:29:04 +01:00
|
|
|
import { selectClientSetting } from 'redux/selectors/settings';
|
2021-11-19 03:40:01 +01:00
|
|
|
import { selectCostInfoForUri } from 'lbryinc';
|
2022-02-23 22:13:22 +01:00
|
|
|
import { doUriInitiatePlay, doSetPlayingUri } from 'redux/actions/content';
|
2021-03-19 16:04:12 +01:00
|
|
|
import { doFetchRecommendedContent } from 'redux/actions/search';
|
2019-08-13 07:35:13 +02:00
|
|
|
import { withRouter } from 'react-router';
|
2022-04-04 14:13:15 +02:00
|
|
|
import { selectAppDrawerOpen } from 'redux/selectors/app';
|
2022-03-15 17:28:55 +01:00
|
|
|
import { selectIsActiveLivestreamForUri, selectCommentSocketConnected } from 'redux/selectors/livestream';
|
|
|
|
import { doCommentSocketConnect, doCommentSocketDisconnect } from 'redux/actions/websocket';
|
2022-04-04 14:13:15 +02:00
|
|
|
import { isStreamPlaceholderClaim, getVideoClaimAspectRatio } from 'util/claim';
|
2020-04-01 20:43:50 +02:00
|
|
|
import FileRenderFloating from './view';
|
2017-05-15 05:50:59 +02:00
|
|
|
|
2019-08-13 07:35:13 +02:00
|
|
|
const select = (state, props) => {
|
2022-02-23 22:13:22 +01:00
|
|
|
const { location } = props;
|
|
|
|
|
2020-04-29 22:50:06 +02:00
|
|
|
const playingUri = selectPlayingUri(state);
|
2022-02-23 22:13:22 +01:00
|
|
|
const { uri, collectionId } = playingUri || {};
|
|
|
|
|
2022-03-15 17:28:55 +01:00
|
|
|
const claim = uri && selectClaimForUri(state, uri);
|
|
|
|
const { claim_id: claimId, signing_channel: channelClaim } = claim || {};
|
2022-03-16 12:35:58 +01:00
|
|
|
const { canonical_url: channelUrl } = channelClaim || {};
|
2022-03-15 17:28:55 +01:00
|
|
|
|
2019-08-13 07:35:13 +02:00
|
|
|
return {
|
2022-03-15 17:28:55 +01:00
|
|
|
claimId,
|
2022-03-16 12:35:58 +01:00
|
|
|
channelUrl,
|
2019-08-13 07:35:13 +02:00
|
|
|
uri,
|
2020-10-20 19:10:02 +02:00
|
|
|
playingUri,
|
2022-02-23 22:13:22 +01:00
|
|
|
primaryUri: selectPrimaryUri(state),
|
2021-11-16 05:23:18 +01:00
|
|
|
title: selectTitleForUri(state, uri),
|
2022-02-23 22:13:22 +01:00
|
|
|
isFloating: makeSelectIsPlayerFloating(location)(state),
|
2020-05-21 17:38:28 +02:00
|
|
|
streamingUrl: makeSelectStreamingUrlForUri(uri)(state),
|
2021-11-23 05:29:04 +01:00
|
|
|
floatingPlayerEnabled: selectClientSetting(state, SETTINGS.FLOATING_PLAYER),
|
2020-04-01 20:43:50 +02:00
|
|
|
renderMode: makeSelectFileRenderModeForUri(uri)(state),
|
2021-11-23 05:29:04 +01:00
|
|
|
videoTheaterMode: selectClientSetting(state, SETTINGS.VIDEO_THEATER_MODE),
|
2021-11-19 03:40:01 +01:00
|
|
|
costInfo: selectCostInfoForUri(state, uri),
|
2021-09-10 19:27:21 +02:00
|
|
|
claimWasPurchased: makeSelectClaimWasPurchased(uri)(state),
|
|
|
|
nextListUri: collectionId && makeSelectNextUrlForCollectionAndUrl(collectionId, uri)(state),
|
|
|
|
previousListUri: collectionId && makeSelectPreviousUrlForCollectionAndUrl(collectionId, uri)(state),
|
2021-09-02 22:05:32 +02:00
|
|
|
collectionId,
|
2022-02-23 22:13:22 +01:00
|
|
|
isCurrentClaimLive: selectIsActiveLivestreamForUri(state, uri),
|
2022-04-04 14:13:15 +02:00
|
|
|
videoAspectRatio: getVideoClaimAspectRatio(claim),
|
2022-03-15 17:28:55 +01:00
|
|
|
socketConnected: selectCommentSocketConnected(state),
|
2022-03-15 17:48:57 +01:00
|
|
|
isLivestreamClaim: isStreamPlaceholderClaim(claim),
|
2022-03-23 19:24:16 +01:00
|
|
|
geoRestriction: selectGeoRestrictionForUri(state, uri),
|
2022-04-04 14:13:15 +02:00
|
|
|
appDrawerOpen: selectAppDrawerOpen(state),
|
2019-08-13 07:35:13 +02:00
|
|
|
};
|
|
|
|
};
|
2017-04-23 11:56:50 +02:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
const perform = {
|
|
|
|
doFetchRecommendedContent,
|
|
|
|
doUriInitiatePlay,
|
|
|
|
doSetPlayingUri,
|
2022-03-15 17:28:55 +01:00
|
|
|
doCommentSocketConnect,
|
|
|
|
doCommentSocketDisconnect,
|
2022-02-23 22:13:22 +01:00
|
|
|
};
|
2017-04-23 11:56:50 +02:00
|
|
|
|
2020-04-01 20:43:50 +02:00
|
|
|
export default withRouter(connect(select, perform)(FileRenderFloating));
|