5d8e3d8b0a
## Issue
The loading circle wasn't showing up, causing confusion.
Splitting CSS doesn't seem trivial as there seems to be a huge dependency on the load order. Pretty much similar to what this person is facing https://lihautan.com/css-code-splitting/#the-problem
## Change
This reverts videojs-specific changes from 4d638bcf
.
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
// @flow
|
|
import React, { useState, useEffect } from 'react';
|
|
import FileRender from 'component/fileRender';
|
|
import LoadingScreen from 'component/common/loading-screen';
|
|
import { NON_STREAM_MODES } from 'constants/file_render_modes';
|
|
|
|
type Props = {
|
|
isPlaying: boolean,
|
|
fileInfo: FileListItem,
|
|
uri: string,
|
|
renderMode: string,
|
|
streamingUrl?: string,
|
|
triggerAnalyticsView: (string, number) => Promise<any>,
|
|
claimRewards: () => void,
|
|
costInfo: any,
|
|
claimWasPurchased: boolean,
|
|
};
|
|
|
|
export default function FileRenderInline(props: Props) {
|
|
const {
|
|
isPlaying,
|
|
fileInfo,
|
|
uri,
|
|
streamingUrl,
|
|
triggerAnalyticsView,
|
|
claimRewards,
|
|
renderMode,
|
|
costInfo,
|
|
claimWasPurchased,
|
|
} = props;
|
|
const [playTime, setPlayTime] = useState();
|
|
const isFree = !costInfo || (costInfo.cost !== undefined && costInfo.cost === 0);
|
|
const isReadyToView = fileInfo && fileInfo.completed;
|
|
const isReadyToPlay = streamingUrl || isReadyToView;
|
|
|
|
// Render if any source is ready
|
|
let renderContent = isReadyToPlay;
|
|
|
|
// Force non-streaming content to wait for download
|
|
if (NON_STREAM_MODES.includes(renderMode)) {
|
|
renderContent = isReadyToView;
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (isPlaying) {
|
|
setPlayTime(Date.now());
|
|
}
|
|
}, [isPlaying, setPlayTime, uri]);
|
|
|
|
useEffect(() => {
|
|
/*
|
|
note: code can currently double fire with videoViewer logic if a video is rendered by FileRenderInline (currently this never happens)
|
|
*/
|
|
if (playTime && isReadyToPlay) {
|
|
const timeToStart = Date.now() - playTime;
|
|
|
|
triggerAnalyticsView(uri, timeToStart).then(() => {
|
|
claimRewards();
|
|
setPlayTime(null);
|
|
});
|
|
}
|
|
}, [setPlayTime, claimRewards, triggerAnalyticsView, isReadyToPlay, playTime, uri]);
|
|
|
|
if (!isPlaying) {
|
|
return null;
|
|
}
|
|
|
|
if (!isFree && !claimWasPurchased) {
|
|
return null;
|
|
}
|
|
|
|
return renderContent ? <FileRender uri={uri} /> : <LoadingScreen isDocument />;
|
|
}
|