-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.js
90 lines (80 loc) · 1.85 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
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
const { app, dialog, BrowserWindow, Menu } = require('electron');
require('./server');
function createWindow () {
let win = new BrowserWindow({
width: 560,
height: 700,
webPreferences: {
nodeIntegration: true
}
})
win.loadFile('index.html');
}
app.on('ready', createWindow)
function selectDirectory() {
dialog.showOpenDialog(app.win, {
properties: ['openDirectory']
}, ([path] = []) => {
if (path) {
global.samplePath = path;
global.socket.loadSamples();
console.log(global.samplePath);
}
});
}
function save() {
dialog.showSaveDialog(app.win, {
filters: [{name: 'gull', extensions: ['gull']}]
}, (filename) => {
global.socket.requestSave(filename);
});
}
function open() {
dialog.showOpenDialog(app.win, {
filters: [{name: 'gull', extensions: ['gull']}]
}, ([path] = []) => {
if (path) {
global.socket.openFile(path);
};
})
}
const menuTemplate = [
...(process.platform === 'darwin' ? [{
label: app.getName(),
submenu: [
{ role: 'about' },
{ type: 'separator' },
{ role: 'services' },
{ type: 'separator' },
{ role: 'hide' },
{ role: 'hideothers' },
{ role: 'unhide' },
{ type: 'separator' },
{ role: 'quit' }
],
}] : []),
{
label: 'File',
submenu: [
{ label: 'Select Sample Folder', click: selectDirectory },
{ label: 'Open', click: open },
{ label: 'Save', click: save }
]
},
{
label: 'View',
submenu: [
{ role: 'reload' },
{ role: 'forcereload' },
{ role: 'toggledevtools' },
{ type: 'separator' },
{ role: 'resetzoom' },
{ role: 'zoomin' },
{ role: 'zoomout' },
{ type: 'separator' },
{ role: 'togglefullscreen' }
]
},
];
const menu = Menu.buildFromTemplate(menuTemplate);
Menu.setApplicationMenu(menu);