2019-10-22 21:25:57 +02:00
|
|
|
const { app, BrowserWindow, globalShortcut } = require("electron");
|
2019-09-16 23:13:12 +02:00
|
|
|
const path = require("path");
|
|
|
|
const tidalUrl = "https://listen.tidal.com";
|
2019-10-30 21:43:52 +01:00
|
|
|
const trayModule = require("./scripts/tray");
|
|
|
|
const mediaKeysModule = require("./scripts/mediaKeys");
|
2019-09-16 23:13:12 +02:00
|
|
|
let mainWindow;
|
2019-10-30 21:34:26 +01:00
|
|
|
let icon = path.join(__dirname, "../assets/icon.png");
|
2019-09-16 23:13:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable live reload in development builds
|
|
|
|
*/
|
2019-10-20 22:47:01 +02:00
|
|
|
if (!app.isPackaged) {
|
|
|
|
require("electron-reload")(`${__dirname}`, {
|
|
|
|
electron: require(`${__dirname}/../node_modules/electron`),
|
|
|
|
});
|
|
|
|
}
|
2019-09-16 23:13:12 +02:00
|
|
|
|
|
|
|
function createWindow(options = {}) {
|
|
|
|
// Create the browser window.
|
|
|
|
mainWindow = new BrowserWindow({
|
|
|
|
x: options.x,
|
|
|
|
y: options.y,
|
|
|
|
width: 1024,
|
|
|
|
height: 800,
|
2019-10-30 21:34:26 +01:00
|
|
|
icon,
|
2019-10-22 21:25:57 +02:00
|
|
|
tray: true,
|
2019-09-16 23:13:12 +02:00
|
|
|
backgroundColor: options.backgroundColor,
|
|
|
|
webPreferences: {
|
|
|
|
affinity: "window",
|
|
|
|
preload: path.join(__dirname, "preload.js"),
|
|
|
|
plugins: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2019-10-20 22:47:01 +02:00
|
|
|
mainWindow.setMenuBarVisibility(false);
|
|
|
|
|
2019-09-16 23:13:12 +02:00
|
|
|
// load the Tidal website
|
|
|
|
mainWindow.loadURL(tidalUrl);
|
|
|
|
|
|
|
|
// run stuff after first load
|
|
|
|
mainWindow.webContents.once("did-finish-load", () => {});
|
|
|
|
|
|
|
|
// Emitted when the window is closed.
|
|
|
|
mainWindow.on("closed", function() {
|
|
|
|
mainWindow = null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function addGlobalShortcuts() {
|
2019-10-30 21:43:52 +01:00
|
|
|
Object.values(mediaKeysModule).forEach((key) => {
|
2019-10-22 21:25:57 +02:00
|
|
|
globalShortcut.register(key, () => {
|
|
|
|
mainWindow.webContents.send("globalKey", key);
|
|
|
|
});
|
|
|
|
});
|
2019-09-16 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method will be called when Electron has finished
|
|
|
|
// initialization and is ready to create browser windows.
|
|
|
|
// Some APIs can only be used after this event occurs.
|
|
|
|
app.on("ready", () => {
|
|
|
|
// window with white backround
|
|
|
|
createWindow();
|
|
|
|
addGlobalShortcuts();
|
2019-10-30 21:43:52 +01:00
|
|
|
trayModule.addTray({ icon });
|
|
|
|
trayModule.refreshTray();
|
2019-09-16 23:13:12 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
app.on("activate", function() {
|
|
|
|
// On OS X it's common to re-create a window in the app when the
|
|
|
|
// dock icon is clicked and there are no other windows open.
|
|
|
|
if (mainWindow === null) {
|
|
|
|
createWindow();
|
|
|
|
}
|
|
|
|
});
|