2017-06-08 02:56:52 +02:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import App from "component/app/index.js";
|
|
|
|
import SnackBar from "component/snackBar";
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
import store from "store.js";
|
2017-07-19 23:05:08 +02:00
|
|
|
import SplashScreen from "component/splash";
|
2017-11-13 22:02:23 +01:00
|
|
|
import { doDaemonReady } from "redux/actions/app";
|
|
|
|
import { doNavigate } from "redux/actions/navigation";
|
|
|
|
import { doDownloadLanguages } from "redux/actions/settings";
|
2017-06-24 10:57:37 +02:00
|
|
|
import * as types from "constants/action_types";
|
2017-12-05 09:04:00 +01:00
|
|
|
import amplitude from "amplitude-js";
|
2017-12-05 22:05:59 +01:00
|
|
|
import lbry from "lbry";
|
2017-12-06 17:32:21 +01:00
|
|
|
import "scss/all.scss";
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-12-06 17:32:21 +01:00
|
|
|
const env = process.env.NODE_ENV || "production";
|
2017-06-08 02:56:52 +02:00
|
|
|
const { remote, ipcRenderer, shell } = require("electron");
|
2017-12-07 13:52:22 +01:00
|
|
|
const contextMenu = remote.require("./main.js").contextMenu;
|
2017-06-08 02:56:52 +02:00
|
|
|
const app = require("./app");
|
2017-05-25 18:29:56 +02:00
|
|
|
|
2017-12-07 13:52:22 +01:00
|
|
|
// Workaround for https://github.com/electron-userland/electron-webpack/issues/52
|
|
|
|
if (process.env.NODE_ENV !== 'development') {
|
|
|
|
window.staticResourcesPath = require("path").join(remote.app.getAppPath(), "../static").replace(/\\/g, "\\\\");
|
|
|
|
} else {
|
|
|
|
window.staticResourcesPath = "";
|
|
|
|
}
|
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
window.addEventListener("contextmenu", event => {
|
|
|
|
contextMenu.showContextMenu(
|
|
|
|
remote.getCurrentWindow(),
|
|
|
|
event.x,
|
|
|
|
event.y,
|
2017-09-23 01:10:38 +02:00
|
|
|
env === "development"
|
2017-06-08 02:56:52 +02:00
|
|
|
);
|
|
|
|
event.preventDefault();
|
2017-03-17 12:41:01 +01: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-13 17:02:06 +02:00
|
|
|
ipcRenderer.on("open-menu", (event, uri) => {
|
|
|
|
if (uri && uri.startsWith("/help")) {
|
|
|
|
app.store.dispatch(doNavigate("/help"));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-09-14 09:36:41 +02:00
|
|
|
const dock = remote.app.dock;
|
|
|
|
|
2017-11-08 23:26:46 +01:00
|
|
|
ipcRenderer.on("window-is-focused", (event, data) => {
|
2017-09-14 09:36:41 +02:00
|
|
|
if (!dock) return;
|
|
|
|
app.store.dispatch({ type: types.WINDOW_FOCUSED });
|
|
|
|
dock.setBadge("");
|
|
|
|
});
|
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
document.addEventListener("click", event => {
|
|
|
|
var target = event.target;
|
|
|
|
while (target && target !== document) {
|
2017-12-05 09:04:00 +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)
|
|
|
|
let hrefParts = window.location.href.split("#");
|
2017-12-07 19:07:30 +01:00
|
|
|
let element = target.title || (target.text && target.text.trim());
|
2017-12-06 01:16:54 +01:00
|
|
|
if (element) {
|
2017-12-06 02:16:06 +01:00
|
|
|
amplitude.getInstance().logEvent("CLICK", {
|
|
|
|
target: element,
|
|
|
|
location:
|
|
|
|
hrefParts.length > 1 ? hrefParts[hrefParts.length - 1] : "/",
|
|
|
|
});
|
2017-12-06 01:16:54 +01:00
|
|
|
} else {
|
2017-12-06 02:16:06 +01:00
|
|
|
amplitude.getInstance().logEvent("UNMARKED_CLICK", {
|
|
|
|
location:
|
|
|
|
hrefParts.length > 1 ? hrefParts[hrefParts.length - 1] : "/",
|
|
|
|
});
|
2017-12-06 01:16:54 +01:00
|
|
|
}
|
2017-12-05 09:04:00 +01:00
|
|
|
}
|
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-08-08 11:36:14 +02:00
|
|
|
app.store.dispatch(doDownloadLanguages());
|
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
function onDaemonReady() {
|
2017-12-05 22:05:59 +01:00
|
|
|
lbry.status().then(info => {
|
2017-12-06 02:16:06 +01:00
|
|
|
amplitude.getInstance().init(
|
|
|
|
// Amplitude API Key
|
|
|
|
"0b130efdcbdbf86ec2f7f9eff354033e",
|
|
|
|
info.lbry_id,
|
|
|
|
null,
|
|
|
|
function() {
|
|
|
|
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-12-06 02:16:06 +01:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<div>
|
|
|
|
<App />
|
|
|
|
<SnackBar />
|
|
|
|
</div>
|
|
|
|
</Provider>,
|
2017-12-07 17:59:40 +01:00
|
|
|
document.getElementById('app')
|
2017-12-06 02:16:06 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2017-12-05 22:05:59 +01:00
|
|
|
});
|
2017-06-08 02:56:52 +02:00
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
if (window.sessionStorage.getItem("loaded") == "y") {
|
|
|
|
onDaemonReady();
|
|
|
|
} else {
|
2017-07-19 23:05:08 +02:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<SplashScreen onReadyToLaunch={onDaemonReady} />
|
|
|
|
</Provider>,
|
2017-12-06 17:32:21 +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();
|