-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
75 lines (61 loc) · 1.45 KB
/
index.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
'use strict';
const {
app,
BrowserWindow,
crashReporter
} = require('electron')
const fs = require('fs')
// report crashes to the Electron project
crashReporter.start({
productName: 'elon-musk-resume-builder',
companyName: 'JeremySarda.com',
submitURL: 'https://resume.jeremysarda.com/crash-report',
autoSubmit: true
});
// adds debug features like hotkeys for triggering dev tools and reload
require('electron-debug')();
var indexFile = `${__dirname}/index.html`;
if (process.env['NODE_ENV'] == 'dev') {
indexFile = "http://localhost:9999";
}
// 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 win = new BrowserWindow({
width: 850,
height: 1100,
minWidth: 425,
minHeight: 550,
titleBarStyle: 'hidden-inset'
});
if (process.env['NODE_ENV'] == 'dev') {
// we need to wait until browsersync is ready
setTimeout(function() {
win.loadURL(indexFile);
}, 5000);
} else {
win.loadURL(`file:${indexFile}`);
}
win.on('closed', onClosed);
// Only works on OS X
win.setAspectRatio(8.5 / 11, []);
return win;
}
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate-with-no-open-windows', () => {
if (!mainWindow) {
mainWindow = createMainWindow();
}
});
app.on('ready', () => {
mainWindow = createMainWindow();
});