grid-apps-cmms/app-el.js

110 lines
3.3 KiB
JavaScript
Raw Permalink Normal View History

2024-08-11 12:35:14 -04:00
const { app, shell, session, BrowserWindow } = require('electron');
2024-06-14 17:38:07 -04:00
const path = require('path');
const server = require('@gridspace/app-server');
2025-07-07 22:29:45 -04:00
const pkgd = app.isPackaged;
2024-06-14 17:38:07 -04:00
const basDir = __dirname;
const usrDir = app.getPath("userData");
const appDir = path.join(usrDir, 'gapp');
2024-06-14 17:38:07 -04:00
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('-', '')).indexOf('debugg') >= 0;
const devel = process.argv.slice(2).map(v => v.replaceAll('-', '')).indexOf('devel') >= 0;
2024-06-14 17:38:07 -04:00
2025-07-07 18:51:17 -04:00
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = true;
// Enable GPU/graphics acceleration for Linux (addresses WebGL issues)
// Equivalent to Chrome flags that fixed the rendering in Chrome browser
if (process.platform === 'linux') {
// CRITICAL: Override GPU blocklist - allows hardware acceleration on blocked GPUs
app.commandLine.appendSwitch('ignore-gpu-blocklist');
// Enable WebGL draft extensions (improves WebGL compatibility)
app.commandLine.appendSwitch('enable-webgl-draft-extensions');
// Force GPU acceleration for 2D/3D rendering
app.commandLine.appendSwitch('enable-gpu-rasterization');
// Optional: Try Vulkan if available (Chromium auto-falls back to OpenGL if not)
// Uncomment if you need Vulkan specifically, but most systems work without it:
app.commandLine.appendSwitch('enable-features', 'Vulkan');
}
2024-06-14 17:38:07 -04:00
server({
port: 5309,
2024-06-14 17:38:07 -04:00
apps: basDir,
data: datDir,
conf: cnfDir,
logs: logDir,
single: true,
2024-06-16 21:48:41 -04:00
electron: true,
2025-07-07 22:29:45 -04:00
pkgd,
2024-06-14 17:38:07 -04:00
debug
});
function createWindow() {
const mainWindow = new BrowserWindow({
2025-02-03 18:01:47 -05:00
width: 1600,
2024-06-14 17:38:07 -04:00
height: 900,
webPreferences: {
// contextIsolation: true,
// nodeIntegration: true,
// sandbox: true,
// preload: undefined
// nodeIntegration: true,
// contextIsolation: false
2024-06-14 17:38:07 -04:00
// preload: path.join(__dirname, 'preload.js')
}
});
const { webContents } = mainWindow;
mainWindow.loadURL('http://localhost:5309/kiri');
2024-07-10 18:57:24 -04:00
// default normal url navigation or page opens to happen outside Electron
webContents.setWindowOpenHandler((details) => {
// console.log('EXTERNAL', details);
shell.openExternal(details.url);
return { action: 'deny' }
});
2024-06-14 17:38:07 -04:00
2024-07-10 18:57:24 -04:00
// prevent "other" urls from opening inside Electron (alerts are problematic)
webContents.on('will-navigate', (event, url) => {
// console.log('DIVERT', url);
if (url.endsWith('/kiri') || url.endsWith('/kiri/')) {
return;
}
if (url.endsWith('/mesh') || url.endsWith('/mesh/')) {
return;
}
if (url.endsWith('/void') || url.endsWith('/void/')) {
return;
}
2024-07-10 18:57:24 -04:00
event.preventDefault();
shell.openExternal(url);
});
webContents.on('did-finish-load', () => {
// console.log('did finish load');
});
2024-06-14 17:38:07 -04:00
if (devel) {
console.log("opening developer tools");
webContents.openDevTools();
2024-06-14 17:38:07 -04:00
}
}
2024-08-11 12:35:14 -04:00
app.on('ready', () => {
session.defaultSession.clearCache().then(createWindow);
});
2024-06-14 17:38:07 -04:00
app.on('window-all-closed', () => {
app.quit();
2024-06-14 17:38:07 -04:00
});
2024-06-14 17:38:07 -04:00
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});