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
const { BrowserWindow } = require('electron');
const { join } = require('path');
const { language, translate } = require('../eazax/editor-main-util');
const { calcWindowPosition } = require('../eazax/window-util');
/** 扩展名称 */
const EXTENSION_NAME = translate('name');
/**
* 面板管理器 (主进程)
*/
const PanelManager = {
/**
* 面板实例
* @type {BrowserWindow}
*/
settings: null,
/**
* 打开设置面板
*/
openSettingsPanel() {
// 已打开则直接展示
if (PanelManager.settings) {
PanelManager.settings.show();
return;
}
// 窗口尺寸和位置
const winSize = [500, 346],
winPos = calcWindowPosition(winSize, 'center');
// 创建窗口
const win = PanelManager.settings = new BrowserWindow({
width: winSize[0],
height: winSize[1],
minWidth: winSize[0],
minHeight: winSize[1],
x: winPos[0],
y: winPos[1] - 100,
useContentSize: true,
frame: true,
title: `${EXTENSION_NAME} | Cocos Creator`,
autoHideMenuBar: true,
resizable: true,
minimizable: false,
maximizable: false,
fullscreenable: false,
skipTaskbar: false,
alwaysOnTop: true,
hasShadow: true,
show: false,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
},
});
// 就绪后(展示,避免闪烁)
win.on('ready-to-show', () => win.show());
// 关闭后
win.on('closed', () => (PanelManager.settings = null));
// 监听按键
win.webContents.on('before-input-event', (event, input) => {
if (input.key === 'Escape') PanelManager.closeSettingsPanel();
});
// 调试用的 devtools
// win.webContents.openDevTools({ mode: 'detach' });
// 加载页面
const path = join(__dirname, '../renderer/settings/index.html');
win.loadURL(`file://${path}?lang=${language}`);
},
/**
* 关闭面板
*/
closeSettingsPanel() {
if (!PanelManager.settings) {
return;
}
PanelManager.settings.hide();
PanelManager.settings.close();
PanelManager.settings = null;
},
};
module.exports = PanelManager;