-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
191 lines (172 loc) · 5.02 KB
/
main.ts
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
/*
* MIT License (MIT)
* Copyright (c) 2018 Activeledger
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
import {
app,
BrowserWindow,
screen,
Menu,
MenuItemConstructorOptions,
MenuItem,
} from "electron";
import * as path from "path";
import * as url from "url";
let win, serve, splashScreen;
const args = process.argv.slice(1);
serve = args.some((val) => val === "--serve");
try {
require("dotenv").config();
} catch {
console.log("asar");
}
function createWindow() {
const electronScreen = screen;
// const size = electronScreen.getPrimaryDisplay().workAreaSize;
const size = {
width: 1420,
height: 840,
};
splashScreen = new BrowserWindow({
// x: 0,
// y: 0,
width: 500,
height: 400,
frame: false,
// icon: __dirname + "/src/desktopIcon.png"
icon: __dirname + "/src/assets/al-icon.png",
});
splashScreen.loadFile("splashscreen.html");
// Create the browser window.
win = new BrowserWindow({
minWidth: 1420,
minHeight: 510,
width: size.width,
height: size.height,
webPreferences: {
webviewTag: true,
webSecurity: false,
nodeIntegrationInWorker: true,
nodeIntegration: true,
allowRunningInsecureContent: serve ? true : false,
enableRemoteModule: true,
},
frame: false,
// icon: __dirname + "/src/desktopIcon.png",
icon: __dirname + "/src/assets/al-icon.png",
show: false,
});
// win.setMenu(null);
// If on MAC we need to add this menu to allow keyboard shortcuts
if (process.platform === "darwin") {
const template: MenuItemConstructorOptions[] = [
{
label: app.getName(),
submenu: [
{
label: "About Activeledger IDE",
},
{
type: "separator",
},
{
label: "Quit",
accelerator: "Command+Q",
click: function () {
app.quit();
},
},
],
},
{
label: "Edit",
submenu: [
{ role: "undo" },
{ role: "redo" },
{ type: "separator" },
{ role: "cut" },
{ role: "copy" },
{ role: "paste" },
{ role: "pasteAndMatchStyle" },
{ role: "delete" },
{ role: "selectAll" },
],
},
];
const menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
}
if (serve) {
require("electron-reload")(__dirname, {
electron: require(`${__dirname}/node_modules/electron`),
});
win.loadURL("http://localhost:4201");
} else {
win.loadURL(
url.format({
pathname: path.join(__dirname, "dist/index.html"),
protocol: "file:",
slashes: true,
})
);
}
win.once("ready-to-show", () => {
splashScreen.destroy();
win.show();
win.maximize();
if (process.mainModule.filename.indexOf("app.asar") === -1) {
win.webContents.openDevTools();
}
});
// Emitted when the window is closed.
win.on("closed", () => {
// Dereference the window object, usually you would store window
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null;
});
return win;
}
try {
app.allowRendererProcessReuse = true;
// 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);
// Quit when all windows are closed.
app.on("window-all-closed", () => {
// On OS X 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", () => {
// On OS X 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 (win === null) {
createWindow();
}
});
} catch (e) {
// Catch Error
// throw e;
}