2026-06-30 17:49:41 +05:30
|
|
|
// Minimal, safe bridge into the web UI. Runs with contextIsolation, so it only exposes a
|
|
|
|
|
// frozen marker the web app can feature-detect against (e.g. to hide the PWA install prompt
|
|
|
|
|
// or prefer native push). No Node APIs are exposed to page JS.
|
2026-07-01 16:16:40 +05:30
|
|
|
const { contextBridge, ipcRenderer } = require('electron');
|
2026-06-30 17:49:41 +05:30
|
|
|
|
|
|
|
|
contextBridge.exposeInMainWorld('__NATIVE__', 'desktop');
|
|
|
|
|
contextBridge.exposeInMainWorld('bizConnectNative', Object.freeze({
|
|
|
|
|
platform: 'desktop',
|
|
|
|
|
version: process.env.npm_package_version || '0.1.0',
|
2026-07-01 16:16:40 +05:30
|
|
|
// Bring the app window to the foreground (e.g. when a notification is clicked) — the web
|
|
|
|
|
// Notification's window.focus() can't raise an Electron window; the main process must.
|
|
|
|
|
focusApp: () => ipcRenderer.send('focus-window'),
|
2026-07-01 16:28:15 +05:30
|
|
|
// Show the unread-chat count as a badge on the taskbar icon. count=number of chats with
|
|
|
|
|
// unread; dataUrl=a small PNG badge the renderer drew (null to clear).
|
|
|
|
|
setUnread: (count, dataUrl) => ipcRenderer.send('set-unread', { count, dataUrl }),
|
2026-06-30 17:49:41 +05:30
|
|
|
}));
|