lbry-desktop/ui/page/embedWrapper/view.jsx

64 lines
1.9 KiB
React
Raw Normal View History

// @flow
2020-04-14 01:48:11 +02:00
import React, { useEffect } from 'react';
import FileRender from 'component/fileRender';
import FileViewerEmbeddedTitle from 'component/fileViewerEmbeddedTitle';
import Spinner from 'component/spinner';
type Props = {
uri: string,
resolveUri: string => void,
claim: Claim,
2020-05-21 23:11:56 +02:00
doPlayUri: string => void,
2020-05-22 03:26:46 +02:00
costInfo: any,
streamingUrl: string,
doFetchCostInfoForUri: string => void,
isResolvingUri: boolean,
};
2020-01-31 19:25:48 +01:00
// $FlowFixMe apparently flow thinks this is wrong.
export const EmbedContext = React.createContext();
const EmbedWrapperPage = (props: Props) => {
2020-05-22 03:26:46 +02:00
const { resolveUri, claim, uri, doPlayUri, costInfo, streamingUrl, doFetchCostInfoForUri, isResolvingUri } = props;
2020-05-21 23:11:56 +02:00
const haveClaim = Boolean(claim);
const readyToDisplay = claim && streamingUrl;
const loading = !claim && isResolvingUri;
const noContentFound = !claim && !isResolvingUri;
const isPaidContent = costInfo && costInfo.cost > 0;
2020-01-31 20:33:40 +01:00
useEffect(() => {
2020-05-21 23:11:56 +02:00
if (resolveUri && uri && !haveClaim) {
resolveUri(uri);
}
2020-05-22 03:26:46 +02:00
if (uri && haveClaim && costInfo && costInfo.cost === 0) {
2020-05-21 23:11:56 +02:00
doPlayUri(uri);
}
2020-05-22 03:26:46 +02:00
}, [resolveUri, uri, doPlayUri, haveClaim, costInfo]);
useEffect(() => {
if (haveClaim && uri && doFetchCostInfoForUri) {
doFetchCostInfoForUri(uri);
}
}, [uri, haveClaim, doFetchCostInfoForUri]);
2020-01-31 19:25:48 +01:00
return (
<div className="embed__wrapper">
2020-05-22 03:26:46 +02:00
<EmbedContext.Provider value>
{readyToDisplay ? (
<FileRender uri={uri} embedded />
) : (
<div className="embed__loading">
<FileViewerEmbeddedTitle uri={uri} />
<div className="embed__loading-text">
2020-05-26 18:26:55 +02:00
{loading && <Spinner delayed light />}
{noContentFound && <h1>{__('No content found.')}</h1>}
{isPaidContent && <h1>{__('Paid content cannot be embedded.')}</h1>}
</div>
</div>
)}
2020-05-22 03:26:46 +02:00
</EmbedContext.Provider>
2020-01-31 19:25:48 +01:00
</div>
);
};
export default EmbedWrapperPage;