2016-11-22 21:19:08 +01:00
|
|
|
import React from 'react';
|
2017-02-20 19:56:15 +01:00
|
|
|
import {Line} from 'rc-progress';
|
|
|
|
|
2016-11-22 21:19:08 +01:00
|
|
|
import lbry from './lbry.js';
|
|
|
|
import SettingsPage from './page/settings.js';
|
|
|
|
import HelpPage from './page/help.js';
|
|
|
|
import WatchPage from './page/watch.js';
|
|
|
|
import ReportPage from './page/report.js';
|
|
|
|
import StartPage from './page/start.js';
|
|
|
|
import ClaimCodePage from './page/claim_code.js';
|
|
|
|
import ReferralPage from './page/referral.js';
|
|
|
|
import WalletPage from './page/wallet.js';
|
|
|
|
import DetailPage from './page/show.js';
|
|
|
|
import PublishPage from './page/publish.js';
|
|
|
|
import DiscoverPage from './page/discover.js';
|
|
|
|
import SplashScreen from './component/splash.js';
|
2016-12-29 10:23:28 +01:00
|
|
|
import DeveloperPage from './page/developer.js';
|
2017-01-13 23:18:37 +01:00
|
|
|
import {FileListDownloaded, FileListPublished} from './page/file-list.js';
|
2016-11-22 21:19:08 +01:00
|
|
|
import Drawer from './component/drawer.js';
|
|
|
|
import Header from './component/header.js';
|
2017-02-25 08:57:29 +01:00
|
|
|
import {Modal, ExpandableModal} from './component/modal.js';
|
2016-11-22 21:19:08 +01:00
|
|
|
import {Link} from './component/link.js';
|
|
|
|
|
2017-02-20 19:56:15 +01:00
|
|
|
|
2017-03-16 00:12:52 +01:00
|
|
|
const {remote, ipcRenderer, shell} = require('electron');
|
2017-02-20 19:56:15 +01:00
|
|
|
const {download} = remote.require('electron-dl');
|
2017-03-17 10:06:02 +01:00
|
|
|
const os = require('os');
|
|
|
|
const path = require('path');
|
|
|
|
const app = require('electron').remote.app;
|
2017-02-20 19:56:15 +01:00
|
|
|
|
|
|
|
|
2016-04-10 02:00:56 +02:00
|
|
|
var App = React.createClass({
|
2016-10-21 11:21:07 +02:00
|
|
|
_error_key_labels: {
|
2016-10-22 10:40:46 +02:00
|
|
|
connectionString: 'API connection string',
|
2016-10-21 11:21:07 +02:00
|
|
|
method: 'Method',
|
|
|
|
params: 'Parameters',
|
|
|
|
code: 'Error code',
|
|
|
|
message: 'Error message',
|
|
|
|
data: 'Error data',
|
|
|
|
},
|
|
|
|
|
2017-03-17 10:06:02 +01:00
|
|
|
_upgradeDownloadItem: null,
|
2017-03-26 20:30:18 +02:00
|
|
|
_isMounted: false,
|
2017-03-17 10:06:02 +01:00
|
|
|
_version: null,
|
|
|
|
|
|
|
|
// Temporary workaround since electron-dl throws errors when you try to get the filename
|
2017-03-26 20:30:18 +02:00
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
address: window.location.search
|
|
|
|
};
|
|
|
|
},
|
2017-03-17 10:06:02 +01:00
|
|
|
getUpgradeFilename: function() {
|
|
|
|
if (os.platform() == 'darwin') {
|
|
|
|
return `LBRY-${this._version}.dmg`;
|
|
|
|
} else if (os.platform() == 'linux') {
|
2017-03-24 08:21:12 +01:00
|
|
|
return `LBRY_${this._version}_amd64.deb`;
|
2017-03-17 10:06:02 +01:00
|
|
|
} else {
|
2017-03-24 08:21:12 +01:00
|
|
|
return `LBRY.Setup.${this._version}.exe`;
|
2017-03-17 10:06:02 +01:00
|
|
|
}
|
|
|
|
},
|
2017-03-26 20:30:18 +02:00
|
|
|
getViewingPageAndArgs: function(address) {
|
2016-04-21 11:51:27 +02:00
|
|
|
// For now, routes are in format ?page or ?page=args
|
2017-03-26 20:30:18 +02:00
|
|
|
let isMatch, viewingPage, pageArgs;
|
|
|
|
[isMatch, viewingPage, pageArgs] = address.match(/\??([^=]*)(?:=(.*))?/);
|
2016-04-20 12:28:13 +02:00
|
|
|
return {
|
2016-08-27 16:12:56 +02:00
|
|
|
viewingPage: viewingPage,
|
2017-03-26 20:30:18 +02:00
|
|
|
pageArgs: pageArgs === undefined ? null : pageArgs
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getInitialState: function() {
|
|
|
|
var match, param, val, viewingPage, pageArgs,
|
|
|
|
drawerOpenRaw = sessionStorage.getItem('drawerOpen');
|
|
|
|
|
|
|
|
return Object.assign(this.getViewingPageAndArgs(this.props.address), {
|
2016-08-07 22:10:44 +02:00
|
|
|
drawerOpen: drawerOpenRaw !== null ? JSON.parse(drawerOpenRaw) : true,
|
2016-10-21 11:21:07 +02:00
|
|
|
errorInfo: null,
|
2016-10-21 09:47:06 +02:00
|
|
|
modal: null,
|
2017-03-22 12:21:48 +01:00
|
|
|
updateUrl: null,
|
|
|
|
isOldOSX: null,
|
2017-02-20 19:56:15 +01:00
|
|
|
downloadProgress: null,
|
2017-03-17 10:06:02 +01:00
|
|
|
downloadComplete: false,
|
2017-03-26 20:30:18 +02:00
|
|
|
});
|
2016-04-10 02:00:56 +02:00
|
|
|
},
|
2016-04-12 12:30:25 +02:00
|
|
|
componentWillMount: function() {
|
2016-10-22 11:22:44 +02:00
|
|
|
document.addEventListener('unhandledError', (event) => {
|
2016-10-21 11:21:07 +02:00
|
|
|
this.alertError(event.detail);
|
|
|
|
});
|
|
|
|
|
2017-03-26 20:30:18 +02:00
|
|
|
//open links in external browser and skip full redraw on changing page
|
2017-03-16 00:12:52 +01:00
|
|
|
document.addEventListener('click', function(event) {
|
|
|
|
var target = event.target;
|
|
|
|
while (target && target !== document) {
|
|
|
|
if (target.matches('a[href^="http"]')) {
|
|
|
|
event.preventDefault();
|
|
|
|
shell.openExternal(target.href);
|
|
|
|
return;
|
|
|
|
}
|
2017-03-26 20:30:18 +02:00
|
|
|
if (target.matches('a[href^="?"]')) {
|
|
|
|
event.preventDefault();
|
|
|
|
if (this._isMounted) {
|
|
|
|
this.setState(this.getViewingPageAndArgs(target.getAttribute('href')));
|
|
|
|
}
|
|
|
|
}
|
2017-03-16 00:12:52 +01:00
|
|
|
target = target.parentNode;
|
|
|
|
}
|
2017-03-26 20:30:18 +02:00
|
|
|
}.bind(this));
|
2017-03-16 00:12:52 +01:00
|
|
|
|
2017-03-22 12:21:48 +01:00
|
|
|
lbry.checkNewVersionAvailable((isAvailable) => {
|
|
|
|
if (!isAvailable || sessionStorage.getItem('upgradeSkipped')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lbry.getVersionInfo((versionInfo) => {
|
|
|
|
this._version = versionInfo.lbrynet_version; // temp for building upgrade filename
|
|
|
|
|
|
|
|
var isOldOSX = false;
|
|
|
|
if (versionInfo.os_system == 'Darwin') {
|
|
|
|
var updateUrl = 'https://lbry.io/get/lbry.dmg';
|
|
|
|
|
|
|
|
var maj, min, patch;
|
|
|
|
[maj, min, patch] = versionInfo.lbrynet_version.split('.');
|
|
|
|
if (maj == 0 && min <= 2 && patch <= 2) {
|
|
|
|
isOldOSX = true;
|
|
|
|
}
|
|
|
|
} else if (versionInfo.os_system == 'Linux') {
|
|
|
|
var updateUrl = 'https://lbry.io/get/lbry.deb';
|
|
|
|
} else if (versionInfo.os_system == 'Windows') {
|
|
|
|
var updateUrl = 'https://lbry.io/get/lbry.exe';
|
|
|
|
} else {
|
|
|
|
var updateUrl = 'https://lbry.io/get';
|
2016-05-30 15:43:34 +02:00
|
|
|
}
|
2017-02-20 20:28:59 +01:00
|
|
|
|
2017-03-22 12:21:48 +01:00
|
|
|
this.setState({
|
|
|
|
modal: 'upgrade',
|
|
|
|
isOldOSX: isOldOSX,
|
|
|
|
updateUrl: updateUrl,
|
|
|
|
})
|
2016-05-30 15:43:34 +02:00
|
|
|
});
|
2017-03-22 12:21:48 +01:00
|
|
|
});
|
2016-04-12 12:30:25 +02:00
|
|
|
},
|
2016-08-07 22:10:44 +02:00
|
|
|
openDrawer: function() {
|
|
|
|
sessionStorage.setItem('drawerOpen', true);
|
|
|
|
this.setState({ drawerOpen: true });
|
|
|
|
},
|
|
|
|
closeDrawer: function() {
|
|
|
|
sessionStorage.setItem('drawerOpen', false);
|
|
|
|
this.setState({ drawerOpen: false });
|
|
|
|
},
|
2016-10-21 09:47:06 +02:00
|
|
|
closeModal: function() {
|
|
|
|
this.setState({
|
|
|
|
modal: null,
|
|
|
|
});
|
|
|
|
},
|
2017-03-26 20:30:18 +02:00
|
|
|
componentDidMount: function() {
|
|
|
|
this._isMounted = true;
|
|
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
this._isMounted = false;
|
|
|
|
},
|
2016-10-21 09:47:06 +02:00
|
|
|
handleUpgradeClicked: function() {
|
2017-03-22 12:21:48 +01:00
|
|
|
// TODO: create a callback for onProgress and have the UI
|
|
|
|
// show download progress
|
|
|
|
// TODO: calling lbry.stop() ends up displaying the "daemon
|
|
|
|
// unexpectedly stopped" page. Have a better way of shutting down
|
|
|
|
let dir = app.getPath('temp');
|
2017-02-20 19:56:15 +01:00
|
|
|
let options = {
|
|
|
|
onProgress: (p) => this.setState({downloadProgress: Math.round(p * 100)}),
|
2017-03-17 10:06:02 +01:00
|
|
|
directory: dir,
|
|
|
|
};
|
2017-03-22 12:21:48 +01:00
|
|
|
download(remote.getCurrentWindow(), this.state.updateUrl, options)
|
2017-03-17 10:06:02 +01:00
|
|
|
.then(downloadItem => {
|
|
|
|
/**
|
|
|
|
* TODO: get the download path directly from the download object. It should just be
|
|
|
|
* downloadItem.getSavePath(), but the copy on the main process is being garbage collected
|
|
|
|
* too soon.
|
|
|
|
*/
|
|
|
|
|
|
|
|
this._upgradeDownloadItem = downloadItem;
|
|
|
|
this._upgradeDownloadPath = path.join(dir, this.getUpgradeFilename());
|
|
|
|
this.setState({
|
|
|
|
downloadComplete: true
|
|
|
|
});
|
|
|
|
});
|
2017-02-20 19:56:15 +01:00
|
|
|
this.setState({modal: 'downloading'});
|
2016-10-21 09:47:06 +02:00
|
|
|
},
|
2017-03-17 10:06:02 +01:00
|
|
|
handleStartUpgradeClicked: function() {
|
|
|
|
ipcRenderer.send('upgrade', this._upgradeDownloadPath);
|
|
|
|
},
|
|
|
|
cancelUpgrade: function() {
|
|
|
|
if (this._upgradeDownloadItem) {
|
|
|
|
/*
|
|
|
|
* Right now the remote reference to the download item gets garbage collected as soon as the
|
|
|
|
* the download is over (maybe even earlier), so trying to cancel a finished download may
|
|
|
|
* throw an error.
|
|
|
|
*/
|
|
|
|
try {
|
|
|
|
this._upgradeDownloadItem.cancel();
|
|
|
|
} catch (err) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
downloadProgress: null,
|
|
|
|
downloadComplete: false,
|
|
|
|
modal: null,
|
|
|
|
});
|
|
|
|
},
|
2016-10-21 09:47:06 +02:00
|
|
|
handleSkipClicked: function() {
|
|
|
|
sessionStorage.setItem('upgradeSkipped', true);
|
|
|
|
this.setState({
|
|
|
|
modal: null,
|
|
|
|
});
|
|
|
|
},
|
2016-08-08 04:48:45 +02:00
|
|
|
onSearch: function(term) {
|
|
|
|
this.setState({
|
|
|
|
viewingPage: 'discover',
|
|
|
|
pageArgs: term
|
|
|
|
});
|
2016-08-08 02:57:12 +02:00
|
|
|
},
|
2016-10-21 11:21:07 +02:00
|
|
|
alertError: function(error) {
|
|
|
|
var errorInfoList = [];
|
|
|
|
for (let key of Object.keys(error)) {
|
2016-10-22 10:35:47 +02:00
|
|
|
let val = typeof error[key] == 'string' ? error[key] : JSON.stringify(error[key]);
|
2016-10-21 11:21:07 +02:00
|
|
|
let label = this._error_key_labels[key];
|
2016-10-22 11:50:55 +02:00
|
|
|
errorInfoList.push(<li key={key}><strong>{label}</strong>: <code>{val}</code></li>);
|
2016-10-21 11:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
modal: 'error',
|
2016-10-26 08:57:20 +02:00
|
|
|
errorInfo: <ul className="error-modal__error-list">{errorInfoList}</ul>,
|
2016-10-21 11:21:07 +02:00
|
|
|
});
|
|
|
|
},
|
2016-08-27 16:12:56 +02:00
|
|
|
getHeaderLinks: function()
|
|
|
|
{
|
|
|
|
switch(this.state.viewingPage)
|
|
|
|
{
|
|
|
|
case 'wallet':
|
|
|
|
case 'send':
|
|
|
|
case 'receive':
|
|
|
|
case 'claim':
|
2016-09-08 10:17:08 +02:00
|
|
|
case 'referral':
|
2016-08-27 16:12:56 +02:00
|
|
|
return {
|
|
|
|
'?wallet' : 'Overview',
|
|
|
|
'?send' : 'Send',
|
|
|
|
'?receive' : 'Receive',
|
2016-09-08 10:17:08 +02:00
|
|
|
'?claim' : 'Claim Beta Code',
|
2016-09-09 13:40:27 +02:00
|
|
|
'?referral' : 'Check Referral Credit',
|
2016-08-27 16:12:56 +02:00
|
|
|
};
|
2016-09-23 11:19:39 +02:00
|
|
|
case 'downloaded':
|
|
|
|
case 'published':
|
|
|
|
return {
|
|
|
|
'?downloaded': 'Downloaded',
|
|
|
|
'?published': 'Published',
|
|
|
|
};
|
2016-08-27 16:12:56 +02:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
2016-08-08 00:13:17 +02:00
|
|
|
getMainContent: function()
|
|
|
|
{
|
|
|
|
switch(this.state.viewingPage)
|
|
|
|
{
|
|
|
|
case 'settings':
|
|
|
|
return <SettingsPage />;
|
|
|
|
case 'help':
|
|
|
|
return <HelpPage />;
|
|
|
|
case 'watch':
|
|
|
|
return <WatchPage name={this.state.pageArgs} />;
|
|
|
|
case 'report':
|
|
|
|
return <ReportPage />;
|
2016-09-23 11:19:39 +02:00
|
|
|
case 'downloaded':
|
2017-01-13 23:18:37 +01:00
|
|
|
return <FileListDownloaded />;
|
2016-09-23 11:19:39 +02:00
|
|
|
case 'published':
|
2017-01-13 23:18:37 +01:00
|
|
|
return <FileListPublished />;
|
2016-08-08 00:13:17 +02:00
|
|
|
case 'start':
|
|
|
|
return <StartPage />;
|
|
|
|
case 'claim':
|
|
|
|
return <ClaimCodePage />;
|
2016-09-08 10:17:08 +02:00
|
|
|
case 'referral':
|
|
|
|
return <ReferralPage />;
|
2016-08-08 00:13:17 +02:00
|
|
|
case 'wallet':
|
2016-08-27 16:12:56 +02:00
|
|
|
case 'send':
|
|
|
|
case 'receive':
|
|
|
|
return <WalletPage viewingPage={this.state.viewingPage} />;
|
2016-08-08 00:13:17 +02:00
|
|
|
case 'show':
|
|
|
|
return <DetailPage name={this.state.pageArgs} />;
|
|
|
|
case 'publish':
|
|
|
|
return <PublishPage />;
|
2016-12-29 10:23:28 +01:00
|
|
|
case 'developer':
|
|
|
|
return <DeveloperPage />;
|
2016-08-27 16:12:56 +02:00
|
|
|
case 'discover':
|
|
|
|
default:
|
2016-12-30 13:42:47 +01:00
|
|
|
return <DiscoverPage {... this.state.pageArgs !== null ? {query: this.state.pageArgs} : {} } />;
|
2016-08-08 00:13:17 +02:00
|
|
|
}
|
|
|
|
},
|
2016-04-10 02:00:56 +02:00
|
|
|
render: function() {
|
2016-08-27 16:12:56 +02:00
|
|
|
var mainContent = this.getMainContent(),
|
2017-01-13 04:36:03 +01:00
|
|
|
headerLinks = this.getHeaderLinks(),
|
|
|
|
searchQuery = this.state.viewingPage == 'discover' && this.state.pageArgs ? this.state.pageArgs : '';
|
2016-08-08 00:13:17 +02:00
|
|
|
|
2016-08-07 22:10:44 +02:00
|
|
|
return (
|
2016-08-08 05:39:44 +02:00
|
|
|
this.state.viewingPage == 'watch' ?
|
|
|
|
mainContent :
|
|
|
|
<div id="window" className={ this.state.drawerOpen ? 'drawer-open' : 'drawer-closed' }>
|
|
|
|
<Drawer onCloseDrawer={this.closeDrawer} viewingPage={this.state.viewingPage} />
|
2016-08-27 16:12:56 +02:00
|
|
|
<div id="main-content" className={ headerLinks ? 'with-sub-nav' : 'no-sub-nav' }>
|
2017-01-13 04:36:03 +01:00
|
|
|
<Header onOpenDrawer={this.openDrawer} initialQuery={searchQuery} onSearch={this.onSearch} links={headerLinks} viewingPage={this.state.viewingPage} />
|
2016-08-08 05:39:44 +02:00
|
|
|
{mainContent}
|
|
|
|
</div>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'upgrade'} contentLabel="Update available"
|
|
|
|
type="confirm" confirmButtonLabel="Upgrade" abortButtonLabel="Skip"
|
|
|
|
onConfirmed={this.handleUpgradeClicked} onAborted={this.handleSkipClicked}>
|
2017-03-22 12:21:48 +01:00
|
|
|
<p>Your version of LBRY is out of date and may be unreliable or insecure.</p>
|
|
|
|
{this.state.isOldOSX
|
|
|
|
? <p>Before installing the new version, make sure to exit LBRY. If you started the app, click the LBRY icon in your status bar and choose "Quit."</p>
|
|
|
|
: null}
|
|
|
|
|
2016-10-21 09:47:06 +02:00
|
|
|
</Modal>
|
2017-02-20 19:56:15 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'downloading'} contentLabel="Downloading Update" type="custom">
|
2017-03-17 23:05:25 +01:00
|
|
|
Downloading Update{this.state.downloadProgress ? `: ${this.state.downloadProgress}%` : null}
|
2017-02-20 19:56:15 +01:00
|
|
|
<Line percent={this.state.downloadProgress} strokeWidth="4"/>
|
2017-03-17 23:05:25 +01:00
|
|
|
{this.state.downloadComplete ? (
|
|
|
|
<div>
|
|
|
|
<br />
|
|
|
|
<p>Click "Begin Upgrade" to start the upgrade process.</p>
|
|
|
|
<p>The app will close, and you will be prompted to install the latest version of LBRY.</p>
|
|
|
|
<p>After the install is complete, please reopen the app.</p>
|
|
|
|
</div>
|
|
|
|
) : null }
|
2017-03-17 10:06:02 +01:00
|
|
|
<div className="modal__buttons">
|
2017-03-17 23:05:25 +01:00
|
|
|
{this.state.downloadComplete
|
2017-03-17 10:06:02 +01:00
|
|
|
? <Link button="primary" label="Begin Upgrade" className="modal__button" onClick={this.handleStartUpgradeClicked} />
|
|
|
|
: null}
|
2017-03-17 23:05:25 +01:00
|
|
|
<Link button="alt" label="Cancel" className="modal__button" onClick={this.cancelUpgrade} />
|
2017-03-17 10:06:02 +01:00
|
|
|
</div>
|
2017-02-20 19:56:15 +01:00
|
|
|
</Modal>
|
2017-02-25 08:57:29 +01:00
|
|
|
<ExpandableModal isOpen={this.state.modal == 'error'} contentLabel="Error" className="error-modal"
|
|
|
|
overlayClassName="error-modal-overlay" onConfirmed={this.closeModal}
|
|
|
|
extraContent={this.state.errorInfo}>
|
2016-10-26 08:57:20 +02:00
|
|
|
<h3 className="modal__header">Error</h3>
|
|
|
|
|
|
|
|
<div className="error-modal__content">
|
|
|
|
<div><img className="error-modal__warning-symbol" src={lbry.imagePath('warning.png')} /></div>
|
|
|
|
<p>We're sorry that LBRY has encountered an error. This has been reported and we will investigate the problem.</p>
|
2016-10-25 05:52:36 +02:00
|
|
|
</div>
|
2017-02-25 08:57:29 +01:00
|
|
|
</ExpandableModal>
|
2016-08-07 22:10:44 +02:00
|
|
|
</div>
|
|
|
|
);
|
2016-04-10 02:00:56 +02:00
|
|
|
}
|
2016-08-23 16:53:45 +02:00
|
|
|
});
|
2016-11-22 21:19:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
export default App;
|