forked from mike-goodwin/owasp-threat-dragon-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
53 lines (43 loc) · 1.17 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
'use strict';
const path = require('path');
const electron = require('electron');
const app = electron.app;
const setupEvents = require('./config/squirrel');
if (setupEvents.handleSquirrelEvent(app)) {
// squirrel event handled and app will exit in 1000ms, so don't do anything else
return;
}
// prevent window being garbage collected
let mainWindow;
function onClosed() {
// dereference the window
// for multiple windows store them in an array
mainWindow = null;
}
function createMainWindow() {
const { width, height } = electron.screen.getPrimaryDisplay().workAreaSize
var window = new electron.BrowserWindow({
title: "OWASP Threat Dragon",
icon: path.join(__dirname, './content/icons/png/64x64.png'),
width: width,
height: height
});
window.loadURL(`file://${__dirname}/index.html`);
window.on('closed', onClosed);
window.webContents.on('new-window', function (e, url) {
e.preventDefault();
require('electron').shell.openExternal(url);
});
return window;
}
app.on('window-all-closed', () => {
app.quit();
});
app.on('activate', () => {
if (!mainWindow) {
mainWindow = createMainWindow();
}
});
app.on('ready', () => {
mainWindow = createMainWindow();
});