2016-11-22 21:19:08 +01:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import lbry from './lbry.js';
|
2017-03-31 01:00:33 +02:00
|
|
|
import lbryio from './lbryio.js';
|
2016-12-29 10:41:28 +01:00
|
|
|
import lighthouse from './lighthouse.js';
|
2017-05-19 18:17:19 +02:00
|
|
|
import App from 'component/app/index.js';
|
2017-05-23 09:21:21 +02:00
|
|
|
import SnackBar from 'component/snackBar';
|
2017-04-07 07:15:22 +02:00
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import store from 'store.js';
|
2017-05-26 02:16:25 +02:00
|
|
|
import SplashScreen from 'component/splash.js';
|
2017-06-06 06:21:55 +02:00
|
|
|
import { AuthOverlay } from 'component/auth.js';
|
|
|
|
import { doChangePath, doNavigate, doDaemonReady } from 'actions/app';
|
|
|
|
import { doFetchDaemonSettings } from 'actions/settings';
|
|
|
|
import { doFileList } from 'actions/file_info';
|
|
|
|
import { toQueryString } from 'util/query_params';
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const { remote, ipcRenderer, shell } = require('electron');
|
2017-03-17 12:41:01 +01:00
|
|
|
const contextMenu = remote.require('./menu/context-menu');
|
2017-06-06 06:21:55 +02:00
|
|
|
const app = require('./app');
|
2017-05-25 18:29:56 +02:00
|
|
|
|
2017-03-08 09:56:34 +01:00
|
|
|
lbry.showMenuIfNeeded();
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
window.addEventListener('contextmenu', event => {
|
|
|
|
contextMenu.showContextMenu(
|
|
|
|
remote.getCurrentWindow(),
|
|
|
|
event.x,
|
|
|
|
event.y,
|
|
|
|
lbry.getClientSetting('showDeveloperMenu')
|
|
|
|
);
|
|
|
|
event.preventDefault();
|
2017-03-17 12:41:01 +01:00
|
|
|
});
|
|
|
|
|
2017-05-19 01:14:26 +02:00
|
|
|
window.addEventListener('popstate', (event, param) => {
|
2017-06-06 06:21:55 +02:00
|
|
|
const params = event.state;
|
|
|
|
const pathParts = document.location.pathname.split('/');
|
|
|
|
const route = '/' + pathParts[pathParts.length - 1];
|
|
|
|
const queryString = toQueryString(params);
|
|
|
|
|
|
|
|
let action;
|
|
|
|
if (route.match(/html$/)) {
|
|
|
|
action = doChangePath('/discover');
|
|
|
|
} else {
|
|
|
|
action = doChangePath(`${route}?${queryString}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
app.store.dispatch(action);
|
|
|
|
});
|
2017-05-06 09:25:14 +02:00
|
|
|
|
2017-05-09 22:58:48 +02:00
|
|
|
ipcRenderer.on('open-uri-requested', (event, uri) => {
|
2017-06-06 06:21:55 +02:00
|
|
|
if (uri && uri.startsWith('lbry://')) {
|
|
|
|
app.store.dispatch(doNavigate('/show', { uri }));
|
|
|
|
}
|
2017-05-09 22:58:48 +02:00
|
|
|
});
|
2017-05-08 11:04:11 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
document.addEventListener('click', event => {
|
|
|
|
var target = event.target;
|
|
|
|
while (target && target !== document) {
|
|
|
|
if (target.matches('a[href^="http"]')) {
|
|
|
|
event.preventDefault();
|
|
|
|
shell.openExternal(target.href);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
target = target.parentNode;
|
|
|
|
}
|
2017-05-21 18:15:41 +02:00
|
|
|
});
|
|
|
|
|
2017-04-07 07:15:22 +02:00
|
|
|
const initialState = app.store.getState();
|
|
|
|
|
|
|
|
var init = function() {
|
2017-06-06 06:21:55 +02:00
|
|
|
function onDaemonReady() {
|
|
|
|
window.sessionStorage.setItem('loaded', 'y'); //once we've made it here once per session, we don't need to show splash again
|
|
|
|
const actions = [];
|
|
|
|
|
|
|
|
app.store.dispatch(doDaemonReady());
|
|
|
|
app.store.dispatch(doChangePath('/discover'));
|
|
|
|
app.store.dispatch(doFetchDaemonSettings());
|
|
|
|
app.store.dispatch(doFileList());
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<div>{lbryio.enabled ? <AuthOverlay /> : ''}<App /><SnackBar /></div>
|
|
|
|
</Provider>,
|
|
|
|
canvas
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window.sessionStorage.getItem('loaded') == 'y') {
|
|
|
|
onDaemonReady();
|
|
|
|
} else {
|
|
|
|
ReactDOM.render(<SplashScreen onLoadDone={onDaemonReady} />, canvas);
|
|
|
|
}
|
2016-03-14 23:05:24 +01:00
|
|
|
};
|
|
|
|
|
2017-04-01 08:36:45 +02:00
|
|
|
init();
|