-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
301 lines (271 loc) · 7.54 KB
/
main.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
const { app, BrowserWindow, globalShortcut, Menu, ipcMain, dialog, Notification, BrowserView } = require('electron')
const { autoUpdater } = require("electron-updater")
// 保持对window对象的全局引用,如果不这么做的话,当JavaScript对象被
// 垃圾回收的时候,window对象将会自动的关闭
let win
let child
function createWindow () {
// 创建浏览器窗口。
win = new BrowserWindow({
minWidth: 1300,
minHeight: 800,
icon: 'src/assets/favicon.icns',
title: '听客来',
show: false, // 全屏时,需要先关闭
webPreferences: {
nodeIntegration: true, // 是否集成Node:默认不开启。不开启的话,node有关系的代码无法识别。
contextIsolation: false
},
})
Menu.setApplicationMenu(setApplicationMenuTemplate())
win.maximize()
win.show()
// 加载index.html文件
win.loadURL('https://www.tingkelai.com/tingkelai/')
// 当 window 被关闭,这个事件会被触发。
win.on('closed', () => {
// 取消引用 window 对象,如果你的应用支持多窗口的话,
// 通常会把多个 window 对象存放在一个数组里面,
// 与此同时,你应该删除相应的元素。
win = null
})
child = new BrowserWindow({
parent: win,
modal: true,
show: false,
frame: false,
width: 620,
height: 360,
minWidth: 620,
minHeight: 330,
resizable: false,
webPreferences: {
nodeIntegration: true,
contextIsolation: false
},
})
child.loadFile('./src/pages/about/versionMessage.html')
// child.webContents.openDevTools() // 打开调试控制台
}
// Electron 会在初始化后并准备
// 创建浏览器窗口时,调用这个函数。
// 部分 API 在 ready 事件触发后才能使用。
app.on('ready', () => {
console.log('ready')
createWindow()
registerShortcut() // 注册快捷键
autoUpdate() // 自动更新
setContextmenu(win.webContents) // 设置右击菜单
isDomReady(win.webContents) // 刷新后 dom 加载完成执行的事件
setTheLock() // 获取设备锁,当打开第二个客户端时
})
// 当全部窗口关闭时退出。
app.on('window-all-closed', () => {
// 注销所有快捷键
globalShortcut.unregisterAll()
// 在 macOS 上,除非用户用 Cmd + Q 确定地退出,
// 否则绝大部分应用及其菜单栏会保持激活。
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
console.log('activate')
// 在macOS上,当单击dock图标并且没有其他窗口打开时,
// 通常在应用程序中重新创建一个窗口。
if (win === null) {
createWindow()
registerShortcut() // 注册快捷键
setContextmenu(win.webContents) // 设置右击菜单
isDomReady(win.webContents) // 刷新后 dom 加载完成执行的事件
}
})
ipcMain.on('close', () => {
child.hide()
})
/** 当运行第二个实例时 */
function setTheLock() {
const gotTheLock = app.requestSingleInstanceLock() // 此方法的返回值表示你的应用程序实例是否成功取得了锁。 return Boolean
if (!gotTheLock) {
// 没有取得锁,则关闭应用
app.quit()
} else {
app.on('second-instance', () => {
// 当运行第二个实例时,则打开第一个实例
if (win) {
win.focus()
}
})
}
}
/** 在实例加载成功后,执行的脚本 */
function behindInstanceJavaScript(contents) {
contents.executeJavaScript(`
const getMac = require('getmac');
window.isElectron = true; // 表示 electron 客户端
let theMac = getMac.default().replace(/:/g, '-');
console.log('theMac', theMac)
window.mac = theMac
// 捕获外部链接
const {shell} = require('electron');
// 这个事件名称很重要
window.addEventListener('externalLink', function (e) {
shell.openExternal(e.detail.href)
})
// 使用 node 方法
// console.log(getMac.default().replace(/:/g, '-').toLocaleUpperCase())
// console.log(getMac.default())
// const os = require('os')
// const networkInterfaces = os.networkInterfaces();
// console.log(networkInterfaces)
// const list = networkInterfaces.WLAN
// console.log(list)
// if (list && list.length > 0) window.mac = list[0].mac.replace(/:/g, '-')
// console.log(list[0].mac.replace(/:/g, '-'))
`)
}
/** 注册快捷键 */
function registerShortcut() {
globalShortcut.register('CommandOrControl+P', () => {
// 打开开发者工具
win.webContents.openDevTools()
})
if (!globalShortcut.isRegistered('CommandOrControl+P')) {
globalShortcut.register('CommandOrControl+P', () => {
// 打开开发者工具
win.webContents.openDevTools()
})
}
}
/** 设置菜单栏 */
function setApplicationMenuTemplate() {
let template = [
{
label: '关于',
click: () => {
aboutDialog()
}
},
{
label: '控制台',
click: () => {
win.webContents.openDevTools()
}
},
]
console.log(process.platform)
if (process.platform === 'darwin') {
template = [
{
label: '听客来',
submenu: [
{
label: '关于',
click: () => {
aboutDialog()
}
},
{
label: '控制台',
click: () => {
win.webContents.openDevTools()
}
},
]
},
{
label: '编辑',
submenu: [
{
label: '撤销',
accelerator: 'Command+Z',
role: 'undo'
},
{
label: '重做',
accelerator: 'Shift+Command+Z',
role: 'redo'
},
{
label: '剪切',
accelerator: 'Command+X',
role: 'cut'
},
{
label: '复制',
accelerator: 'Command+C',
role: 'copy'
},
{
label: '粘贴',
accelerator: 'Command+V',
role: 'paste'
},
{
label: '全选',
accelerator: 'Command+A',
role: 'selectall'
}
]
}
]
}
return Menu.buildFromTemplate(template)
}
/**设置右击菜单栏 */
function setMenuTemplate() {
const template = [
{
label: '复制',
accelerator: 'CommandOrControl+C',
role: 'copy',
},
{
label: '粘贴',
accelerator: 'CommandOrControl+V',
role: 'paste',
},
{
label: '刷新',
accelerator: 'CommandOrControl+R',
role: 'reload',
}
]
return Menu.buildFromTemplate(template)
}
/** 右击事件 */
function setContextmenu(contents) {
contents.on('context-menu', (e, params) => {
e.preventDefault()
const menu = setMenuTemplate()
menu.popup()
})
}
/** webcontents dom加载完成后调用 */
function isDomReady(contents) {
contents.on('dom-ready', () => {
behindInstanceJavaScript(contents)
})
}
/** 显示更新弹框 */
function autoUpdate() {
autoUpdater.checkForUpdates()
// autoUpdater.on('update-downloaded', function (info) {
// const notify = new Notification({
// title: `听客来V${info.version} 已准备就绪!`,
// body: `请退出当前应用,以便完成更新!`
// });
// notify.show();
// });
// autoUpdater.on('update-available', () => {
// const notify = new Notification({
// title: `有更新`,
// body: `有更新`
// });
// notify.show();
// })
}
/** 显示关于dialog */
function aboutDialog() {
child.show()
}