73 lines
2 KiB
JavaScript
73 lines
2 KiB
JavaScript
// @flow
|
|
import React, { useEffect } from 'react';
|
|
import Button from 'component/button';
|
|
import FileViewerEmbeddedTitle from 'component/fileViewerEmbeddedTitle';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { useIsMobile } from 'effects/use-screensize';
|
|
import { formatLbryUrlForWeb } from 'util/url';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
thumbnail: string,
|
|
claim: ?Claim,
|
|
doResolveUri: string => void,
|
|
doFetchCostInfoForUri: string => void,
|
|
doSetFloatingUri: string => void,
|
|
costInfo: ?{ cost: number },
|
|
floatingPlayerEnabled: boolean,
|
|
doPlayUri: (string, ?boolean, ?boolean, (GetResponse) => void) => void,
|
|
doAnaltyicsPurchaseEvent: GetResponse => void,
|
|
};
|
|
|
|
export default function EmbedPlayButton(props: Props) {
|
|
const {
|
|
uri,
|
|
thumbnail = '',
|
|
claim,
|
|
doResolveUri,
|
|
doFetchCostInfoForUri,
|
|
doSetFloatingUri,
|
|
floatingPlayerEnabled,
|
|
doPlayUri,
|
|
doAnaltyicsPurchaseEvent,
|
|
costInfo,
|
|
} = props;
|
|
const { push } = useHistory();
|
|
const isMobile = useIsMobile();
|
|
const hasResolvedUri = claim !== undefined;
|
|
const disabled = !hasResolvedUri || !costInfo;
|
|
|
|
useEffect(() => {
|
|
doResolveUri(uri);
|
|
doFetchCostInfoForUri(uri);
|
|
}, [uri, doResolveUri, doFetchCostInfoForUri]);
|
|
|
|
function handleClick() {
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
|
|
if (isMobile || !floatingPlayerEnabled) {
|
|
const formattedUrl = formatLbryUrlForWeb(uri);
|
|
push(formattedUrl);
|
|
} else {
|
|
doPlayUri(uri, undefined, undefined, fileInfo => {
|
|
doSetFloatingUri(uri);
|
|
doAnaltyicsPurchaseEvent(fileInfo);
|
|
});
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div
|
|
disabled={disabled}
|
|
role="button"
|
|
className="embed__inline-button"
|
|
onClick={handleClick}
|
|
style={{ backgroundImage: `url('${thumbnail.replace(/'/g, "\\'")}')` }}
|
|
>
|
|
<FileViewerEmbeddedTitle uri={uri} isInApp />
|
|
<Button onClick={handleClick} iconSize={30} title={__('Play')} className={'button--icon button--play'} />
|
|
</div>
|
|
);
|
|
}
|