Skip to content

Commit 66f10fa

Browse files
committed
Extract exec from menu.js
1 parent 24c529a commit 66f10fa

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

ipc/exec.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const { ipcMain, ipcRenderer } = require('electron')
2+
3+
const consumer = require('./consumer')
4+
5+
const isMainProcess = typeof ipcMain !== 'undefined'
6+
7+
const exec = (commandId, args = {}) => {
8+
if (isMainProcess) {
9+
consumer(commandId, args)
10+
} else {
11+
ipcRenderer.send('main:command', { commandId, args })
12+
}
13+
}
14+
15+
module.exports = exec

menu.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
1-
const { ipcMain, ipcRenderer } = require('electron')
21
const path = require('path')
32
const url = require('url')
43
const os = require('os')
54

65
const Menu = require('electron').Menu || require('electron').remote.Menu
76
const app = require('electron').app || require('electron').remote.app
87

9-
const consumer = require('./ipc/consumer')
108
const { getServerUrl } = require('./utils')
11-
12-
const isMainProcess = typeof ipcMain !== 'undefined'
13-
14-
function exec (commandId, args = {}) {
15-
if (isMainProcess) {
16-
consumer(commandId, args)
17-
} else {
18-
ipcRenderer.send('main:command', { commandId, args })
19-
}
20-
}
9+
const exec = require('./ipc/exec')
2110

2211
const template = [
2312
{

0 commit comments

Comments
 (0)