2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
2022-04-04 14:13:15 +02:00
|
|
|
|
|
|
|
// $FlowFixMe
|
|
|
|
import { Global } from '@emotion/react';
|
|
|
|
|
|
|
|
import type { ElementRef } from 'react';
|
2019-08-13 07:35:13 +02:00
|
|
|
import * as ICONS from 'constants/icons';
|
2020-04-01 20:43:50 +02:00
|
|
|
import * as RENDER_MODES from 'constants/file_render_modes';
|
2022-02-23 22:13:22 +01:00
|
|
|
import React from 'react';
|
2019-08-13 07:35:13 +02:00
|
|
|
import Button from 'component/button';
|
2018-03-26 23:32:43 +02:00
|
|
|
import classnames from 'classnames';
|
2018-07-05 04:49:12 +02:00
|
|
|
import LoadingScreen from 'component/common/loading-screen';
|
2021-07-06 11:02:05 +02:00
|
|
|
import FileRender from 'component/fileRender';
|
2019-08-13 07:35:13 +02:00
|
|
|
import UriIndicator from 'component/uriIndicator';
|
2019-09-27 20:56:15 +02:00
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2020-10-20 19:10:02 +02:00
|
|
|
import { PRIMARY_PLAYER_WRAPPER_CLASS } from 'page/file/view';
|
2021-07-06 11:02:05 +02:00
|
|
|
import Draggable from 'react-draggable';
|
2019-10-14 00:28:12 +02:00
|
|
|
import { onFullscreenChange } from 'util/full-screen';
|
2022-03-15 17:28:55 +01:00
|
|
|
import { generateListSearchUrlParams, formatLbryChannelName } from 'util/url';
|
2022-04-06 23:01:26 +02:00
|
|
|
import { useIsMobile, useIsMobileLandscape, useIsLandscapeScreen } from 'effects/use-screensize';
|
2020-09-10 13:52:42 +02:00
|
|
|
import debounce from 'util/debounce';
|
2020-10-20 19:10:02 +02:00
|
|
|
import { useHistory } from 'react-router';
|
2021-10-17 10:36:14 +02:00
|
|
|
import { isURIEqual } from 'util/lbryURI';
|
2021-09-10 19:27:21 +02:00
|
|
|
import AutoplayCountdown from 'component/autoplayCountdown';
|
2022-02-23 22:13:22 +01:00
|
|
|
import usePlayNext from 'effects/use-play-next';
|
2022-04-04 14:13:15 +02:00
|
|
|
import {
|
|
|
|
getRootEl,
|
|
|
|
getScreenWidth,
|
|
|
|
getScreenHeight,
|
|
|
|
clampFloatingPlayerToScreen,
|
|
|
|
calculateRelativePos,
|
|
|
|
getMaxLandscapeHeight,
|
|
|
|
getAmountNeededToCenterVideo,
|
|
|
|
getPossiblePlayerHeight,
|
|
|
|
} from './helper-functions';
|
2020-09-10 13:52:42 +02:00
|
|
|
|
2021-12-20 13:40:24 +01:00
|
|
|
// scss/init/vars.scss
|
|
|
|
// --header-height
|
2022-02-11 19:50:55 +01:00
|
|
|
const HEADER_HEIGHT = 60;
|
2022-02-23 22:13:22 +01:00
|
|
|
// --header-height-mobile
|
|
|
|
export const HEADER_HEIGHT_MOBILE = 56;
|
2021-12-20 13:40:24 +01:00
|
|
|
|
2021-11-15 22:13:48 +01:00
|
|
|
const DEBOUNCE_WINDOW_RESIZE_HANDLER_MS = 100;
|
2022-04-04 14:13:15 +02:00
|
|
|
|
2021-07-06 11:02:05 +02:00
|
|
|
export const INLINE_PLAYER_WRAPPER_CLASS = 'inline-player__wrapper';
|
2022-04-04 14:13:15 +02:00
|
|
|
export const CONTENT_VIEWER_CLASS = 'content__viewer';
|
2022-02-23 22:13:22 +01:00
|
|
|
export const FLOATING_PLAYER_CLASS = 'content__viewer--floating';
|
2021-11-15 22:13:48 +01:00
|
|
|
|
|
|
|
// ****************************************************************************
|
|
|
|
// ****************************************************************************
|
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
type Props = {
|
2022-03-15 17:28:55 +01:00
|
|
|
claimId: ?string,
|
2022-03-16 12:35:58 +01:00
|
|
|
channelUrl: ?string,
|
2020-04-14 01:48:11 +02:00
|
|
|
isFloating: boolean,
|
2018-03-26 23:32:43 +02:00
|
|
|
uri: string,
|
2019-08-02 08:28:14 +02:00
|
|
|
streamingUrl?: string,
|
2019-08-13 07:35:13 +02:00
|
|
|
title: ?string,
|
|
|
|
floatingPlayerEnabled: boolean,
|
2020-04-01 20:43:50 +02:00
|
|
|
renderMode: string,
|
2022-03-15 17:28:55 +01:00
|
|
|
playingUri: PlayingUri,
|
2020-10-20 19:10:02 +02:00
|
|
|
primaryUri: ?string,
|
2021-01-08 16:21:27 +01:00
|
|
|
videoTheaterMode: boolean,
|
2021-09-02 22:05:32 +02:00
|
|
|
collectionId: string,
|
2021-09-10 19:27:21 +02:00
|
|
|
costInfo: any,
|
|
|
|
claimWasPurchased: boolean,
|
|
|
|
nextListUri: string,
|
|
|
|
previousListUri: string,
|
2022-02-23 22:13:22 +01:00
|
|
|
doFetchRecommendedContent: (uri: string) => void,
|
2022-03-15 17:28:55 +01:00
|
|
|
doUriInitiatePlay: (playingOptions: PlayingUri, isPlayable: ?boolean, isFloating: ?boolean) => void,
|
2022-02-23 22:13:22 +01:00
|
|
|
doSetPlayingUri: ({ uri?: ?string }) => void,
|
|
|
|
isCurrentClaimLive?: boolean,
|
2022-04-04 14:13:15 +02:00
|
|
|
videoAspectRatio: number,
|
2022-04-29 15:54:14 +02:00
|
|
|
socketConnection: { connected: ?boolean },
|
2022-03-15 17:48:57 +01:00
|
|
|
isLivestreamClaim: boolean,
|
2022-03-23 19:24:16 +01:00
|
|
|
geoRestriction: ?GeoRestriction,
|
2022-04-04 14:13:15 +02:00
|
|
|
appDrawerOpen: boolean,
|
2022-03-15 17:28:55 +01:00
|
|
|
doCommentSocketConnect: (string, string, string) => void,
|
|
|
|
doCommentSocketDisconnect: (string, string) => void,
|
2022-04-29 15:54:14 +02:00
|
|
|
doClearPlayingUri: () => void,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
2017-04-23 11:56:50 +02:00
|
|
|
|
2020-04-14 01:48:11 +02:00
|
|
|
export default function FileRenderFloating(props: Props) {
|
2020-04-29 22:50:06 +02:00
|
|
|
const {
|
2022-03-15 17:28:55 +01:00
|
|
|
claimId,
|
2022-03-16 12:35:58 +01:00
|
|
|
channelUrl,
|
2020-04-29 22:50:06 +02:00
|
|
|
uri,
|
|
|
|
streamingUrl,
|
|
|
|
title,
|
|
|
|
isFloating,
|
|
|
|
floatingPlayerEnabled,
|
|
|
|
renderMode,
|
2020-10-20 19:10:02 +02:00
|
|
|
playingUri,
|
|
|
|
primaryUri,
|
2021-01-08 16:21:27 +01:00
|
|
|
videoTheaterMode,
|
2021-09-02 22:05:32 +02:00
|
|
|
collectionId,
|
2021-09-10 19:27:21 +02:00
|
|
|
costInfo,
|
|
|
|
claimWasPurchased,
|
|
|
|
nextListUri,
|
|
|
|
previousListUri,
|
2022-04-29 15:54:14 +02:00
|
|
|
socketConnection,
|
2022-03-15 17:48:57 +01:00
|
|
|
isLivestreamClaim,
|
2022-02-23 22:13:22 +01:00
|
|
|
doFetchRecommendedContent,
|
|
|
|
doUriInitiatePlay,
|
|
|
|
doSetPlayingUri,
|
|
|
|
isCurrentClaimLive,
|
2022-04-04 14:13:15 +02:00
|
|
|
videoAspectRatio,
|
2022-03-23 19:24:16 +01:00
|
|
|
geoRestriction,
|
2022-04-04 14:13:15 +02:00
|
|
|
appDrawerOpen,
|
2022-03-15 17:28:55 +01:00
|
|
|
doCommentSocketConnect,
|
|
|
|
doCommentSocketDisconnect,
|
2022-04-29 15:54:14 +02:00
|
|
|
doClearPlayingUri,
|
2020-04-29 22:50:06 +02:00
|
|
|
} = props;
|
2022-02-23 22:13:22 +01:00
|
|
|
|
2019-12-18 06:27:08 +01:00
|
|
|
const isMobile = useIsMobile();
|
2022-04-06 23:01:26 +02:00
|
|
|
const isTabletLandscape = useIsLandscapeScreen() && !isMobile;
|
2022-04-06 14:01:29 +02:00
|
|
|
const isLandscapeRotated = useIsMobileLandscape();
|
2021-09-24 17:53:17 +02:00
|
|
|
|
2022-04-05 14:59:06 +02:00
|
|
|
const initialMobileState = React.useRef(isMobile);
|
2022-04-04 14:13:15 +02:00
|
|
|
const initialPlayerHeight = React.useRef();
|
|
|
|
const resizedBetweenFloating = React.useRef();
|
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
const {
|
|
|
|
location: { state },
|
|
|
|
} = useHistory();
|
|
|
|
const hideFloatingPlayer = state && state.hideFloatingPlayer;
|
|
|
|
|
2022-03-15 17:28:55 +01:00
|
|
|
const { uri: playingUrl, source: playingUriSource, primaryUri: playingPrimaryUri } = playingUri;
|
2022-04-04 14:13:15 +02:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
const isComment = playingUriSource === 'comment';
|
2022-04-04 14:13:15 +02:00
|
|
|
const mainFilePlaying = Boolean(!isFloating && primaryUri && isURIEqual(uri, primaryUri));
|
2022-03-15 19:03:47 +01:00
|
|
|
const noFloatingPlayer = !isFloating || !floatingPlayerEnabled || hideFloatingPlayer;
|
2022-02-23 22:13:22 +01:00
|
|
|
|
|
|
|
const [fileViewerRect, setFileViewerRect] = React.useState();
|
|
|
|
const [wasDragging, setWasDragging] = React.useState(false);
|
|
|
|
const [doNavigate, setDoNavigate] = React.useState(false);
|
|
|
|
const [shouldPlayNext, setPlayNext] = React.useState(true);
|
|
|
|
const [countdownCanceled, setCountdownCanceled] = React.useState(false);
|
2019-08-13 07:35:13 +02:00
|
|
|
const [position, setPosition] = usePersistedState('floating-file-viewer:position', {
|
|
|
|
x: -25,
|
|
|
|
y: window.innerHeight - 400,
|
|
|
|
});
|
2021-11-15 22:13:48 +01:00
|
|
|
const relativePosRef = React.useRef({ x: 0, y: 0 });
|
2022-04-26 21:53:59 +02:00
|
|
|
const noPlayerHeight = fileViewerRect?.height === 0;
|
2020-04-14 01:48:11 +02:00
|
|
|
|
2021-09-13 17:24:35 +02:00
|
|
|
const navigateUrl =
|
2022-03-15 17:28:55 +01:00
|
|
|
(playingPrimaryUri || playingUrl || '') + (collectionId ? generateListSearchUrlParams(collectionId) : '');
|
2021-09-02 22:05:32 +02:00
|
|
|
|
2021-09-10 19:27:21 +02:00
|
|
|
const isFree = costInfo && costInfo.cost === 0;
|
|
|
|
const canViewFile = isFree || claimWasPurchased;
|
2022-02-23 22:13:22 +01:00
|
|
|
const isPlayable = RENDER_MODES.FLOATING_MODES.includes(renderMode) || isCurrentClaimLive;
|
2022-03-15 17:18:08 +01:00
|
|
|
const isReadyToPlay = isCurrentClaimLive || (isPlayable && streamingUrl);
|
2020-09-10 13:52:42 +02:00
|
|
|
|
2022-04-21 09:31:58 +02:00
|
|
|
const theaterMode = renderMode === 'video' || renderMode === 'audio' ? videoTheaterMode : false;
|
2022-04-20 18:05:01 +02:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
// ****************************************************************************
|
|
|
|
// FUNCTIONS
|
|
|
|
// ****************************************************************************
|
2020-09-10 13:52:42 +02:00
|
|
|
|
2021-09-10 19:27:21 +02:00
|
|
|
const handleResize = React.useCallback(() => {
|
2020-10-20 19:10:02 +02:00
|
|
|
const element = mainFilePlaying
|
|
|
|
? document.querySelector(`.${PRIMARY_PLAYER_WRAPPER_CLASS}`)
|
|
|
|
: document.querySelector(`.${INLINE_PLAYER_WRAPPER_CLASS}`);
|
|
|
|
|
2021-09-13 17:24:35 +02:00
|
|
|
if (!element) return;
|
2020-10-20 19:10:02 +02:00
|
|
|
|
|
|
|
const rect = element.getBoundingClientRect();
|
|
|
|
|
2021-09-13 17:24:35 +02:00
|
|
|
// getBoundingClientRect returns a DomRect, not an object
|
2020-11-06 22:25:47 +01:00
|
|
|
const objectRect = {
|
|
|
|
top: rect.top,
|
|
|
|
right: rect.right,
|
|
|
|
bottom: rect.bottom,
|
|
|
|
left: rect.left,
|
|
|
|
width: rect.width,
|
|
|
|
height: rect.height,
|
2020-11-09 19:36:35 +01:00
|
|
|
// $FlowFixMe
|
|
|
|
x: rect.x,
|
2020-11-06 22:25:47 +01:00
|
|
|
};
|
|
|
|
|
2022-04-05 14:59:06 +02:00
|
|
|
// replace the initial value every time the window is resized if isMobile is true,
|
|
|
|
// since it could be a portrait -> landscape rotation switch, or if it was a mobile - desktop
|
|
|
|
// switch, so use the ref to compare the initial state
|
|
|
|
const resizedEnoughForMobileSwitch = isMobile !== initialMobileState.current;
|
|
|
|
if (videoAspectRatio && (!initialPlayerHeight.current || isMobile || resizedEnoughForMobileSwitch)) {
|
2022-04-04 14:13:15 +02:00
|
|
|
const heightForRect = getPossiblePlayerHeight(videoAspectRatio * rect.width, isMobile);
|
|
|
|
initialPlayerHeight.current = heightForRect;
|
|
|
|
}
|
|
|
|
|
2020-10-20 19:10:02 +02:00
|
|
|
// $FlowFixMe
|
2020-11-06 22:25:47 +01:00
|
|
|
setFileViewerRect({ ...objectRect, windowOffset: window.pageYOffset });
|
2022-04-04 14:13:15 +02:00
|
|
|
}, [isMobile, mainFilePlaying, videoAspectRatio]);
|
2022-02-23 22:13:22 +01:00
|
|
|
|
|
|
|
const restoreToRelativePosition = React.useCallback(() => {
|
|
|
|
const SCROLL_BAR_PX = 12; // root: --body-scrollbar-width
|
|
|
|
const screenW = getScreenWidth() - SCROLL_BAR_PX;
|
|
|
|
const screenH = getScreenHeight();
|
|
|
|
|
|
|
|
const newX = Math.round(relativePosRef.current.x * screenW);
|
|
|
|
const newY = Math.round(relativePosRef.current.y * screenH);
|
|
|
|
|
|
|
|
setPosition(clampFloatingPlayerToScreen(newX, newY));
|
|
|
|
}, [setPosition]);
|
|
|
|
|
|
|
|
const clampToScreenOnResize = React.useCallback(
|
|
|
|
debounce(restoreToRelativePosition, DEBOUNCE_WINDOW_RESIZE_HANDLER_MS),
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
|
|
|
|
// For playlists when pressing next/previous etc and switching players
|
|
|
|
function resetState() {
|
|
|
|
setCountdownCanceled(false);
|
|
|
|
setDoNavigate(false);
|
|
|
|
setPlayNext(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ****************************************************************************
|
|
|
|
// EFFECTS
|
|
|
|
// ****************************************************************************
|
|
|
|
|
|
|
|
usePlayNext(
|
|
|
|
isFloating,
|
|
|
|
collectionId,
|
|
|
|
shouldPlayNext,
|
|
|
|
nextListUri,
|
|
|
|
previousListUri,
|
|
|
|
doNavigate,
|
|
|
|
doUriInitiatePlay,
|
|
|
|
resetState
|
|
|
|
);
|
|
|
|
|
2022-03-15 17:28:55 +01:00
|
|
|
// Establish web socket connection for viewer count.
|
2022-02-23 22:13:22 +01:00
|
|
|
React.useEffect(() => {
|
2022-03-16 12:35:58 +01:00
|
|
|
if (!claimId || !channelUrl || !isCurrentClaimLive) return;
|
2022-03-15 17:28:55 +01:00
|
|
|
|
2022-03-16 12:35:58 +01:00
|
|
|
const channelName = formatLbryChannelName(channelUrl);
|
2022-03-15 17:28:55 +01:00
|
|
|
|
2022-03-16 12:35:58 +01:00
|
|
|
// Only connect if not yet connected, so for example clicked on an embed instead of accessing
|
|
|
|
// from the Livestream page
|
2022-04-29 15:54:14 +02:00
|
|
|
if (!socketConnection?.connected) {
|
|
|
|
doCommentSocketConnect(uri, channelName, claimId);
|
|
|
|
}
|
2022-03-15 17:28:55 +01:00
|
|
|
|
2022-03-16 12:35:58 +01:00
|
|
|
// This will be used to disconnect for every case, since this is the main player component
|
2022-04-29 15:54:14 +02:00
|
|
|
return () => {
|
|
|
|
if (socketConnection?.connected) {
|
|
|
|
doCommentSocketDisconnect(claimId, channelName);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}, [
|
|
|
|
channelUrl,
|
|
|
|
claimId,
|
|
|
|
doCommentSocketConnect,
|
|
|
|
doCommentSocketDisconnect,
|
|
|
|
isCurrentClaimLive,
|
|
|
|
socketConnection,
|
|
|
|
uri,
|
|
|
|
]);
|
2022-03-15 17:28:55 +01:00
|
|
|
|
|
|
|
React.useEffect(() => {
|
2022-04-26 21:53:59 +02:00
|
|
|
if (playingPrimaryUri || playingUrl || noPlayerHeight) {
|
2020-10-20 19:10:02 +02:00
|
|
|
handleResize();
|
2019-08-13 07:35:13 +02:00
|
|
|
}
|
2022-04-26 21:53:59 +02:00
|
|
|
}, [handleResize, playingPrimaryUri, theaterMode, playingUrl, noPlayerHeight]);
|
2019-08-13 07:35:13 +02:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
// Listen to main-window resizing and adjust the floating player position accordingly:
|
|
|
|
React.useEffect(() => {
|
2022-04-04 14:13:15 +02:00
|
|
|
// intended to only run once: when floating player switches between true - false
|
|
|
|
// otherwise handleResize() can run twice when this effect re-runs, so use
|
|
|
|
// resizedBetweenFloating ref
|
2022-02-23 22:13:22 +01:00
|
|
|
if (isFloating) {
|
|
|
|
// Ensure player is within screen when 'isFloating' changes.
|
|
|
|
restoreToRelativePosition();
|
2022-04-04 14:13:15 +02:00
|
|
|
resizedBetweenFloating.current = false;
|
|
|
|
} else if (!resizedBetweenFloating.current) {
|
2022-02-23 22:13:22 +01:00
|
|
|
handleResize();
|
2022-04-04 14:13:15 +02:00
|
|
|
resizedBetweenFloating.current = true;
|
2022-02-23 22:13:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function onWindowResize() {
|
|
|
|
return isFloating ? clampToScreenOnResize() : handleResize();
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('resize', onWindowResize);
|
2022-04-04 14:13:15 +02:00
|
|
|
if (!isFloating && !isMobile) onFullscreenChange(window, 'add', handleResize);
|
2020-10-20 19:10:02 +02:00
|
|
|
|
2019-12-19 21:43:49 +01:00
|
|
|
return () => {
|
2022-02-23 22:13:22 +01:00
|
|
|
window.removeEventListener('resize', onWindowResize);
|
2022-04-04 14:13:15 +02:00
|
|
|
if (!isFloating && !isMobile) onFullscreenChange(window, 'remove', handleResize);
|
2019-12-19 21:43:49 +01:00
|
|
|
};
|
2020-04-01 20:43:50 +02:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, [clampToScreenOnResize, handleResize, isFloating]);
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
// Initial update for relativePosRef:
|
|
|
|
relativePosRef.current = calculateRelativePos(position.x, position.y);
|
|
|
|
|
|
|
|
// only on mount
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (isFloating && isComment) {
|
|
|
|
// When the player begins floating, remove the comment source
|
|
|
|
// so that it doesn't try to resize again in case of going back
|
|
|
|
// to the origin's comment section and fail to position correctly
|
|
|
|
doSetPlayingUri({ ...playingUri, source: null });
|
2021-03-19 16:04:12 +01:00
|
|
|
}
|
2022-02-23 22:13:22 +01:00
|
|
|
}, [doSetPlayingUri, isComment, isFloating, playingUri]);
|
2021-09-10 19:27:21 +02:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (isFloating) doFetchRecommendedContent(uri);
|
|
|
|
}, [doFetchRecommendedContent, isFloating, uri]);
|
2021-03-19 16:04:12 +01:00
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
React.useEffect(() => {
|
2022-04-04 14:13:15 +02:00
|
|
|
return () => {
|
|
|
|
// basically if switched videos (playingUrl change or unmount),
|
|
|
|
// erase the data so it can be re-calculated
|
|
|
|
if (playingUrl) {
|
|
|
|
initialPlayerHeight.current = undefined;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}, [playingUrl]);
|
2021-09-10 19:27:21 +02:00
|
|
|
|
2022-04-29 15:54:14 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (!primaryUri && !floatingPlayerEnabled && playingUrl && !playingUriSource) {
|
|
|
|
doClearPlayingUri();
|
|
|
|
}
|
|
|
|
}, [doClearPlayingUri, floatingPlayerEnabled, playingUriSource, playingUrl, primaryUri]);
|
|
|
|
|
2021-09-10 19:27:21 +02:00
|
|
|
if (
|
2022-03-23 19:24:16 +01:00
|
|
|
geoRestriction ||
|
2021-09-10 19:27:21 +02:00
|
|
|
!isPlayable ||
|
|
|
|
!uri ||
|
2022-02-23 22:13:22 +01:00
|
|
|
(isFloating && noFloatingPlayer) ||
|
2022-03-15 17:48:57 +01:00
|
|
|
(collectionId && !isFloating && ((!canViewFile && !nextListUri) || countdownCanceled)) ||
|
|
|
|
(isLivestreamClaim && !isCurrentClaimLive)
|
2021-09-10 19:27:21 +02:00
|
|
|
) {
|
2020-04-01 20:43:50 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
// ****************************************************************************
|
|
|
|
// RENDER
|
|
|
|
// ****************************************************************************
|
|
|
|
|
2021-09-13 17:24:35 +02:00
|
|
|
function handleDragStart() {
|
2020-08-27 08:02:43 +02:00
|
|
|
// Not really necessary, but reset just in case 'handleStop' didn't fire.
|
|
|
|
setWasDragging(false);
|
|
|
|
}
|
|
|
|
|
2020-09-09 04:14:51 +02:00
|
|
|
function handleDragMove(e, ui) {
|
2019-08-14 05:04:08 +02:00
|
|
|
const { x, y } = position;
|
2021-11-15 22:13:48 +01:00
|
|
|
const newX = ui.x;
|
|
|
|
const newY = ui.y;
|
|
|
|
|
2021-11-08 12:51:03 +01:00
|
|
|
// Mark as dragging if the position changed and we were not dragging before.
|
|
|
|
if (!wasDragging && (newX !== x || newY !== y)) {
|
|
|
|
setWasDragging(true);
|
|
|
|
}
|
2019-08-14 05:04:08 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 22:13:48 +01:00
|
|
|
function handleDragStop(e, ui) {
|
2022-02-23 22:13:22 +01:00
|
|
|
if (wasDragging) setWasDragging(false);
|
|
|
|
const { x, y } = ui;
|
|
|
|
let newPos = { x, y };
|
2021-11-15 22:13:48 +01:00
|
|
|
|
|
|
|
if (newPos.x !== position.x || newPos.y !== position.y) {
|
2022-02-23 22:13:22 +01:00
|
|
|
newPos = clampFloatingPlayerToScreen(newPos.x, newPos.y);
|
|
|
|
|
2021-11-15 22:13:48 +01:00
|
|
|
setPosition(newPos);
|
|
|
|
relativePosRef.current = calculateRelativePos(newPos.x, newPos.y);
|
2020-08-27 08:02:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-02 08:28:14 +02:00
|
|
|
return (
|
2021-07-06 11:02:05 +02:00
|
|
|
<Draggable
|
2022-06-14 08:16:23 +02:00
|
|
|
onDrag={handleDragMove}
|
|
|
|
onStart={handleDragStart}
|
|
|
|
onStop={handleDragStop}
|
2021-07-06 11:02:05 +02:00
|
|
|
defaultPosition={position}
|
|
|
|
position={isFloating ? position : { x: 0, y: 0 }}
|
|
|
|
bounds="parent"
|
2022-06-14 08:16:23 +02:00
|
|
|
handle=".draggable"
|
2021-07-06 11:02:05 +02:00
|
|
|
cancel=".button"
|
2022-06-14 08:16:23 +02:00
|
|
|
disabled={noFloatingPlayer}
|
2021-07-06 11:02:05 +02:00
|
|
|
>
|
|
|
|
<div
|
2022-04-04 14:13:15 +02:00
|
|
|
className={classnames([CONTENT_VIEWER_CLASS], {
|
2022-02-23 22:13:22 +01:00
|
|
|
[FLOATING_PLAYER_CLASS]: isFloating,
|
2021-07-06 11:02:05 +02:00
|
|
|
'content__viewer--inline': !isFloating,
|
2021-09-24 17:53:17 +02:00
|
|
|
'content__viewer--secondary': isComment,
|
2022-04-20 18:05:01 +02:00
|
|
|
'content__viewer--theater-mode': theaterMode && mainFilePlaying && !isCurrentClaimLive && !isMobile,
|
2021-11-08 12:51:03 +01:00
|
|
|
'content__viewer--disable-click': wasDragging,
|
2022-04-06 14:01:29 +02:00
|
|
|
'content__viewer--mobile': isMobile && !isLandscapeRotated && !playingUriSource,
|
2021-07-06 11:02:05 +02:00
|
|
|
})}
|
|
|
|
style={
|
|
|
|
!isFloating && fileViewerRect
|
|
|
|
? {
|
|
|
|
width: fileViewerRect.width,
|
2022-04-04 14:13:15 +02:00
|
|
|
height: appDrawerOpen ? `${getMaxLandscapeHeight()}px` : fileViewerRect.height,
|
2021-07-06 11:02:05 +02:00
|
|
|
left: fileViewerRect.x,
|
2022-03-16 14:47:30 +01:00
|
|
|
top:
|
|
|
|
isMobile && !playingUriSource
|
|
|
|
? HEADER_HEIGHT_MOBILE
|
2022-04-04 14:13:15 +02:00
|
|
|
: fileViewerRect.windowOffset + fileViewerRect.top - HEADER_HEIGHT,
|
2021-07-06 11:02:05 +02:00
|
|
|
}
|
|
|
|
: {}
|
|
|
|
}
|
2019-08-13 07:35:13 +02:00
|
|
|
>
|
2022-04-04 14:13:15 +02:00
|
|
|
{uri && videoAspectRatio && fileViewerRect ? (
|
|
|
|
<PlayerGlobalStyles
|
|
|
|
videoAspectRatio={videoAspectRatio}
|
2022-04-20 18:05:01 +02:00
|
|
|
theaterMode={theaterMode}
|
2022-04-06 23:01:26 +02:00
|
|
|
appDrawerOpen={appDrawerOpen && !isLandscapeRotated && !isTabletLandscape}
|
2022-04-04 14:13:15 +02:00
|
|
|
initialPlayerHeight={initialPlayerHeight}
|
|
|
|
isFloating={isFloating}
|
|
|
|
fileViewerRect={fileViewerRect}
|
|
|
|
mainFilePlaying={mainFilePlaying}
|
2022-04-06 14:01:29 +02:00
|
|
|
isLandscapeRotated={isLandscapeRotated}
|
2022-04-06 23:01:26 +02:00
|
|
|
isTabletLandscape={isTabletLandscape}
|
2022-04-04 14:13:15 +02:00
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
|
2022-02-23 22:13:22 +01:00
|
|
|
<div className={classnames('content__wrapper', { 'content__wrapper--floating': isFloating })}>
|
2021-07-06 11:02:05 +02:00
|
|
|
{isFloating && (
|
|
|
|
<Button
|
|
|
|
title={__('Close')}
|
2022-02-23 22:13:22 +01:00
|
|
|
onClick={() => doSetPlayingUri({ uri: null })}
|
2021-07-06 11:02:05 +02:00
|
|
|
icon={ICONS.REMOVE}
|
|
|
|
button="primary"
|
|
|
|
className="content__floating-close"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
2022-03-15 17:18:08 +01:00
|
|
|
{isReadyToPlay ? (
|
2022-04-04 13:02:27 +02:00
|
|
|
<FileRender className={classnames({ draggable: !isMobile })} uri={uri} />
|
2022-02-23 22:13:22 +01:00
|
|
|
) : collectionId && !canViewFile ? (
|
|
|
|
<div className="content__loading">
|
|
|
|
<AutoplayCountdown
|
|
|
|
nextRecommendedUri={nextListUri}
|
|
|
|
doNavigate={() => setDoNavigate(true)}
|
2022-03-15 17:28:55 +01:00
|
|
|
doReplay={() => doUriInitiatePlay({ uri, collectionId }, false, isFloating)}
|
2022-02-23 22:13:22 +01:00
|
|
|
doPrevious={() => {
|
|
|
|
setPlayNext(false);
|
|
|
|
setDoNavigate(true);
|
|
|
|
}}
|
|
|
|
onCanceled={() => setCountdownCanceled(true)}
|
|
|
|
skipPaid
|
|
|
|
/>
|
|
|
|
</div>
|
2021-07-06 11:02:05 +02:00
|
|
|
) : (
|
2022-02-23 22:13:22 +01:00
|
|
|
<LoadingScreen status={__('Loading')} />
|
2021-07-06 11:02:05 +02:00
|
|
|
)}
|
2022-02-23 22:13:22 +01:00
|
|
|
|
2021-07-06 11:02:05 +02:00
|
|
|
{isFloating && (
|
2022-04-04 13:02:27 +02:00
|
|
|
<div className={classnames('content__info', { draggable: !isMobile })}>
|
2021-07-06 11:02:05 +02:00
|
|
|
<div className="claim-preview__title" title={title || uri}>
|
2021-09-10 19:27:21 +02:00
|
|
|
<Button label={title || uri} navigate={navigateUrl} button="link" className="content__floating-link" />
|
2019-08-13 07:35:13 +02:00
|
|
|
</div>
|
2022-02-23 22:13:22 +01:00
|
|
|
|
2021-07-06 11:02:05 +02:00
|
|
|
<UriIndicator link uri={uri} />
|
|
|
|
</div>
|
|
|
|
)}
|
2019-08-13 07:35:13 +02:00
|
|
|
</div>
|
2021-07-06 11:02:05 +02:00
|
|
|
</div>
|
|
|
|
</Draggable>
|
2019-08-02 08:28:14 +02:00
|
|
|
);
|
2017-04-23 11:56:50 +02:00
|
|
|
}
|
2022-04-04 14:13:15 +02:00
|
|
|
|
|
|
|
type GlobalStylesProps = {
|
|
|
|
videoAspectRatio: number,
|
2022-04-20 18:05:01 +02:00
|
|
|
theaterMode: boolean,
|
2022-04-04 14:13:15 +02:00
|
|
|
appDrawerOpen: boolean,
|
|
|
|
initialPlayerHeight: ElementRef<any>,
|
|
|
|
isFloating: boolean,
|
|
|
|
fileViewerRect: any,
|
|
|
|
mainFilePlaying: boolean,
|
2022-04-06 14:01:29 +02:00
|
|
|
isLandscapeRotated: boolean,
|
2022-04-06 23:01:26 +02:00
|
|
|
isTabletLandscape: boolean,
|
2022-04-04 14:13:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const PlayerGlobalStyles = (props: GlobalStylesProps) => {
|
|
|
|
const {
|
|
|
|
videoAspectRatio,
|
2022-04-20 18:05:01 +02:00
|
|
|
theaterMode,
|
2022-04-04 14:13:15 +02:00
|
|
|
appDrawerOpen,
|
|
|
|
initialPlayerHeight,
|
|
|
|
isFloating,
|
|
|
|
fileViewerRect,
|
|
|
|
mainFilePlaying,
|
2022-04-06 14:01:29 +02:00
|
|
|
isLandscapeRotated,
|
2022-04-06 23:01:26 +02:00
|
|
|
isTabletLandscape,
|
2022-04-04 14:13:15 +02:00
|
|
|
} = props;
|
|
|
|
|
|
|
|
const isMobile = useIsMobile();
|
|
|
|
const isMobilePlayer = isMobile && !isFloating; // to avoid miniplayer -> file page only
|
|
|
|
|
|
|
|
const heightForViewer = getPossiblePlayerHeight(videoAspectRatio * fileViewerRect.width, isMobile);
|
|
|
|
const widthForViewer = heightForViewer / videoAspectRatio;
|
|
|
|
const maxLandscapeHeight = getMaxLandscapeHeight(isMobile ? undefined : widthForViewer);
|
|
|
|
const heightResult = appDrawerOpen ? `${maxLandscapeHeight}px` : `${heightForViewer}px`;
|
2022-04-05 15:09:21 +02:00
|
|
|
const amountNeededToCenter = getAmountNeededToCenterVideo(heightForViewer, maxLandscapeHeight);
|
2022-04-04 14:13:15 +02:00
|
|
|
|
2022-04-05 15:09:21 +02:00
|
|
|
// forceDefaults = no styles should be applied to any of these conditions
|
|
|
|
// !mainFilePlaying = embeds on markdown (comments or posts)
|
2022-04-20 18:05:01 +02:00
|
|
|
const forceDefaults = !mainFilePlaying || theaterMode || isFloating || isMobile;
|
2022-04-05 15:09:21 +02:00
|
|
|
|
2022-04-04 14:13:15 +02:00
|
|
|
const videoGreaterThanLandscape = heightForViewer > maxLandscapeHeight;
|
|
|
|
|
|
|
|
// Handles video shrink + center on mobile view
|
|
|
|
// direct DOM manipulation due to performance for every scroll
|
|
|
|
React.useEffect(() => {
|
2022-04-06 23:01:26 +02:00
|
|
|
if (!isMobilePlayer || !mainFilePlaying || appDrawerOpen || isLandscapeRotated || isTabletLandscape) return;
|
2022-04-04 14:13:15 +02:00
|
|
|
|
|
|
|
const viewer = document.querySelector(`.${CONTENT_VIEWER_CLASS}`);
|
|
|
|
if (viewer) viewer.style.height = `${heightForViewer}px`;
|
|
|
|
|
|
|
|
function handleScroll() {
|
|
|
|
const rootEl = getRootEl();
|
|
|
|
|
|
|
|
const viewer = document.querySelector(`.${CONTENT_VIEWER_CLASS}`);
|
|
|
|
const videoNode = document.querySelector('.vjs-tech');
|
|
|
|
const touchOverlay = document.querySelector('.vjs-touch-overlay');
|
|
|
|
|
|
|
|
if (rootEl && viewer) {
|
|
|
|
const scrollTop = window.pageYOffset || rootEl.scrollTop;
|
|
|
|
const isHigherThanLandscape = scrollTop < initialPlayerHeight.current - maxLandscapeHeight;
|
|
|
|
|
|
|
|
if (videoNode) {
|
|
|
|
if (isHigherThanLandscape) {
|
|
|
|
if (initialPlayerHeight.current > maxLandscapeHeight) {
|
|
|
|
const result = initialPlayerHeight.current - scrollTop;
|
|
|
|
const amountNeededToCenter = getAmountNeededToCenterVideo(videoNode.offsetHeight, result);
|
|
|
|
|
|
|
|
videoNode.style.top = `${amountNeededToCenter}px`;
|
|
|
|
if (touchOverlay) touchOverlay.style.height = `${result}px`;
|
|
|
|
viewer.style.height = `${result}px`;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (touchOverlay) touchOverlay.style.height = `${maxLandscapeHeight}px`;
|
|
|
|
viewer.style.height = `${maxLandscapeHeight}px`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('scroll', handleScroll);
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
// clear the added styles on unmount
|
|
|
|
const viewer = document.querySelector(`.${CONTENT_VIEWER_CLASS}`);
|
|
|
|
// $FlowFixMe
|
|
|
|
if (viewer) viewer.style.height = undefined;
|
|
|
|
const touchOverlay = document.querySelector('.vjs-touch-overlay');
|
|
|
|
if (touchOverlay) touchOverlay.removeAttribute('style');
|
|
|
|
|
|
|
|
window.removeEventListener('scroll', handleScroll);
|
|
|
|
};
|
2022-04-06 14:01:29 +02:00
|
|
|
}, [
|
|
|
|
appDrawerOpen,
|
|
|
|
heightForViewer,
|
|
|
|
isMobilePlayer,
|
|
|
|
mainFilePlaying,
|
|
|
|
maxLandscapeHeight,
|
|
|
|
initialPlayerHeight,
|
|
|
|
isLandscapeRotated,
|
2022-04-06 23:01:26 +02:00
|
|
|
isTabletLandscape,
|
2022-04-06 14:01:29 +02:00
|
|
|
]);
|
2022-04-04 14:13:15 +02:00
|
|
|
|
2022-04-05 15:09:21 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (appDrawerOpen && videoGreaterThanLandscape && isMobilePlayer) {
|
|
|
|
const videoNode = document.querySelector('.vjs-tech');
|
|
|
|
if (videoNode) videoNode.style.top = `${amountNeededToCenter}px`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isMobile && isFloating) {
|
|
|
|
const viewer = document.querySelector(`.${CONTENT_VIEWER_CLASS}`);
|
|
|
|
if (viewer) viewer.removeAttribute('style');
|
|
|
|
const touchOverlay = document.querySelector('.vjs-touch-overlay');
|
|
|
|
if (touchOverlay) touchOverlay.removeAttribute('style');
|
|
|
|
const videoNode = document.querySelector('.vjs-tech');
|
|
|
|
if (videoNode) videoNode.removeAttribute('style');
|
|
|
|
}
|
|
|
|
}, [amountNeededToCenter, appDrawerOpen, isFloating, isMobile, isMobilePlayer, videoGreaterThanLandscape]);
|
|
|
|
|
2022-04-06 23:01:26 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (isTabletLandscape) {
|
|
|
|
const videoNode = document.querySelector('.vjs-tech');
|
|
|
|
if (videoNode) videoNode.removeAttribute('style');
|
|
|
|
const touchOverlay = document.querySelector('.vjs-touch-overlay');
|
|
|
|
if (touchOverlay) touchOverlay.removeAttribute('style');
|
|
|
|
}
|
|
|
|
}, [isTabletLandscape]);
|
|
|
|
|
2022-04-04 14:13:15 +02:00
|
|
|
// -- render styles --
|
|
|
|
|
|
|
|
// declaring some style objects as variables makes it easier for repeated cases
|
|
|
|
const transparentBackground = {
|
|
|
|
background: videoGreaterThanLandscape && mainFilePlaying && !forceDefaults ? 'transparent !important' : undefined,
|
|
|
|
};
|
2022-04-05 14:59:06 +02:00
|
|
|
const maxHeight = {
|
2022-04-20 18:05:01 +02:00
|
|
|
maxHeight: !theaterMode && !isMobile ? 'var(--desktop-portrait-player-max-height)' : undefined,
|
2022-04-05 14:59:06 +02:00
|
|
|
};
|
2022-04-04 14:13:15 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Global
|
|
|
|
styles={{
|
|
|
|
[`.${PRIMARY_PLAYER_WRAPPER_CLASS}`]: {
|
2022-04-26 21:53:59 +02:00
|
|
|
height:
|
|
|
|
!theaterMode && mainFilePlaying && fileViewerRect?.height > 0 ? `${heightResult} !important` : undefined,
|
2022-04-20 18:05:01 +02:00
|
|
|
opacity: !theaterMode && mainFilePlaying ? '0 !important' : undefined,
|
2022-04-04 14:13:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
'.file-render--video': {
|
|
|
|
...transparentBackground,
|
|
|
|
...maxHeight,
|
|
|
|
|
|
|
|
video: maxHeight,
|
|
|
|
},
|
|
|
|
'.content__wrapper': transparentBackground,
|
2022-04-06 23:01:26 +02:00
|
|
|
'.video-js': {
|
|
|
|
...transparentBackground,
|
|
|
|
|
|
|
|
'.vjs-touch-overlay': {
|
|
|
|
maxHeight: isTabletLandscape ? 'var(--desktop-portrait-player-max-height) !important' : undefined,
|
|
|
|
},
|
|
|
|
},
|
2022-04-04 14:13:15 +02:00
|
|
|
|
|
|
|
'.vjs-fullscreen': {
|
|
|
|
video: {
|
|
|
|
top: 'unset !important',
|
|
|
|
height: '100% !important',
|
|
|
|
},
|
|
|
|
'.vjs-touch-overlay': {
|
|
|
|
height: '100% !important',
|
|
|
|
maxHeight: 'unset !important',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'.vjs-tech': {
|
|
|
|
opacity: '1',
|
|
|
|
height:
|
|
|
|
isMobilePlayer && ((appDrawerOpen && videoGreaterThanLandscape) || videoGreaterThanLandscape)
|
|
|
|
? 'unset !important'
|
|
|
|
: '100%',
|
|
|
|
position: 'absolute',
|
|
|
|
top: isFloating ? '0px !important' : undefined,
|
|
|
|
},
|
|
|
|
|
|
|
|
[`.${CONTENT_VIEWER_CLASS}`]: {
|
2022-04-06 14:01:29 +02:00
|
|
|
height:
|
|
|
|
(!forceDefaults || isLandscapeRotated) && (!isMobile || isMobilePlayer)
|
|
|
|
? `${heightResult} !important`
|
|
|
|
: undefined,
|
2022-04-04 14:13:15 +02:00
|
|
|
...maxHeight,
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|