5a98ae4d34
- desktop/main.js: grant media (camera/mic), display-capture, notifications, clipboard, fullscreen, pointerLock for the app origin (Electron denies these by default, which silently broke meetings' camera/mic). Adds setPermissionRequestHandler + setPermissionCheckHandler on the app session. - Clicking a notification now raises + focuses the window: preload exposes bizConnectNative.focusApp(), main handles 'focus-window' IPC, and the web notify() onclick calls it when running in the desktop shell. (home.html build batch16) - CLIENTS.md: Phase D — inline-reply notifications (Windows Toast RemoteInput / Android RemoteInput / iOS UNTextInputNotificationAction) queued right after packaging. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
87 lines
3.6 KiB
JavaScript
87 lines
3.6 KiB
JavaScript
// Biz Connect — technician desktop client (Electron main process).
|
|
//
|
|
// This is a thin shell: it loads the live Connect web UI from the server origin, so every
|
|
// relative /api and /ws URL in the web app keeps working unchanged. What it adds over a
|
|
// browser tab:
|
|
// - native full-screen capture for "Share Screen" (setDisplayMediaRequestHandler)
|
|
// - a real desktop window (no browser chrome), persisted login session
|
|
// - external links open in the user's browser, not inside the app
|
|
//
|
|
// Server origin is configurable so the same build works against prod or a dev server.
|
|
const { app, BrowserWindow, session, desktopCapturer, shell, Menu, ipcMain } = require('electron');
|
|
const path = require('path');
|
|
|
|
// Renderer asks (via preload) to raise the window — e.g. when an OS notification is clicked.
|
|
ipcMain.on('focus-window', () => {
|
|
if (!win) return;
|
|
if (win.isMinimized()) win.restore();
|
|
win.show();
|
|
win.focus();
|
|
});
|
|
|
|
const SERVER_URL = (process.env.SERVER_URL || 'https://remote.bizgaze.com').replace(/\/+$/, '');
|
|
|
|
let win;
|
|
|
|
function createWindow() {
|
|
win = new BrowserWindow({
|
|
width: 1200,
|
|
height: 800,
|
|
minWidth: 880,
|
|
minHeight: 600,
|
|
title: 'Biz Connect',
|
|
backgroundColor: '#0f1830',
|
|
webPreferences: {
|
|
preload: path.join(__dirname, 'preload.js'),
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
// Persist cookies/localStorage so the technician stays logged in between launches.
|
|
partition: 'persist:bizconnect',
|
|
},
|
|
});
|
|
|
|
win.loadURL(SERVER_URL + '/home');
|
|
|
|
// Open target=_blank / external links in the system browser instead of a new Electron window.
|
|
win.webContents.setWindowOpenHandler(({ url }) => {
|
|
if (!url.startsWith(SERVER_URL)) { shell.openExternal(url); return { action: 'deny' }; }
|
|
return { action: 'allow' };
|
|
});
|
|
}
|
|
|
|
// The full Connect experience needs several web capabilities that Electron denies by
|
|
// default. We grant them for our own trusted origin:
|
|
// - media → camera + mic for meetings/calls (getUserMedia)
|
|
// - display-capture → "Share my screen" (getDisplayMedia)
|
|
// - notifications → in-app alerts
|
|
// - clipboard, fullscreen, pointerLock → chat paste + meeting UX
|
|
// Without this, meetings silently have no camera/mic and notifications never fire.
|
|
const GRANTED = new Set([
|
|
'media', 'display-capture', 'notifications',
|
|
'clipboard-read', 'clipboard-sanitized-write', 'fullscreen', 'pointerLock',
|
|
]);
|
|
|
|
function configureSession() {
|
|
const ses = session.fromPartition('persist:bizconnect');
|
|
// getDisplayMedia needs an explicit source. Default to the primary display + loopback audio.
|
|
// A production build can swap this for a source-picker window.
|
|
ses.setDisplayMediaRequestHandler((request, callback) => {
|
|
desktopCapturer.getSources({ types: ['screen', 'window'] }).then((sources) => {
|
|
callback(sources.length ? { video: sources[0], audio: 'loopback' } : {});
|
|
}).catch(() => callback({}));
|
|
}, { useSystemPicker: false });
|
|
// Async grant (getUserMedia, notifications, …)
|
|
ses.setPermissionRequestHandler((_wc, permission, callback) => callback(GRANTED.has(permission)));
|
|
// Sync check (some getUserMedia paths query this before requesting)
|
|
ses.setPermissionCheckHandler((_wc, permission) => GRANTED.has(permission));
|
|
}
|
|
|
|
app.whenReady().then(() => {
|
|
configureSession();
|
|
createWindow();
|
|
Menu.setApplicationMenu(null); // hide the default menu bar; the web UI is the chrome
|
|
app.on('activate', () => { if (BrowserWindow.getAllWindows().length === 0) createWindow(); });
|
|
});
|
|
|
|
app.on('window-all-closed', () => { if (process.platform !== 'darwin') app.quit(); });
|