File tree 2 files changed +16
-12
lines changed
2 files changed +16
-12
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
- const { ipcMain, ipcRenderer } = require ( 'electron' )
2
1
const path = require ( 'path' )
3
2
const url = require ( 'url' )
4
3
const os = require ( 'os' )
5
4
6
5
const Menu = require ( 'electron' ) . Menu || require ( 'electron' ) . remote . Menu
7
6
const app = require ( 'electron' ) . app || require ( 'electron' ) . remote . app
8
7
9
- const consumer = require ( './ipc/consumer' )
10
8
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' )
21
10
22
11
const template = [
23
12
{
You can’t perform that action at this time.
0 commit comments