-
-
Notifications
You must be signed in to change notification settings - Fork 144
/
app-el.js
83 lines (72 loc) · 2.33 KB
/
app-el.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
const { app, shell, session, BrowserWindow } = require('electron');
const path = require('path');
const server = require('@gridspace/app-server');
const basDir = __dirname;
const usrDir = app.getPath("userData");
const appDir = path.join(usrDir, 'gapp');
const cnfDir = path.join(appDir, 'conf');
const logDir = path.join(appDir, 'logs');
const datDir = path.join(appDir, 'data');
const debug = process.argv.slice(2).map(v => v.replaceAll('-', '')).contains('debugg');
const devel = process.argv.slice(2).map(v => v.replaceAll('-', '')).contains('devel');
// console.log({ appDir, usrDir, logDir, datDir, basDir });
// console.log({ argv: process.argv, debug, devel });
// console.log({
// cwd: process.cwd(),
// dir: require('fs').readdirSync('.'),
// out: require('fs').readdirSync(appDir),
// ___: require('fs').readdirSync(basDir)
// });
server({
port: 5309,
apps: basDir,
data: datDir,
conf: cnfDir,
logs: logDir,
cache: path.join(basDir, "data", "cache"),
single: true,
electron: true,
debug
});
function createWindow() {
const mainWindow = new BrowserWindow({
width: 1200,
height: 900,
webPreferences: {
// preload: path.join(__dirname, 'preload.js')
}
});
mainWindow.loadURL('http://localhost:5309/kiri');
// default normal url navigation or page opens to happen outside Electron
mainWindow.webContents.setWindowOpenHandler((details) => {
// console.log('EXTERNAL', details);
shell.openExternal(details.url);
return { action: 'deny' }
});
// prevent "other" urls from opening inside Electron (alerts are problematic)
mainWindow.webContents.on('will-navigate', (event, url) => {
// console.log('DIVERT', url);
if (url.endsWith('/mesh') || url.endsWith('/kiri')) {
return;
}
event.preventDefault();
shell.openExternal(url);
});
if (devel) {
console.log("opening developer tools");
mainWindow.webContents.openDevTools();
}
}
app.on('ready', () => {
session.defaultSession.clearCache().then(createWindow);
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});