lbry-desktop/src/renderer/page/file/view.jsx

251 lines
7.9 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
2018-10-19 22:38:07 +02:00
import type { Claim, Metadata } from 'types/claim';
import type { FileInfo } from 'types/file_info';
2018-11-26 02:21:25 +01:00
import * as MODALS from 'constants/modal_types';
import * as icons from 'constants/icons';
2018-03-26 23:32:43 +02:00
import * as React from 'react';
import * as settings from 'constants/settings';
import { buildURI, normalizeURI } from 'lbry-redux';
2018-07-10 05:32:59 +02:00
import FileViewer from 'component/fileViewer';
2018-03-26 23:32:43 +02:00
import Thumbnail from 'component/common/thumbnail';
import FilePrice from 'component/filePrice';
import FileDetails from 'component/fileDetails';
2018-03-26 23:32:43 +02:00
import FileActions from 'component/fileActions';
import UriIndicator from 'component/uriIndicator';
2018-03-26 23:32:43 +02:00
import Icon from 'component/common/icon';
import DateTime from 'component/dateTime';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
import SubscribeButton from 'component/subscribeButton';
2018-03-26 23:32:43 +02:00
import Page from 'component/page';
2018-05-21 22:30:00 +02:00
import FileDownloadLink from 'component/fileDownloadLink';
import classnames from 'classnames';
2018-11-21 22:20:55 +01:00
import getMediaType from 'util/get-media-type';
import RecommendedContent from 'component/recommendedContent';
2018-03-26 23:32:43 +02:00
type Props = {
claim: Claim,
2018-10-19 22:38:07 +02:00
fileInfo: FileInfo,
metadata: Metadata,
2018-03-26 23:32:43 +02:00
contentType: string,
uri: string,
rewardedContentClaimIds: Array<string>,
obscureNsfw: boolean,
claimIsMine: boolean,
2018-10-19 22:38:07 +02:00
costInfo: ?{ cost: number },
2018-03-26 23:32:43 +02:00
fetchFileInfo: string => void,
fetchCostInfo: string => void,
setViewed: string => void,
2018-10-19 22:38:07 +02:00
isSubscribed: ?string,
isSubscribed: boolean,
channelUri: string,
prepareEdit: ({}, string) => void,
navigate: (string, ?{}) => void,
openModal: (id: string, { uri: string }) => void,
setClientSetting: (string, string | boolean | number) => void,
2018-10-19 22:38:07 +02:00
markSubscriptionRead: (string, string) => void,
2018-03-26 23:32:43 +02:00
};
class FilePage extends React.Component<Props> {
static PLAYABLE_MEDIA_TYPES = ['audio', 'video'];
static PREVIEW_MEDIA_TYPES = [
'text',
'model',
'image',
'script',
'document',
'3D-file',
// Bypass unplayable files
// TODO: Find a better way to detect supported types
'application',
];
2018-06-11 08:41:25 +02:00
constructor(props: Props) {
super(props);
(this: any).onAutoplayChange = this.onAutoplayChange.bind(this);
}
2017-05-13 00:50:51 +02:00
componentDidMount() {
2018-10-19 22:38:07 +02:00
const { uri, fileInfo, fetchFileInfo, fetchCostInfo, setViewed, isSubscribed } = this.props;
if (isSubscribed) {
this.removeFromSubscriptionNotifications();
}
2017-05-12 19:14:06 +02:00
2018-03-26 23:32:43 +02:00
if (fileInfo === undefined) {
fetchFileInfo(uri);
}
2017-05-12 19:14:06 +02:00
// See https://github.com/lbryio/lbry-desktop/pull/1563 for discussion
fetchCostInfo(uri);
setViewed(uri);
2017-05-12 19:14:06 +02:00
}
2018-03-26 23:32:43 +02:00
componentWillReceiveProps(nextProps: Props) {
2018-08-31 05:45:49 +02:00
const { fetchFileInfo, uri, setViewed } = this.props;
2018-03-26 23:32:43 +02:00
if (nextProps.fileInfo === undefined) {
fetchFileInfo(uri);
}
2018-08-31 05:45:49 +02:00
2018-08-30 07:11:05 +02:00
if (uri !== nextProps.uri) {
setViewed(nextProps.uri);
}
}
2018-10-19 22:38:07 +02:00
componentDidUpdate(prevProps: Props) {
if (!prevProps.isSubscribed && this.props.isSubscribed) {
this.removeFromSubscriptionNotifications();
}
}
onAutoplayChange(event: SyntheticInputEvent<*>) {
this.props.setClientSetting(settings.AUTOPLAY, event.target.checked);
}
2018-10-19 22:38:07 +02:00
removeFromSubscriptionNotifications() {
// Always try to remove
// If it doesn't exist, nothing will happen
const { markSubscriptionRead, uri, channelUri } = this.props;
markSubscriptionRead(channelUri, uri);
}
2017-05-12 19:14:06 +02:00
render() {
const {
claim,
metadata,
contentType,
uri,
2017-07-30 00:56:08 +02:00
rewardedContentClaimIds,
2018-03-26 23:32:43 +02:00
obscureNsfw,
openModal,
claimIsMine,
prepareEdit,
navigate,
costInfo,
fileInfo,
2018-10-19 22:38:07 +02:00
channelUri,
} = this.props;
2017-05-01 22:50:07 +02:00
2018-03-26 23:32:43 +02:00
// File info
const { title, thumbnail } = metadata;
2018-10-19 22:38:07 +02:00
const { height, channel_name: channelName } = claim;
const { PLAYABLE_MEDIA_TYPES, PREVIEW_MEDIA_TYPES } = FilePage;
const isRewardContent = (rewardedContentClaimIds || []).includes(claim.claim_id);
2018-03-26 23:32:43 +02:00
const shouldObscureThumbnail = obscureNsfw && metadata.nsfw;
const fileName = fileInfo ? fileInfo.file_name : null;
2018-07-10 04:57:34 +02:00
const mediaType = getMediaType(contentType, fileName);
const showFile =
PLAYABLE_MEDIA_TYPES.includes(mediaType) || PREVIEW_MEDIA_TYPES.includes(mediaType);
2018-10-04 15:39:14 +02:00
const speechShareable =
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) {
2018-10-19 22:38:07 +02:00
const uriObject: { contentName: string, claimId: string, channelName: ?string } = {
contentName: claim.name,
claimId: claim.claim_id,
};
2018-06-12 07:11:17 +02:00
if (channelName) {
uriObject.channelName = channelName;
}
editUri = buildURI(uriObject);
}
2017-05-12 19:14:06 +02:00
return (
2019-01-09 19:39:05 +01:00
<Page notContained className="main--file-page">
<div className="grid-area--content">
{showFile && <FileViewer className="content__embedded" uri={uri} mediaType={mediaType} />}
{!showFile &&
(thumbnail ? (
<Thumbnail shouldObscure={shouldObscureThumbnail} src={thumbnail} />
) : (
<div
className={classnames('content__empty', {
'content__empty--nsfw': shouldObscureThumbnail,
})}
>
<div className="card__media-text">
{__("Sorry, looks like we can't preview this file.")}
</div>
2017-10-10 06:53:50 +02:00
</div>
2019-01-09 19:39:05 +01:00
))}
</div>
2019-01-09 19:39:05 +01:00
<div className="grid-area--info media__content media__content--large">
<h1 className="media__title media__title--large">{title}</h1>
<div className="media__properties media__properties--large">
{isRewardContent && (
<Icon size={20} iconColor="red" tooltip="bottom" icon={icons.FEATURED} />
)}
{metadata.nsfw && <div className="badge badge--nsfw">NSFW</div>}
<FilePrice badge uri={normalizeURI(uri)} />
</div>
<div className="media__subtitle media__subtitle--large">
<div className="media__subtitle__channel">
<UriIndicator uri={uri} link />
</div>
<div className="media__subtitle__date media__subtext">
{__('Published on')} <DateTime block={height} show={DateTime.SHOW_DATE} />
</div>
</div>
<div className="media__actions media__actions--between">
<div className="media__action-group--large">
{claimIsMine ? (
<Button
button="primary"
icon={icons.EDIT}
label={__('Edit')}
onClick={() => {
prepareEdit(claim, editUri);
navigate('/publish');
}}
/>
) : (
<SubscribeButton uri={channelUri} channelName={channelName} />
)}
{!claimIsMine && (
<Button
button="alt"
icon={icons.GIFT}
label={__('Send a tip')}
onClick={() => openModal(MODALS.SEND_TIP, { uri })}
/>
)}
<Button
button="alt"
icon={icons.GLOBE}
label={__('Share')}
onClick={() => openModal(MODALS.SOCIAL_SHARE, { uri, speechShareable })}
/>
2018-03-26 23:32:43 +02:00
</div>
<div className="media__action-group--large">
<FileDownloadLink uri={uri} />
<FileActions uri={uri} claimId={claim.claim_id} />
</div>
</div>
<div className="media__info--large">
<FileDetails uri={uri} />
</div>
</div>
2019-01-09 19:39:05 +01:00
<div className="grid-area--related">
<RecommendedContent uri={uri} />
</div>
2018-03-26 23:32:43 +02:00
</Page>
2017-06-06 23:19:12 +02:00
);
2017-05-12 19:14:06 +02:00
}
2017-05-05 07:10:37 +02:00
}
2017-05-01 21:59:40 +02:00
export default FilePage;