2018-01-18 03:13:08 +01:00
|
|
|
/* eslint-disable react/jsx-filename-extension */
|
2017-12-28 00:48:11 +01:00
|
|
|
import App from 'component/app';
|
|
|
|
import SnackBar from 'component/snackBar';
|
|
|
|
import SplashScreen from 'component/splash';
|
|
|
|
import * as ACTIONS from 'constants/action_types';
|
|
|
|
import { ipcRenderer, remote, shell } from 'electron';
|
2017-12-21 18:32:51 +01:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import { Provider } from 'react-redux';
|
2018-04-24 20:17:11 +02:00
|
|
|
import { doConditionalAuthNavigate, doDaemonReady, doAutoUpdate } from 'redux/actions/app';
|
2018-05-30 20:29:22 +02:00
|
|
|
import { doNotify, doBlackListedOutpointsSubscribe, isURIValid } from 'lbry-redux';
|
2017-12-21 18:32:51 +01:00
|
|
|
import { doNavigate } from 'redux/actions/navigation';
|
2018-03-08 00:03:45 +01:00
|
|
|
import { doDownloadLanguages, doUpdateIsNightAsync } from 'redux/actions/settings';
|
2018-08-16 07:17:15 +02:00
|
|
|
import { doUserEmailVerify, doAuthenticate } from 'redux/actions/user';
|
2017-12-21 18:32:51 +01:00
|
|
|
import 'scss/all.scss';
|
2017-12-28 00:48:11 +01:00
|
|
|
import store from 'store';
|
2017-12-21 23:09:30 +01:00
|
|
|
import app from './app';
|
2018-02-16 09:47:52 +01:00
|
|
|
import analytics from './analytics';
|
2018-05-23 04:37:09 +02:00
|
|
|
import doLogWarningConsoleMessage from './logWarningConsoleMessage';
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-12-08 13:14:37 +01:00
|
|
|
const { autoUpdater } = remote.require('electron-updater');
|
2018-05-30 20:29:22 +02:00
|
|
|
const APPPAGEURL = 'lbry://?';
|
2017-12-13 22:36:30 +01:00
|
|
|
|
2018-02-24 01:24:00 +01:00
|
|
|
autoUpdater.logger = remote.require('electron-log');
|
2017-12-10 09:06:30 +01:00
|
|
|
|
2017-12-26 14:25:26 +01:00
|
|
|
ipcRenderer.on('open-uri-requested', (event, uri, newSession) => {
|
2017-12-21 18:32:51 +01:00
|
|
|
if (uri && uri.startsWith('lbry://')) {
|
2017-12-26 14:25:26 +01:00
|
|
|
if (uri.startsWith('lbry://?verify=')) {
|
2017-12-23 03:09:06 +01:00
|
|
|
let verification = {};
|
|
|
|
try {
|
|
|
|
verification = JSON.parse(atob(uri.substring(15)));
|
2017-12-26 14:25:26 +01:00
|
|
|
} catch (error) {
|
2018-01-09 02:15:44 +01:00
|
|
|
console.log(error);
|
2017-12-26 14:25:26 +01:00
|
|
|
}
|
2017-12-23 03:09:06 +01:00
|
|
|
if (verification.token && verification.recaptcha) {
|
|
|
|
app.store.dispatch(doConditionalAuthNavigate(newSession));
|
2017-12-26 14:25:26 +01:00
|
|
|
app.store.dispatch(doUserEmailVerify(verification.token, verification.recaptcha));
|
2017-12-23 03:09:06 +01:00
|
|
|
} else {
|
2018-04-24 20:17:11 +02:00
|
|
|
app.store.dispatch(
|
|
|
|
doNotify({
|
|
|
|
message: 'Invalid Verification URI',
|
|
|
|
displayType: ['snackbar'],
|
|
|
|
})
|
|
|
|
);
|
2017-12-23 03:09:06 +01:00
|
|
|
}
|
2018-05-30 20:29:22 +02:00
|
|
|
} else if (uri.startsWith(APPPAGEURL)) {
|
|
|
|
const navpage = uri.replace(APPPAGEURL, '').toLowerCase();
|
|
|
|
app.store.dispatch(doNavigate(`/${navpage}`));
|
|
|
|
} else if (isURIValid(uri)) {
|
2017-12-26 14:25:26 +01:00
|
|
|
app.store.dispatch(doNavigate('/show', { uri }));
|
2018-05-30 20:29:22 +02:00
|
|
|
} else {
|
|
|
|
app.store.dispatch(
|
|
|
|
doNotify({
|
|
|
|
message: __('Invalid LBRY URL requested'),
|
|
|
|
displayType: ['snackbar'],
|
|
|
|
})
|
|
|
|
);
|
2017-12-23 03:09:06 +01:00
|
|
|
}
|
2017-06-08 02:56:52 +02:00
|
|
|
}
|
2017-05-09 22:58:48 +02:00
|
|
|
});
|
2017-05-08 11:04:11 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
ipcRenderer.on('open-menu', (event, uri) => {
|
|
|
|
if (uri && uri.startsWith('/help')) {
|
|
|
|
app.store.dispatch(doNavigate('/help'));
|
2017-06-13 17:02:06 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
const { dock } = remote.app;
|
2017-09-14 09:36:41 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
ipcRenderer.on('window-is-focused', () => {
|
2017-09-14 09:36:41 +02:00
|
|
|
if (!dock) return;
|
2017-12-21 18:32:51 +01:00
|
|
|
app.store.dispatch({ type: ACTIONS.WINDOW_FOCUSED });
|
|
|
|
dock.setBadge('');
|
2017-09-14 09:36:41 +02:00
|
|
|
});
|
|
|
|
|
2018-05-23 04:37:09 +02:00
|
|
|
ipcRenderer.on('devtools-is-opened', () => {
|
2018-05-30 21:20:16 +02:00
|
|
|
const logOnDevelopment = false;
|
2018-05-23 04:37:09 +02:00
|
|
|
doLogWarningConsoleMessage(logOnDevelopment);
|
|
|
|
});
|
|
|
|
|
2018-02-28 23:03:36 +01:00
|
|
|
document.addEventListener('dragover', event => {
|
|
|
|
event.preventDefault();
|
2018-03-06 09:36:04 +01:00
|
|
|
});
|
2018-02-28 23:03:36 +01:00
|
|
|
document.addEventListener('drop', event => {
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
2017-12-21 18:32:51 +01:00
|
|
|
document.addEventListener('click', event => {
|
|
|
|
let { target } = event;
|
2017-06-08 02:56:52 +02:00
|
|
|
while (target && target !== document) {
|
2017-12-21 18:32:51 +01:00
|
|
|
if (target.matches('a') || target.matches('button')) {
|
2017-12-06 01:16:54 +01:00
|
|
|
// TODO: Look into using accessiblity labels (this would also make the app more accessible)
|
2017-12-21 18:32:51 +01:00
|
|
|
const hrefParts = window.location.href.split('#');
|
2017-12-22 02:21:22 +01:00
|
|
|
const element = target.title || (target.textContent && target.textContent.trim());
|
2017-12-06 01:16:54 +01:00
|
|
|
if (element) {
|
2018-02-16 09:47:52 +01:00
|
|
|
analytics.track('CLICK', {
|
2017-12-06 02:16:06 +01:00
|
|
|
target: element,
|
2017-12-21 18:32:51 +01:00
|
|
|
location: hrefParts.length > 1 ? hrefParts[hrefParts.length - 1] : '/',
|
2017-12-06 02:16:06 +01:00
|
|
|
});
|
2017-12-06 01:16:54 +01:00
|
|
|
} else {
|
2018-02-16 09:47:52 +01:00
|
|
|
analytics.track('UNMARKED_CLICK', {
|
2017-12-21 18:32:51 +01:00
|
|
|
location: hrefParts.length > 1 ? hrefParts[hrefParts.length - 1] : '/',
|
2017-12-19 07:34:03 +01:00
|
|
|
source: target.outerHTML,
|
2017-12-06 02:16:06 +01:00
|
|
|
});
|
2017-12-06 01:16:54 +01:00
|
|
|
}
|
2017-12-05 09:04:00 +01:00
|
|
|
}
|
2017-12-21 18:32:51 +01:00
|
|
|
if (target.matches('a[href^="http"]') || target.matches('a[href^="mailto"]')) {
|
2017-06-08 02:56:52 +02:00
|
|
|
event.preventDefault();
|
|
|
|
shell.openExternal(target.href);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
target = target.parentNode;
|
|
|
|
}
|
2017-05-21 18:15:41 +02:00
|
|
|
});
|
|
|
|
|
2017-12-28 00:48:11 +01:00
|
|
|
const init = () => {
|
2018-03-22 16:43:35 +01:00
|
|
|
autoUpdater.on('error', error => {
|
2018-03-20 20:49:08 +01:00
|
|
|
// eslint-disable-next-line no-console
|
2018-03-22 16:43:35 +01:00
|
|
|
console.error(error.message);
|
2018-03-20 02:09:36 +01:00
|
|
|
});
|
|
|
|
|
2018-03-15 01:22:54 +01:00
|
|
|
if (['win32', 'darwin'].includes(process.platform)) {
|
|
|
|
autoUpdater.on('update-available', () => {
|
|
|
|
console.log('Update available');
|
|
|
|
});
|
|
|
|
autoUpdater.on('update-not-available', () => {
|
|
|
|
console.log('Update not available');
|
|
|
|
});
|
|
|
|
autoUpdater.on('update-downloaded', () => {
|
|
|
|
console.log('Update downloaded');
|
|
|
|
app.store.dispatch(doAutoUpdate());
|
|
|
|
});
|
|
|
|
}
|
2018-04-24 20:17:11 +02:00
|
|
|
|
2018-01-14 10:14:15 +01:00
|
|
|
app.store.dispatch(doUpdateIsNightAsync());
|
2017-08-08 11:36:14 +02:00
|
|
|
app.store.dispatch(doDownloadLanguages());
|
2018-04-24 20:17:11 +02:00
|
|
|
app.store.dispatch(doBlackListedOutpointsSubscribe());
|
2017-08-08 11:36:14 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
function onDaemonReady() {
|
2018-02-16 09:47:52 +01:00
|
|
|
window.sessionStorage.setItem('loaded', 'y'); // once we've made it here once per session, we don't need to show splash again
|
|
|
|
app.store.dispatch(doDaemonReady());
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2018-02-16 09:47:52 +01:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<div>
|
2018-06-04 02:17:58 +02:00
|
|
|
<App />
|
2018-02-16 09:47:52 +01:00
|
|
|
<SnackBar />
|
|
|
|
</div>
|
|
|
|
</Provider>,
|
|
|
|
document.getElementById('app')
|
|
|
|
);
|
2017-06-08 02:56:52 +02:00
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
if (window.sessionStorage.getItem('loaded') === 'y') {
|
2017-06-08 02:56:52 +02:00
|
|
|
onDaemonReady();
|
|
|
|
} else {
|
2017-07-19 23:05:08 +02:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
2018-08-16 07:17:15 +02:00
|
|
|
<SplashScreen
|
|
|
|
authenticate={() => app.store.dispatch(doAuthenticate())}
|
|
|
|
onReadyToLaunch={onDaemonReady}
|
|
|
|
/>
|
2017-07-19 23:05:08 +02:00
|
|
|
</Provider>,
|
2017-12-21 18:32:51 +01:00
|
|
|
document.getElementById('app')
|
2017-07-19 23:05:08 +02:00
|
|
|
);
|
2017-07-02 21:13:37 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-01 08:36:45 +02:00
|
|
|
init();
|