-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
115 lines (91 loc) · 2.31 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
'use strict';
const path = require('path');
const fs = require('fs');
const electron = require('electron');
const menu = require('./menu');
const config = require('./config');
const app = electron.app;
// require('electron-debug')({enabled: true});
// require('electron-context-menu')();
let win;
let isQuitting = false;
const isAlreadyRunning = app.makeSingleInstance(() => {
if (win) {
if (win.isMinimized()) {
win.restore();
}
win.show();
}
});
if (isAlreadyRunning) {
app.quit();
}
function createMainWindow() {
const lastWindowState = config.get('lastWindowState');
const win = new electron.BrowserWindow({
title: app.getName(),
show: false,
x: lastWindowState.x,
y: lastWindowState.y,
width: lastWindowState.width,
height: lastWindowState.height,
icon: process.platform === 'linux' && path.join(__dirname, 'static/Icon.png'),
minWidth: 800,
minHeight: 700,
titleBarStyle: 'hidden-inset',
autoHideMenuBar: true,
backgroundColor: '#fff',
webPreferences: {
preload: path.join(__dirname, 'browser.js'),
nodeIntegration: false,
plugins: true
}
});
if (process.platform === 'darwin') {
win.setSheetOffset(40);
}
win.loadURL('https://radio.yandex.ru/');
win.on('close', e => {
if (!isQuitting) {
e.preventDefault();
if (process.platform === 'darwin') {
app.hide();
} else {
win.hide();
}
}
});
win.on('page-title-updated', e => {
e.preventDefault();
});
return win;
}
app.on('ready', () => {
win = createMainWindow();
menu.create(win);
electron.globalShortcut.register('MediaPlayPause', () => win.send('play'));
electron.globalShortcut.register('MediaNextTrack', () => win.send('next'));
const page = win.webContents;
const argv = require('minimist')(process.argv.slice(1));
page.on('dom-ready', () => {
page.insertCSS(fs.readFileSync(path.join(__dirname, 'browser.css'), 'utf8'));
if (argv.minimize) {
win.minimize();
} else {
win.show();
}
});
page.on('new-window', (e, url) => {
e.preventDefault();
electron.shell.openExternal(url);
});
});
app.on('activate', () => win.show());
app.on('before-quit', () => {
isQuitting = true;
electron.globalShortcut.unregister('MediaPlayPause');
electron.globalShortcut.unregister('MediaNextTrack');
if (!win.isFullScreen()) {
config.set('lastWindowState', win.getBounds());
}
});