1
- import {
2
- app ,
3
- BrowserWindow ,
4
- Tray ,
5
- Menu
6
- } from 'electron' ;
7
- import installExtension , {
8
- REACT_DEVELOPER_TOOLS
9
- } from 'electron-devtools-installer' ;
10
- import {
11
- enableLiveReload
12
- } from 'electron-compile' ;
1
+ import { app , BrowserWindow , Tray , Menu } from 'electron' ;
2
+ import installExtension , { REACT_DEVELOPER_TOOLS } from 'electron-devtools-installer' ;
3
+ import { enableLiveReload } from 'electron-compile' ;
13
4
14
5
import * as path from 'path' ;
15
6
16
- import {
17
- reloadConfig
18
- } from './main/bootstrap' ;
7
+ import { state } from './main/state' ;
8
+ import { load } from './main/layouts' ;
9
+
10
+ load ( ) ;
19
11
20
12
// Keep a global reference of the window object, if you don't, the window will
21
13
// be closed automatically when the JavaScript object is garbage collected.
22
14
let mainWindow ;
23
15
24
16
const isDevMode = process . execPath . match ( / [ \\ / ] e l e c t r o n / ) ;
25
17
26
- if ( isDevMode ) enableLiveReload ( {
27
- strategy : 'react-hmr'
28
- } ) ;
18
+ if ( isDevMode )
19
+ enableLiveReload ( {
20
+ strategy : 'react-hmr'
21
+ } ) ;
29
22
30
23
let tray = null ;
31
24
32
25
const createMainWindow = async ( ) => {
33
26
// Create the browser window.
34
27
const window = new BrowserWindow ( {
35
28
width : 1280 ,
36
- height : 720 ,
29
+ height : 720
37
30
} ) ;
38
31
39
32
// and load the index.html of the app.
@@ -58,7 +51,8 @@ const createMainWindow = async () => {
58
51
59
52
function createTray ( ) {
60
53
tray = new Tray ( path . join ( __dirname , '..' , 'assets' , 'icon.png' ) ) ;
61
- const contextMenu = Menu . buildFromTemplate ( [ {
54
+ const contextMenu = Menu . buildFromTemplate ( [
55
+ {
62
56
label : 'Settings' ,
63
57
click ( ) {
64
58
createMainWindow ( ) ;
@@ -67,15 +61,15 @@ function createTray() {
67
61
{
68
62
label : 'Reload Configuration' ,
69
63
click ( ) {
70
- reloadConfig ( ) ;
64
+ load ( ) ;
71
65
}
72
66
} ,
73
67
{
74
68
label : 'Exit' ,
75
69
click ( ) {
76
70
app . quit ( ) ;
77
71
}
78
- } ,
72
+ }
79
73
] ) ;
80
74
tray . setToolTip ( 'Deckish' ) ;
81
75
tray . setContextMenu ( contextMenu ) ;
0 commit comments