2017-06-08 02:56:52 +02:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import lbry from "./lbry.js";
|
|
|
|
import App from "component/app/index.js";
|
|
|
|
import SnackBar from "component/snackBar";
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
import store from "store.js";
|
|
|
|
import SplashScreen from "component/splash.js";
|
|
|
|
import AuthOverlay from "component/authOverlay";
|
|
|
|
import { doChangePath, doNavigate, doDaemonReady } from "actions/app";
|
|
|
|
import { toQueryString } from "util/query_params";
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
const { remote, ipcRenderer, shell } = require("electron");
|
|
|
|
const contextMenu = remote.require("./menu/context-menu");
|
|
|
|
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-08 02:56:52 +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-06-08 02:56:52 +02:00
|
|
|
window.addEventListener("popstate", (event, param) => {
|
|
|
|
const params = event.state;
|
|
|
|
const pathParts = document.location.pathname.split("/");
|
|
|
|
const route = "/" + pathParts[pathParts.length - 1];
|
|
|
|
const queryString = toQueryString(params);
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
let action;
|
|
|
|
if (route.match(/html$/)) {
|
|
|
|
action = doChangePath("/discover");
|
|
|
|
} else {
|
|
|
|
action = doChangePath(`${route}?${queryString}`);
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
app.store.dispatch(action);
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-06 09:25:14 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
ipcRenderer.on("open-uri-requested", (event, uri) => {
|
|
|
|
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-08 02:56:52 +02:00
|
|
|
document.addEventListener("click", event => {
|
|
|
|
var target = event.target;
|
|
|
|
while (target && target !== document) {
|
2017-06-08 23:15:34 +02: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-04-07 07:15:22 +02:00
|
|
|
const initialState = app.store.getState();
|
|
|
|
|
|
|
|
var init = function() {
|
2017-06-08 02:56:52 +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
|
|
|
|
app.store.dispatch(doDaemonReady());
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<div><AuthOverlay /><App /><SnackBar /></div>
|
|
|
|
</Provider>,
|
|
|
|
canvas
|
|
|
|
);
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
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();
|