-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
295 lines (276 loc) · 8.83 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
const { app, BrowserWindow, Menu, Tray, ipcMain, dialog, shell } = require('electron')
const Store = require('electron-store'); // 引入store
const path = require('path')
const package = require('./package.json')
const prompt = require('custom-electron-prompt')
const fs = require('fs');
// 清除启动时控制台的“Electron Security Warning (Insecure Content-Security-Policy)”报错信息
process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = 'true'
// 禁用当前应用程序的硬件加速
app.disableHardwareAcceleration();
const store = new Store(); // 开启electron-store
const menu = new Menu();
const isDarwin = process.platform === 'darwin' ? true : false;
let win, winSettings = null;
app.whenReady().then(() => {
// createTray();
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', () => {
if(process.platform !== 'darwin') app.quit();
});
const createWindow = () => {
Menu.setApplicationMenu(Menu.buildFromTemplate(menuTemplate));
// 启动恢复主窗口位置和大小
let isMax = store.get('isMax') ? true : false
, position = store.get('mainPosition')
, config = {};
config.minWidth = 820;
config.minHeight = 600;
config.icon = path.join(__dirname, './src/logo.png');
config.webPreferences = {
preload: path.join(__dirname, './src/preload.js'),
spellcheck: false
}
config.useContentSize = true;
config.show = false;
config.autoHideMenuBar = true;
win = new BrowserWindow(config);
if(isMax) win.maximize();
win.loadFile('./src/index.html');
// 打开开发者窗口
// win.webContents.openDevTools();
// 启动恢复主窗口位置和大小
if(!isMax && !('' == position || undefined == position)) {
win.setContentBounds(position)
}
win.on('ready-to-show', ()=>{
win.show();
});
// 关闭主窗口事件,记录窗口大小和位置
win.on('close', (e) => {
e.preventDefault(); // 阻止默认事件
let s = store.get('settings')
, closeAppConfirm = false;
if(undefined === s) closeAppConfirm = false;
else if(undefined === s.closeAppConfirm) closeAppConfirm = false;
else closeAppConfirm = s.closeAppConfirm;
if(!closeAppConfirm) {
store.set('isMax', win.isMaximized());
store.set('mainPosition', win.getContentBounds());
if(null != winSettings) winSettings.close(); // 关闭子窗口
// 这里窗口关闭时向渲染进程发送关闭消息,因为需要判断是否要保存 boxes
win.webContents.send('close');
} else {
dialog.showMessageBox({
type: 'info',
title: '确认关闭',
defaultId: 0,
message: '是否要退出 JsonBox ?',
buttons: ['取消', '退出']
}).then(result => {
// console.info(result);
// if(0 === result.response) {
// // 取消
// return;
// }
if(1 === result.response) {
// 确认退出
store.set('isMax', win.isMaximized());
store.set('mainPosition', win.getContentBounds());
if(null != winSettings) winSettings.close(); // 关闭子窗口
// 这里窗口关闭时向渲染进程发送关闭消息,因为需要判断是否要保存 boxes
win.webContents.send('close');
}
});
}
});
}
function openSettings() {
if(winSettings) {
winSettings.focus();
return;
}
let config = {
width: 800,
height: 600,
resizable: false,
icon: path.join(__dirname, './src/logo.png'),
webPreferences: {
preload: path.join(__dirname, './src/preload.js'),
spellcheck: false
},
show: false,
autoHideMenuBar: true
};
winSettings = new BrowserWindow(config);
winSettings.loadFile('./src/settings.html');
winSettings.on('close', () => {
winSettings = null;
});
winSettings.on('ready-to-show', () => {
winSettings.show();
});
}
function openAbout() {
dialog.showMessageBox({
type: 'info',
title: '关于',
message: package.name + ':' + package.version + '\n' + package.description + '\nnode:' + process.versions['node'] + '\nchrome:' + process.versions['chrome'] + '\nelectron:' + process.versions['electron']
});
}
const menuTemplate = [{
label: 'File',
submenu: [{
label: 'Save JSON',
accelerator: isDarwin ? 'Cmd+S' : 'Ctrl+S',
click: () => {
win.webContents.send('save');
}
}, {
type: 'separator'
}, {
// role: 'Exit',
label: 'Exit',
accelerator: process.platform === 'darwin' ? 'Cmd+Q' : 'Ctrl+Q',
click: () => { app.quit(); }
}]
}, {
label: 'Edit',
submenu: [{
label: 'Rename Tab',
accelerator: 'F2',
click: () => {
win.webContents.send('renameTab');
}
}, {
label: 'Search',
accelerator: isDarwin ? 'Cmd+F' : 'Ctrl+F',
click: () => {
win.webContents.send('search');
}
}, {
label: 'New Tab',
accelerator: isDarwin ? 'Cmd+T' : 'Ctrl+T',
click: () => {
win.webContents.send('newTab');
}
}, {
label: 'Close Tab',
accelerator: isDarwin ? 'Cmd+W' : 'Ctrl+W',
click: () => {
win.webContents.send('closeTab');
}
}]
}, {
label: 'Help',
submenu: [{
label: 'Config',
accelerator: 'Alt+S',
click: () => {
openSettings();
}
}, {
label: 'Reload App',
accelerator: isDarwin ? 'Cmd+R' : 'Ctrl+R',
click: () => { win.reload(); }
}, {
label: 'Toggle Developer Tools',
accelerator: isDarwin ? 'Alt+Cmd+I' : 'Alt+Shift+I',
click: () => {
if(win.webContents.isDevToolsOpened()) win.webContents.closeDevTools();
else win.webContents.openDevTools();
}
}, {
type: 'separator'
}, {
label: 'HomePage',
click: () => {
shell.openExternal('https://docs.r-xnoro.com/jsonbox/#/');
}
}, {
label: 'About',
click: () => {
openAbout();
}
}]
}];
const createTray = () => {
let tray = new Tray(path.join(__dirname, './src/logo.png'));
const menu = Menu.buildFromTemplate(trayMenuTemplate);
tray.setContextMenu(menu);
}
const trayMenuTemplate = [{
label: 'about',
type: 'normal',
click: function() {
openAbout();
}
}, {
label: 'quit',
type: 'normal',
click: function() {
app.quit();
}
}]
ipcMain.on('modifyTitle', (event, options) => {
let result = {}
, et = event;
// 这是修改 tab title 的弹框,需要把 win 作为父窗口
prompt(options, win)
.then((r) => {
if(r === null) {
result = {code: '0001'};
et.reply('modifyTitle-reply', result);
} else {
result = {code: '0000', body: r};
et.reply('modifyTitle-reply', result);
}
})
.catch(console.error);
// event.reply('modifyTitle-reply', result);
});
ipcMain.on('saveFile', (e, options, content, cb) => {
dialog.showSaveDialog(win, options).then(r => {
if(r.canceled) {
console.info('user canceled');
} else {
// console.info('file path is==%s', r.filePath);
fs.writeFile(r.filePath, content, (err) => {
if(err) e.reply('saveFile-reply', {code: '001'});
e.reply('saveFile-reply', {code: '0000', body: r.filePath});
})
}
});
});
ipcMain.on('openSettings', () => {
openSettings();
});
ipcMain.on('exitSettings', () => {
winSettings.close();
});
ipcMain.on('repository', (event) => {
let locale = app.getLocale()
, url = ''
// 使用ip的话要么自己维护一个ip库放在外部(太大,没必要放项目里),要么使用第三方,都需要进行网络交互
// 所以这里使用一个最粗略的方式“语言环境”来判断是否是中国大陆
if(locale.indexOf('zh-CN') == -1) {
url = 'https://github.com/rexlevin/jsonbox'
} else {
url = 'https://gitee.com/rexlevin/jsonbox'
}
event.reply('repository-reply', url);
});
ipcMain.on('saveSettings', (e, settings) => {
store.set('settings', JSON.parse(settings));
})
ipcMain.on('close-reply', (e, r) => {
app.exit();
});
ipcMain.on('saveBoxes', (e, boxes) => {
store.set('boxes', JSON.parse(boxes));
e.reply('saveBoxes-reply', 'ok');
});