-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
64 lines (51 loc) · 1.26 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
'use strict';
const electron = require('electron');
const fs = require('fs');
const path = require('path');
const config = require('./config');
const app = electron.app;
require('electron-debug')();
let mainWindow;
function onClosed() {
mainWindow = null;
}
function createMainWindow() {
const url = config.get('url');
const windowState = config.get('windowState');
const win = new electron.BrowserWindow({
title: app.getName(),
titleBarStyle: 'hidden-inset',
width: windowState.width,
height: windowState.height,
icon: path.join(__dirname, 'static/icon.png')
});
win.loadURL(url);
win.on('closed', onClosed);
win.webContents.on('did-navigate-in-page', (e, url) => {
config.set('url', url);
});
return win;
}
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (!mainWindow) {
mainWindow = createMainWindow();
}
});
app.on('ready', () => {
mainWindow = createMainWindow();
const page = mainWindow.webContents;
page.on('dom-ready', () => {
page.insertCSS(fs.readFileSync(path.join(__dirname, 'browser.css'), 'utf8'));
mainWindow.show();
});
});
app.on('before-quit', () => {
if (!mainWindow.isFullScreen()) {
config.set('windowState', mainWindow.getBounds());
}
});