// @flow import * as React from 'react'; import { Lbry, buildURI, normalizeURI, MODALS } from 'lbry-redux'; import Video from 'component/video'; import Thumbnail from 'component/common/thumbnail'; import FilePrice from 'component/filePrice'; import FileDetails from 'component/fileDetails'; import FileActions from 'component/fileActions'; import UriIndicator from 'component/uriIndicator'; import { FormField, FormRow } from 'component/common/form'; import Icon from 'component/common/icon'; import DateTime from 'component/dateTime'; import * as icons from 'constants/icons'; import Button from 'component/button'; import SubscribeButton from 'component/subscribeButton'; import ViewOnWebButton from 'component/viewOnWebButton'; import Page from 'component/page'; import player from 'render-media'; import * as settings from 'constants/settings'; import type { Claim } from 'types/claim'; import type { Subscription } from 'types/subscription'; import FileDownloadLink from 'component/fileDownloadLink'; import classnames from 'classnames'; type Props = { claim: Claim, fileInfo: {}, metadata: { title: string, thumbnail: string, nsfw: boolean, }, contentType: string, uri: string, rewardedContentClaimIds: Array, obscureNsfw: boolean, claimIsMine: boolean, autoplay: boolean, costInfo: ?{}, navigate: (string, ?{}) => void, openModal: ({ id: string }, { uri: string }) => void, fetchFileInfo: string => void, fetchCostInfo: string => void, prepareEdit: ({}, string) => void, setClientSetting: (string, boolean | string) => void, checkSubscription: ({ channelName: string, uri: string }) => void, subscriptions: Array, }; class FilePage extends React.Component { constructor(props: Props) { super(props); (this: any).onAutoplayChange = this.onAutoplayChange.bind(this); } componentDidMount() { const { uri, fileInfo, fetchFileInfo, fetchCostInfo } = this.props; if (fileInfo === undefined) { fetchFileInfo(uri); } // See https://github.com/lbryio/lbry-app/pull/1563 for discussion fetchCostInfo(uri); this.checkSubscription(this.props); } componentWillReceiveProps(nextProps: Props) { const { fetchFileInfo, uri } = this.props; if (nextProps.fileInfo === undefined) { fetchFileInfo(uri); } } onAutoplayChange(event: SyntheticInputEvent<*>) { this.props.setClientSetting(settings.AUTOPLAY, event.target.checked); } checkSubscription = (props: Props) => { if (props.subscriptions.find(sub => sub.channelName === props.claim.channel_name)) { props.checkSubscription({ channelName: props.claim.channel_name, uri: buildURI( { contentName: props.claim.channel_name, claimId: props.claim.value.publisherSignature.certificateId, }, false ), }); } }; render() { const { claim, metadata, contentType, uri, rewardedContentClaimIds, obscureNsfw, openModal, claimIsMine, prepareEdit, navigate, autoplay, costInfo, } = this.props; // File info const { title, thumbnail } = metadata; const isRewardContent = rewardedContentClaimIds.includes(claim.claim_id); const shouldObscureThumbnail = obscureNsfw && metadata.nsfw; const { height, channel_name: channelName, value } = claim; const mediaType = Lbry.getMediaType(contentType); const isPlayable = Object.values(player.mime).includes(contentType) || mediaType === 'audio'; const channelClaimId = value && value.publisherSignature && value.publisherSignature.certificateId; let subscriptionUri; if (channelName && channelClaimId) { subscriptionUri = buildURI({ channelName, claimId: channelClaimId }, false); } const speechSharable = costInfo && costInfo.cost === 0 && contentType && ['video', 'image'].includes(contentType.split('/')[0]); // We want to use the short form uri for editing // This is what the user is used to seeing, they don't care about the claim id // We will select the claim id before they publish let editUri; if (claimIsMine) { const uriObject = { contentName: claim.name, claimId: claim.claim_id }; if (channelName) { uriObject.channelName = channelName; } editUri = buildURI(uriObject); } return ( {!claim || !metadata ? (
{__('Empty claim or metadata info.')}
) : (
{isPlayable &&
)}
); } } export default FilePage;