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

246 lines
6.7 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-02 08:28:14 +02:00
import path from 'path';
import fs from 'fs';
2019-04-03 07:56:58 +02:00
2019-08-02 08:28:14 +02:00
// This is half complete, the video viewer works fine for audio, it just doesn't look pretty
// const AudioViewer = React.lazy<*>(() =>
2019-06-27 08:18:45 +02:00
// import(
// /* webpackChunkName: "audioViewer" */
// 'component/viewers/audioViewer'
// )
// );
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 = {
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-02 08:28:14 +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);
2019-08-02 08:28:14 +02:00
// ugh
// const { claim, streamingUrl, fileStatus, fileName, downloadPath, downloadCompleted, contentType } = this.props;
// if(MediaPlayer.SANDBOX_TYPES.indexOf(contentType) > -1) {
// const outpoint = `${claim.txid}:${claim.nout}`;
// // Fetch unpacked url
// fetch(`${MediaPlayer.SANDBOX_SET_BASE_URL}${outpoint}`)
// .then(res => res.text())
// .then(url => {
// const source = {url: `${MediaPlayer.SANDBOX_CONTENT_BASE_URL}${url}`};
// this.setState({source});
// })
// .catch(err => {
// console.error(err);
// });
// } else {
// File to render
}
componentWillUnmount() {
window.removeEventListener('keydown', this.escapeListener, true);
}
2019-01-19 19:54:06 +01:00
// This should use React.createRef()
2019-08-02 08:28:14 +02:00
// processSandboxRef(element: any) {
// if (!element) {
// return;
// }
// window.sandbox = element;
// element.addEventListener('permissionrequest', e => {
// console.log('permissionrequest', e);
// });
// element.addEventListener('console-message', (e: { message: string }) => {
// if (/^\$LBRY_IPC:/.test(e.message)) {
// // Process command
// let message = {};
// try {
// // $FlowFixMe
// message = JSON.parse(/^\$LBRY_IPC:(.*)/.exec(e.message)[1]);
// } catch (err) {}
// console.log('IPC', message);
// } else {
// console.log('Sandbox:', e.message);
// }
// });
// element.addEventListener('enter-html-full-screen', () => {
// // stub
// });
// element.addEventListener('leave-html-full-screen', () => {
// // stub
// });
// }
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-02 08:28:14 +02:00
const { mediaType, currentTheme, claim, contentType, downloadPath, fileName, streamingUrl } = 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
// 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-02 08:28:14 +02:00
// application: !source.url ? null : (
// <webview
// ref={element => this.processSandboxRef(element)}
// title=""
// sandbox="allow-scripts allow-forms allow-pointer-lock"
// src={source.url}
// autosize="on"
// style={{ border: 0, width: '100%', height: '100%' }}
// useragent="Mozilla/5.0 AppleWebKit/537 Chrome/60 Safari/537"
// enableremotemodule="false"
// webpreferences="sandbox=true,contextIsolation=true,webviewTag=false,enableRemoteModule=false,devTools=false"
// />
// ),
2019-03-08 20:20:17 +01:00
// @endif
2019-08-02 08:28:14 +02:00
video: <VideoViewer source={streamingUrl} contentType={contentType} />,
audio: <VideoViewer source={streamingUrl} contentType={contentType} />,
// audio: (
// <AudioViewer
// claim={claim}
// source={{ url: streamingUrl, downloadPath, downloadCompleted, status }}
// contentType={contentType}
// />
// ),
2018-06-11 08:41:25 +02:00
// Add routes to viewer...
};
// Supported fileType
const fileTypes = {
pdf: <PdfViewer source={downloadPath} />,
docx: <DocxViewer source={downloadPath} />,
html: <HtmlViewer source={downloadPath} />,
// Add routes to viewer...
};
// Check for a valid fileType or mediaType
let viewer = 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
// Message Error
2019-08-02 08:28:14 +02:00
const unsupportedMessage = __("We can't preview this file.");
const unsupported = <LoadingScreen status={unsupportedMessage} spinner={false} />;
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;