-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
60 lines (49 loc) · 1.22 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
const { app, BrowserWindow } = require('electron');
const Project = require('./scripts/data/project/project_data');
const menu = require('./scripts/app/menu');
const path = require('path');
const Store = require('electron-store');
const store = new Store();
let win;
function createWindow() {
win = new BrowserWindow({
width: 1200,
height: 900,
minWidth: 400,
minHeight: 200,
tabbingIdentifier: 'tome',
titleBarStyle: 'hidden',
titleBarOverlay: true,
webPreferences: {
contextIsolation: true,
enableRemoteModule: false,
preload: path.join(__dirname, 'preload.js'),
},
icon: __dirname + '/build/tome.icns'
});
if (process.platform === 'darwin') {
app.dock.setIcon(path.join(__dirname, 'build/tome.png'));
}
win.loadFile('index.html');
// win.webContents.openDevTools();
menu.setWindow(win);
menu.buildMenu();
let project_path = store.get('project-path');
if (project_path) {
let project = new Project(win, project_path);
project.read();
}
}
app.whenReady().then(() => {
createWindow();
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});