138 lines
3.6 KiB
JavaScript
138 lines
3.6 KiB
JavaScript
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";
|
|
import AuthOverlay from "component/authOverlay";
|
|
import { doChangePath, doNavigate, doDaemonReady } from "actions/app";
|
|
import { toQueryString } from "util/query_params";
|
|
import { selectBadgeNumber } from "selectors/app";
|
|
import * as types from "constants/action_types";
|
|
|
|
const env = ENV;
|
|
const { remote, ipcRenderer, shell } = require("electron");
|
|
const contextMenu = remote.require("./menu/context-menu");
|
|
const app = require("./app");
|
|
|
|
lbry.showMenuIfNeeded();
|
|
|
|
window.addEventListener("contextmenu", event => {
|
|
contextMenu.showContextMenu(
|
|
remote.getCurrentWindow(),
|
|
event.x,
|
|
event.y,
|
|
lbry.getClientSetting("showDeveloperMenu")
|
|
);
|
|
event.preventDefault();
|
|
});
|
|
|
|
window.addEventListener("popstate", (event, param) => {
|
|
event.preventDefault();
|
|
|
|
const hash = document.location.hash;
|
|
let action;
|
|
|
|
if (hash !== "") {
|
|
const url = hash.split("#")[1];
|
|
const { params, scrollY } = event.state || {};
|
|
const queryString = toQueryString(params);
|
|
|
|
app.store.dispatch(doChangePath(`${url}?${queryString}`, { scrollY }));
|
|
} else {
|
|
app.store.dispatch(doChangePath("/discover"));
|
|
}
|
|
});
|
|
|
|
ipcRenderer.on("open-uri-requested", (event, uri) => {
|
|
if (uri && uri.startsWith("lbry://")) {
|
|
app.store.dispatch(doNavigate("/show", { uri }));
|
|
}
|
|
});
|
|
|
|
ipcRenderer.on("open-menu", (event, uri) => {
|
|
if (uri && uri.startsWith("/help")) {
|
|
app.store.dispatch(doNavigate("/help"));
|
|
}
|
|
});
|
|
|
|
document.addEventListener("click", event => {
|
|
var target = event.target;
|
|
while (target && target !== document) {
|
|
if (
|
|
target.matches('a[href^="http"]') ||
|
|
target.matches('a[href^="mailto"]')
|
|
) {
|
|
event.preventDefault();
|
|
shell.openExternal(target.href);
|
|
return;
|
|
}
|
|
target = target.parentNode;
|
|
}
|
|
});
|
|
|
|
const application = remote.app;
|
|
const dock = application.dock;
|
|
const win = remote.getCurrentWindow();
|
|
|
|
// Tear down previous event listeners when reload
|
|
win.removeAllListeners();
|
|
|
|
// Clear the badge when the window is focused
|
|
win.on("focus", () => {
|
|
if (!dock) return;
|
|
|
|
app.store.dispatch({ type: types.WINDOW_FOCUSED });
|
|
dock.setBadge("");
|
|
});
|
|
|
|
const updateProgress = () => {
|
|
const state = app.store.getState();
|
|
const progress = selectTotalDownloadProgress(state);
|
|
|
|
win.setProgressBar(progress || -1);
|
|
};
|
|
|
|
const initialState = app.store.getState();
|
|
|
|
// import whyDidYouUpdate from "why-did-you-update";
|
|
// if (env === "development") {
|
|
// /*
|
|
// https://github.com/garbles/why-did-you-update
|
|
// "A function that monkey patches React and notifies you in the console when
|
|
// potentially unnecessary re-renders occur."
|
|
//
|
|
// Just checks if props change between updates. Can be fixed by manually
|
|
// adding a check in shouldComponentUpdate or using React.PureComponent
|
|
// */
|
|
// whyDidYouUpdate(React);
|
|
// }
|
|
|
|
var init = function() {
|
|
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());
|
|
|
|
ReactDOM.render(
|
|
<Provider store={store}>
|
|
<div><AuthOverlay /><App /><SnackBar /></div>
|
|
</Provider>,
|
|
canvas
|
|
);
|
|
}
|
|
|
|
if (window.sessionStorage.getItem("loaded") == "y") {
|
|
onDaemonReady();
|
|
} else {
|
|
ReactDOM.render(
|
|
<Provider store={store}>
|
|
<SplashScreen onReadyToLaunch={onDaemonReady} />
|
|
</Provider>,
|
|
canvas
|
|
);
|
|
}
|
|
};
|
|
|
|
init();
|