lbry-desktop/src/ui/component/fileRender/view.jsx

192 lines
5.1 KiB
React
Raw Normal View History

2018-06-11 08:41:25 +02:00
// @flow
import { remote } from 'electron';
2019-06-27 08:18:45 +02:00
import React, { Suspense } from 'react';
2018-06-11 08:41:25 +02:00
import LoadingScreen from 'component/common/loading-screen';
2019-04-03 07:56:58 +02:00
import VideoViewer from 'component/viewers/videoViewer';
2019-08-06 05:25:33 +02:00
import ImageViewer from 'component/viewers/imageViewer';
import AppViewer from 'component/viewers/appViewer';
2019-08-02 08:28:14 +02:00
import path from 'path';
import fs from 'fs';
2019-09-02 15:24:00 +02:00
import Yrbl from 'component/yrbl';
2019-04-03 07:56:58 +02:00
2019-04-24 16:02:08 +02:00
const DocumentViewer = React.lazy<*>(() =>
2019-06-25 05:27:18 +02:00
import(
/* webpackChunkName: "documentViewer" */
'component/viewers/documentViewer'
)
2019-04-24 16:02:08 +02:00
);
2019-04-03 07:56:58 +02:00
2019-04-24 16:02:08 +02:00
const DocxViewer = React.lazy<*>(() =>
2019-06-25 05:27:18 +02:00
import(
/* webpackChunkName: "docxViewer" */
'component/viewers/docxViewer'
)
2019-04-24 16:02:08 +02:00
);
2019-04-03 07:56:58 +02:00
2019-04-24 16:02:08 +02:00
const HtmlViewer = React.lazy<*>(() =>
2019-06-25 05:27:18 +02:00
import(
/* webpackChunkName: "htmlViewer" */
'component/viewers/htmlViewer'
)
2019-04-24 16:02:08 +02:00
);
2019-04-03 07:56:58 +02:00
2019-04-24 16:02:08 +02:00
const PdfViewer = React.lazy<*>(() =>
2019-06-25 05:27:18 +02:00
import(
/* webpackChunkName: "pdfViewer" */
'component/viewers/pdfViewer'
)
2019-04-24 16:02:08 +02:00
);
2019-04-03 07:56:58 +02:00
2019-03-08 20:20:17 +01:00
// @if TARGET='app'
2019-05-09 00:47:39 +02:00
const ComicBookViewer = React.lazy<*>(() =>
2019-06-25 05:27:18 +02:00
import(
/* webpackChunkName: "comicBookViewer" */
'component/viewers/comicBookViewer'
)
2019-05-09 00:47:39 +02:00
);
2019-04-24 16:02:08 +02:00
const ThreeViewer = React.lazy<*>(() =>
2019-06-25 05:27:18 +02:00
import(
/* webpackChunkName: "threeViewer" */
'component/viewers/threeViewer'
)
2019-04-24 16:02:08 +02:00
);
2019-03-08 20:20:17 +01:00
// @endif
2018-06-11 08:41:25 +02:00
type Props = {
2019-08-06 05:25:33 +02:00
uri: string,
2018-06-11 08:41:25 +02:00
mediaType: string,
2019-08-02 08:28:14 +02:00
streamingUrl: string,
contentType: string,
2019-04-24 16:02:08 +02:00
claim: StreamClaim,
2018-06-11 08:41:25 +02:00
currentTheme: string,
2019-08-06 05:25:33 +02:00
downloadPath: string,
fileName: string,
2018-06-11 08:41:25 +02:00
};
class FileRender extends React.PureComponent<Props> {
2019-01-19 19:54:06 +01:00
constructor(props: Props) {
super(props);
2019-01-19 19:54:06 +01:00
(this: any).escapeListener = this.escapeListener.bind(this);
}
componentDidMount() {
window.addEventListener('keydown', this.escapeListener, true);
}
componentWillUnmount() {
window.removeEventListener('keydown', this.escapeListener, true);
}
2019-01-19 19:54:06 +01:00
escapeListener(e: SyntheticKeyboardEvent<*>) {
if (e.keyCode === 27) {
e.preventDefault();
this.exitFullscreen();
return false;
}
}
exitFullscreen() {
remote.getCurrentWindow().setFullScreen(false);
}
renderViewer() {
2019-08-06 05:25:33 +02:00
const { mediaType, currentTheme, claim, contentType, downloadPath, fileName, streamingUrl, uri } = this.props;
2019-08-02 08:28:14 +02:00
const fileType = fileName && path.extname(fileName).substring(1);
2018-06-11 08:41:25 +02:00
2019-08-13 07:35:13 +02:00
// Ideally the lbrytv api server would just replace the streaming_url returned by the sdk so we don't need this check
// https://github.com/lbryio/lbrytv/issues/51
const source = IS_WEB ? `https://api.lbry.tv/content/claims/${claim.name}/${claim.claim_id}/stream` : streamingUrl;
// Human-readable files (scripts and plain-text files)
const readableFiles = ['text', 'document', 'script'];
2018-06-11 08:41:25 +02:00
// Supported mediaTypes
const mediaTypes = {
2019-03-08 20:20:17 +01:00
// @if TARGET='app'
'3D-file': <ThreeViewer source={{ fileType, downloadPath }} theme={currentTheme} />,
2019-05-16 08:32:53 +02:00
'comic-book': <ComicBookViewer source={{ fileType, downloadPath }} theme={currentTheme} />,
2019-08-06 05:25:33 +02:00
application: <AppViewer uri={uri} />,
2019-03-08 20:20:17 +01:00
// @endif
2019-08-13 07:35:13 +02:00
video: <VideoViewer uri={uri} source={source} contentType={contentType} />,
audio: <VideoViewer uri={uri} source={source} contentType={contentType} />,
image: <ImageViewer uri={uri} source={source} />,
2018-06-11 08:41:25 +02:00
// Add routes to viewer...
};
// Supported fileType
const fileTypes = {
2019-08-13 07:35:13 +02:00
// @if TARGET='app'
pdf: <PdfViewer source={downloadPath} />,
docx: <DocxViewer source={downloadPath} />,
html: <HtmlViewer source={downloadPath} />,
2019-08-13 07:35:13 +02:00
// @endif
// Add routes to viewer...
};
// Check for a valid fileType or mediaType
2019-08-06 05:48:41 +02:00
let viewer = (fileType && fileTypes[fileType]) || mediaTypes[mediaType];
// Check for Human-readable files
if (!viewer && readableFiles.includes(mediaType)) {
2019-08-02 08:28:14 +02:00
viewer = (
<DocumentViewer
source={{
stream: options => fs.createReadStream(downloadPath, options),
fileType,
contentType,
}}
theme={currentTheme}
/>
);
}
// @if TARGET='web'
// temp workaround to disabled paid content on web
2019-06-25 05:27:18 +02:00
if (claim && claim.value.fee && Number(claim.value.fee.amount) > 0) {
2019-03-19 07:32:53 +01:00
const paidMessage = __(
'Currently, only free content is available on lbry.tv. Try viewing it in the desktop app.'
);
const paid = <LoadingScreen status={paidMessage} spinner={false} />;
return paid;
}
// @endif
2019-09-02 15:24:00 +02:00
const unsupported = IS_WEB ? (
<div className={'content__cover--disabled'}>
<Yrbl
className={'content__cover--disabled'}
title={'Not available on LBRY TV'}
subtitle={'You can view or download this file by installing the App'}
uri={uri}
/>
</div>
) : (
<div className={'content__cover--disabled'}>
<Yrbl
title={'Content Downloaded'}
subtitle={'This file is unsupported here, but you can view the content in an application of your choice'}
uri={uri}
/>
</div>
);
2018-06-11 08:41:25 +02:00
// Return viewer
return viewer || unsupported;
2018-06-11 08:41:25 +02:00
}
render() {
2019-03-27 05:40:02 +01:00
return (
<div className="file-render">
<Suspense fallback={<div />}>{this.renderViewer()}</Suspense>
2019-03-27 05:40:02 +01:00
</div>
);
2018-06-11 08:41:25 +02:00
}
}
export default FileRender;