electronApi.js
4.72 KB
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
'use strict';
/**
* Split Electron API from the main code
*/
var electron;
try {
// eslint-disable-next-line global-require
electron = require('electron');
} catch (e) {
electron = null;
}
var os = require('os');
module.exports = {
getName: getName,
getPath: getPath,
getVersion: getVersion,
getVersions: getVersions,
isDev: isDev,
isElectron: isElectron,
isIpcChannelListened: isIpcChannelListened,
loadRemoteModule: loadRemoteModule,
onIpc: onIpc,
openUrl: openUrl,
sendIpc: sendIpc,
showErrorBox: showErrorBox,
};
function getApp() {
return getElectronModule('app');
}
function getName() {
var app = getApp();
if (!app) return null;
return 'name' in app ? app.name : app.getName();
}
function getElectronModule(name) {
if (!electron) {
return null;
}
if (electron[name]) {
return electron[name];
}
if (electron.remote) {
return electron.remote[name];
}
return null;
}
function getIpc() {
if (process.type === 'browser' && electron && electron.ipcMain) {
return electron.ipcMain;
}
if (process.type === 'renderer' && electron && electron.ipcRenderer) {
return electron.ipcRenderer;
}
return null;
}
function getPath(name) {
var app = getApp();
if (!app) return null;
try {
return app.getPath(name);
} catch (e) {
return null;
}
}
function getRemote() {
if (electron && electron.remote) {
return electron.remote;
}
return null;
}
function getVersion() {
var app = getApp();
if (!app) return null;
return 'version' in app ? app.version : app.getVersion();
}
function getVersions() {
return {
app: getName() + ' ' + getVersion(),
electron: 'Electron ' + process.versions.electron,
os: getOsVersion(),
};
}
function getOsVersion() {
var osName = os.type().replace('_', ' ');
var osVersion = os.release();
if (osName === 'Darwin') {
osName = 'macOS';
osVersion = getMacOsVersion();
}
return osName + ' ' + osVersion;
}
function getMacOsVersion() {
var release = Number(os.release().split('.')[0]);
return '10.' + (release - 4);
}
function isDev() {
var app = getApp();
if (app && app.isPackaged !== undefined) {
return app.isPackaged;
}
if (typeof process.execPath === 'string') {
return process.execPath.toLowerCase().endsWith('electron');
}
return process.env.NODE_ENV === 'development'
|| process.env.ELECTRON_IS_DEV === '1';
}
function isElectron() {
return process.type === 'browser' || process.type === 'renderer';
}
/**
* Return true if the process listens for the IPC channel
* @param {string} channel
*/
function isIpcChannelListened(channel) {
var ipc = getIpc();
return ipc ? ipc.listenerCount(channel) > 0 : false;
}
/**
* Try to load the module in the opposite process
* @param {string} moduleName
*/
function loadRemoteModule(moduleName) {
if (process.type === 'browser') {
getApp().on('web-contents-created', function (e, contents) {
var promise = contents.executeJavaScript(
'try {require("' + moduleName + '")} catch(e){}; void 0;'
);
// Do nothing on error, just prevent Unhandled rejection
if (promise && typeof promise.catch === 'function') {
promise.catch(function () {});
}
});
} else if (process.type === 'renderer') {
try {
getRemote().require(moduleName);
} catch (e) {
// Can't be required. Webpack?
}
}
}
/**
* Listen to async messages sent from opposite process
* @param {string} channel
* @param {function} listener
*/
function onIpc(channel, listener) {
var ipc = getIpc();
if (ipc) {
ipc.on(channel, listener);
}
}
/**
* Sent a message to opposite process
* @param {string} channel
* @param {any} message
*/
function sendIpc(channel, message) {
if (process.type === 'browser') {
sendIpcToRenderer(channel, message);
} else if (process.type === 'renderer') {
sendIpcToMain(channel, message);
}
}
function sendIpcToMain(channel, message) {
var ipc = getIpc();
if (ipc) {
ipc.send(channel, message);
}
}
function sendIpcToRenderer(channel, message) {
if (!electron || !electron.BrowserWindow) {
return;
}
electron.BrowserWindow.getAllWindows().forEach(function (wnd) {
if (wnd.webContents && !wnd.webContents.isDestroyed()) {
wnd.webContents.send(channel, message);
}
});
}
function showErrorBox(title, message) {
var dialog = getElectronModule('dialog');
if (!dialog) return;
dialog.showErrorBox(title, message);
}
/**
* @param {string} url
* @param {Function} [logFunction]
*/
function openUrl(url, logFunction) {
// eslint-disable-next-line no-console
logFunction = logFunction || console.error;
var shell = getElectronModule('shell');
if (!shell) return;
shell.openExternal(url).catch(logFunction);
}