forked from truevisionai/designer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
165 lines (123 loc) · 4.25 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
/*
* Copyright Truesense AI Solutions Pvt Ltd, All Rights Reserved.
*/
// Modules to control application life and create native browser window
const { app, BrowserWindow, ipcMain, Menu } = require( 'electron' );
const execFile = require( 'child_process' ).execFile;
const path = require( 'path' );
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let editorWindow;
const TITLE = "Truevision"
const MIN_WIDTH = 1280;
const MIN_HEIGHT = 980;
let openDevTools = false;
let showSplashScreen = true;
let loadLocahost = false;
// load opengl to fix line rendering issues
app.commandLine.appendSwitch( "use-angle", "gl" );
process.argv.forEach( function ( arg, index, array ) {
if ( arg.includes( "open-dev-tools" ) ) {
openDevTools = true;
} else if ( arg.includes( "disable-splash" ) ) {
showSplashScreen = false;
} else if ( arg.includes( "localhost" ) ) {
loadLocahost = true;
}
} );
function openEditorWindow () {
// Create the browser window.
editorWindow = new BrowserWindow( {
title: TITLE,
width: MIN_WIDTH,
height: MIN_HEIGHT,
minWidth: MIN_WIDTH,
minHeight: MIN_HEIGHT,
backgroundColor: '#ffffff',
icon: `file://${ __dirname }/dist/assets/icon.png`,
webPreferences: {
nodeIntegration: true
}
} );
if ( loadLocahost ) {
editorWindow.loadURL( `http://localhost:4200` );
} else {
editorWindow.loadURL( `file://${ __dirname }/dist/index.html` );
}
// Open the DevTools.
if ( openDevTools ) editorWindow.webContents.openDevTools();
// Emitted when the window is closed.
editorWindow.on( 'closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
editorWindow = null
} )
}
function openSplashWindow () {
// Create the browser window.
let splashWindow = new BrowserWindow( {
title: TITLE,
width: 720,
height: 405,
backgroundColor: '#ffffff',
resizable: false,
movable: false,
minimizable: false,
maximizable: false,
closable: true,
alwaysOnTop: true,
fullscreenable: false,
frame: false,
icon: `file://${ __dirname }/dist/assets/icon.png`,
webPreferences: {
nodeIntegration: true
}
} );
splashWindow.loadURL( `file://${ __dirname }/src/splash.html` );
// Open the DevTools.
if ( openDevTools ) splashWindow.webContents.openDevTools();
// Emitted when the window is closed.
splashWindow.on( 'closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
splashWindow = null;
} );
setTimeout( () => {
openEditorWindow();
splashWindow.close();
}, 5000 );
}
function createWindow () {
if ( showSplashScreen == true ) {
openSplashWindow();
} else {
openEditorWindow();
}
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on( 'ready', createWindow )
// app.commandLine.appendSwitch( 'remote-debugging-port', '9222' )
// Quit when all windows are closed.
app.on( 'window-all-closed', function () {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if ( process.platform !== 'darwin' ) {
app.quit()
}
} );
app.on( 'activate', function () {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if ( editorWindow === null ) {
createWindow()
}
} );
// helpers method to read current directory in angular
ipcMain.on( 'current-directory', ( event, arg ) => {
event.returnValue = __dirname;
} );
Menu.setApplicationMenu( null );