forked from MaverickMartyn/youtube-music-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
154 lines (138 loc) · 5.38 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const { app, BrowserWindow, ipcMain, globalShortcut, dialog } = require('electron')
const { mmGetLyrics } = require('./src/musixMatch.js')
const log = require('electron-log');
const { autoUpdater } = require("electron-updater")
const Store = require('electron-store');
const store = new Store();
autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = 'info';
log.info('App starting...');
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
let settingsWin
function createWindow () {
if (store.get('last-update-info') === true) {
// Show changelog
var last_update_info = store.get('last-update-info');
dialog.showMessageBox({title: last_update_info.ver + ' changelog', buttons: ['Cool!'], message: info.releaseNotes}, function (response) {
store.set('show-changelog-on-startup', false);
});
}
autoUpdater.on('update-downloaded', function (info) {
dialog.showMessageBox({title: 'Update '+info.version+' available', buttons: ['Install now', 'Install on next launch'], message: 'An update is available. Do you want to install '+info.version+' now?<br /> '+info.releaseNotes}, function (response) {
store.set('last-update-info', info);
store.set('show-changelog-on-startup', true);
if (response === 0) {
autoUpdater.quitAndInstall(false, true);
}
})
});
autoUpdater.checkForUpdatesAndNotify();
// Create the browser window.
win = new BrowserWindow({ width: 800, height: 600, frame: false })
// and load the index.html of the app.
// win.loadURL(`https://music.youtube.com`)
win.loadURL(`file://${__dirname}/index.html`)
// Open the DevTools.
// win.webContents.openDevTools()
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
var registered = globalShortcut.register('medianexttrack', function () {
win.webContents.send("media:next");
});
if (!registered) {
console.log('medianexttrack registration failed');
} else {
console.log('medianexttrack registration bound!');
}
registered = globalShortcut.register('mediaprevioustrack', function () {
win.webContents.send("media:previous");
});
if (!registered) {
console.log('mediaprevioustrack registration failed');
} else {
console.log('mediaprevioustrack registration bound!');
}
registered = globalShortcut.register('mediaplaypause', function () {
win.webContents.send("media:playpause");
});
if (!registered) {
console.log('mediaplaypause registration failed');
} else {
console.log('mediaplaypause registration bound!');
}
}
// 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', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
// Quit app when signal is recieved.
ipcMain.on('win:quit', (event) => {
BrowserWindow.fromWebContents(event.sender).close();
})
ipcMain.on('win:toggle-maximize', (event) => {
var bw = BrowserWindow.fromWebContents(event.sender);
if (bw.isMaximized()) {
bw.unmaximize();
}
else {
bw.maximize();
}
event.sender.send("win:toggled-maximize", bw.isMaximized());
})
ipcMain.on('win:minimize', (event) => { BrowserWindow.fromWebContents(event.sender).minimize() })
ipcMain.on('win:togglefullscreen', (event, forcedValue) => {
var bw = BrowserWindow.fromWebContents(event.sender)
if (!!forcedValue) {
bw.setFullScreen(forcedValue);
}
else {
bw.setFullScreen(!bw.isFullScreen());
}
event.sender.send("win:toggled-fullscreen", bw.isFullScreen());
})
ipcMain.on('win:toggled-fullscreen', (event, args) => {
win.webContents.send("win:toggled-fullscreen", args);
})
ipcMain.on('ytm:track-changed', (event, args) => { mmGetLyrics(args).catch((err) => console.log(err)).then((data) => {
var parseString = require('xml2js').parseString;
parseString(data, function (err, result) {
event.sender.send("mm:lyrics-changed", result)
});
});
})
app.on('activate', () => {
// On macOS 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 (win === null) {
createWindow()
}
})
ipcMain.on('app:open-settings', (event, arg) => {
createSettingsWindow();
})
function createSettingsWindow () {
autoUpdater.checkForUpdatesAndNotify();
// Create the browser window.
settingsWin = new BrowserWindow({ width: 800, height: 600, frame: false })
// and load the index.html of the app.
settingsWin.loadURL(`file://${__dirname}/settings.html`)
// Emitted when the window is closed.
settingsWin.on('closed', () => {
settingsWin = null
})
}