Files
Electron.NET/ElectronNET.Host/api/browserWindows.js
2021-12-13 17:31:48 +01:00

662 lines
28 KiB
JavaScript

"use strict";
const electron_1 = require("electron");
const browserView_1 = require("./browserView");
const path = require('path');
const windows = (global['browserWindows'] = global['browserWindows'] || []);
let readyToShowWindowsIds = [];
let window, electronSocket;
let mainWindowURL;
const proxyToCredentialsMap = (global['proxyToCredentialsMap'] = global['proxyToCredentialsMap'] || []);
module.exports = (socket, app, firstTime) => {
electronSocket = socket;
if (firstTime) {
app.on('login', (event, webContents, request, authInfo, callback) => {
if (authInfo.isProxy) {
let proxy = `${authInfo.host}:${authInfo.port}`;
if (proxy in proxyToCredentialsMap && proxyToCredentialsMap[proxy].split(':').length === 2) {
event.preventDefault();
let user = proxyToCredentialsMap[proxy].split(':')[0];
let pass = proxyToCredentialsMap[proxy].split(':')[1];
callback(user, pass);
}
}
});
}
socket.on('register-browserWindow-ready-to-show', (id) => {
if (readyToShowWindowsIds.includes(id)) {
readyToShowWindowsIds = readyToShowWindowsIds.filter(value => value !== id);
electronSocket.emit('browserWindow-ready-to-show' + id);
}
getWindowById(id)?.on('ready-to-show', () => {
readyToShowWindowsIds.push(id);
electronSocket.emit('browserWindow-ready-to-show' + id);
});
});
socket.on('register-browserWindow-page-title-updated', (id) => {
getWindowById(id)?.on('page-title-updated', (event, title) => {
electronSocket.emit('browserWindow-page-title-updated' + id, title);
});
});
socket.on('register-browserWindow-close', (id) => {
getWindowById(id)?.on('close', () => {
electronSocket.emit('browserWindow-close' + id);
});
});
socket.on('register-browserWindow-closed', (id) => {
getWindowById(id)?.on('closed', () => {
electronSocket.emit('browserWindow-closed' + id);
});
});
socket.on('register-browserWindow-session-end', (id) => {
getWindowById(id)?.on('session-end', () => {
electronSocket.emit('browserWindow-session-end' + id);
});
});
socket.on('register-browserWindow-unresponsive', (id) => {
getWindowById(id)?.on('unresponsive', () => {
electronSocket.emit('browserWindow-unresponsive' + id);
});
});
socket.on('register-browserWindow-responsive', (id) => {
getWindowById(id)?.on('responsive', () => {
electronSocket.emit('browserWindow-responsive' + id);
});
});
socket.on('register-browserWindow-blur', (id) => {
getWindowById(id)?.on('blur', () => {
electronSocket.emit('browserWindow-blur' + id);
});
});
socket.on('register-browserWindow-focus', (id) => {
getWindowById(id)?.on('focus', () => {
electronSocket.emit('browserWindow-focus' + id);
});
});
socket.on('register-browserWindow-show', (id) => {
getWindowById(id)?.on('show', () => {
electronSocket.emit('browserWindow-show' + id);
});
});
socket.on('register-browserWindow-hide', (id) => {
getWindowById(id)?.on('hide', () => {
electronSocket.emit('browserWindow-hide' + id);
});
});
socket.on('register-browserWindow-maximize', (id) => {
getWindowById(id)?.on('maximize', () => {
electronSocket.emit('browserWindow-maximize' + id);
});
});
socket.on('register-browserWindow-unmaximize', (id) => {
getWindowById(id)?.on('unmaximize', () => {
electronSocket.emit('browserWindow-unmaximize' + id);
});
});
socket.on('register-browserWindow-minimize', (id) => {
getWindowById(id)?.on('minimize', () => {
electronSocket.emit('browserWindow-minimize' + id);
});
});
socket.on('register-browserWindow-restore', (id) => {
getWindowById(id)?.on('restore', () => {
electronSocket.emit('browserWindow-restore' + id);
});
});
socket.on('register-browserWindow-resize', (id) => {
getWindowById(id)?.on('resize', () => {
electronSocket.emit('browserWindow-resize' + id);
});
});
socket.on('register-browserWindow-move', (id) => {
getWindowById(id)?.on('move', () => {
electronSocket.emit('browserWindow-move' + id);
});
});
socket.on('register-browserWindow-moved', (id) => {
getWindowById(id)?.on('moved', () => {
electronSocket.emit('browserWindow-moved' + id);
});
});
socket.on('register-browserWindow-enter-full-screen', (id) => {
getWindowById(id)?.on('enter-full-screen', () => {
electronSocket.emit('browserWindow-enter-full-screen' + id);
});
});
socket.on('register-browserWindow-leave-full-screen', (id) => {
getWindowById(id)?.on('leave-full-screen', () => {
electronSocket.emit('browserWindow-leave-full-screen' + id);
});
});
socket.on('register-browserWindow-enter-html-full-screen', (id) => {
getWindowById(id)?.on('enter-html-full-screen', () => {
electronSocket.emit('browserWindow-enter-html-full-screen' + id);
});
});
socket.on('register-browserWindow-leave-html-full-screen', (id) => {
getWindowById(id)?.on('leave-html-full-screen', () => {
electronSocket.emit('browserWindow-leave-html-full-screen' + id);
});
});
socket.on('register-browserWindow-app-command', (id) => {
getWindowById(id)?.on('app-command', (event, command) => {
electronSocket.emit('browserWindow-app-command' + id, command);
});
});
socket.on('register-browserWindow-scroll-touch-begin', (id) => {
getWindowById(id)?.on('scroll-touch-begin', () => {
electronSocket.emit('browserWindow-scroll-touch-begin' + id);
});
});
socket.on('register-browserWindow-scroll-touch-end', (id) => {
getWindowById(id)?.on('scroll-touch-end', () => {
electronSocket.emit('browserWindow-scroll-touch-end' + id);
});
});
socket.on('register-browserWindow-scroll-touch-edge', (id) => {
getWindowById(id)?.on('scroll-touch-edge', () => {
electronSocket.emit('browserWindow-scroll-touch-edge' + id);
});
});
socket.on('register-browserWindow-swipe', (id) => {
getWindowById(id)?.on('swipe', (event, direction) => {
electronSocket.emit('browserWindow-swipe' + id, direction);
});
});
socket.on('register-browserWindow-sheet-begin', (id) => {
getWindowById(id)?.on('sheet-begin', () => {
electronSocket.emit('browserWindow-sheet-begin' + id);
});
});
socket.on('register-browserWindow-sheet-end', (id) => {
getWindowById(id)?.on('sheet-end', () => {
electronSocket.emit('browserWindow-sheet-end' + id);
});
});
socket.on('register-browserWindow-new-window-for-tab', (id) => {
getWindowById(id)?.on('new-window-for-tab', () => {
electronSocket.emit('browserWindow-new-window-for-tab' + id);
});
});
socket.on('createBrowserWindow', (guid, options, loadUrl) => {
if (options.webPreferences && !('nodeIntegration' in options.webPreferences)) {
options = {
...options,
webPreferences: { ...options.webPreferences, nodeIntegration: true, contextIsolation: false }
};
}
else if (!options.webPreferences) {
options = { ...options, webPreferences: { nodeIntegration: true, contextIsolation: false } };
}
if (options.x && options.y && options.x == 0 && options.y == 0) {
delete options.x;
delete options.y;
}
// we dont want to recreate the window when watch is ready.
if (app.commandLine.hasSwitch('watch') && app['mainWindowURL'] === loadUrl) {
window = app['mainWindow'];
if (window) {
window.reload();
windows.push(window);
electronSocket.emit('BrowserWindowCreated' + guid, window.id);
return;
}
}
else {
window = new electron_1.BrowserWindow(options);
}
if (options.proxy) {
window.webContents.session.setProxy({ proxyRules: options.proxy });
}
if (options.proxy && options.proxyCredentials) {
proxyToCredentialsMap[options.proxy] = options.proxyCredentials;
}
window.on('ready-to-show', () => {
try {
window.id;
}
catch (error) {
if (error.message === 'Object has been destroyed') {
return;
}
}
if (readyToShowWindowsIds.includes(window.id)) {
readyToShowWindowsIds = readyToShowWindowsIds.filter(value => value !== window.id);
}
else {
readyToShowWindowsIds.push(window.id);
}
});
window.on('closed', (sender) => {
again: for (let index = 0; index < windows.length; index++) {
const windowItem = windows[index];
try {
windowItem.id;
}
catch (error) {
if (error.message === 'Object has been destroyed') {
windows.splice(index, 1);
break again;
}
}
}
const ids = [];
windows.forEach(x => ids.push(x.id));
electronSocket.emit('BrowserWindowUpdateOpenIDs', ids);
});
if (loadUrl) {
window.loadURL(loadUrl);
}
if (app.commandLine.hasSwitch('clear-cache') &&
app.commandLine.getSwitchValue('clear-cache')) {
window.webContents.session.clearCache();
console.log('auto clear-cache active for new window.');
}
// set main window url
if (app['mainWindowURL'] == undefined || app['mainWindowURL'] == "") {
app['mainWindowURL'] = loadUrl;
app['mainWindow'] = window;
}
windows.push(window);
electronSocket.emit('BrowserWindowCreated' + guid, window.id);
});
socket.on('browserWindowDestroy', (id) => {
getWindowById(id)?.destroy();
});
socket.on('browserWindowDestroyAll', () => {
const windows = electron_1.BrowserWindow.getAllWindows();
let count = 0;
if (windows.length) {
windows.forEach(w => {
try {
w.removeAllListeners('close');
w.hide();
w.destroy();
count++;
}
catch {
//ignore, probably already destroyed
}
});
}
electronSocket.emit('browserWindowDestroyAll-completed', count);
});
socket.on('browserWindowClose', (id) => {
getWindowById(id)?.close();
});
socket.on('browserWindowFocus', (id) => {
getWindowById(id)?.focus();
});
socket.on('browserWindowBlur', (id) => {
getWindowById(id)?.blur();
});
socket.on('browserWindowIsFocused', (id) => {
const isFocused = getWindowById(id)?.isFocused() ?? null;
electronSocket.emit('browserWindow-isFocused-completed' + id, isFocused);
});
socket.on('browserWindowIsDestroyed', (id) => {
const w = getWindowById(id);
if (w) {
const isDestroyed = w.isDestroyed();
electronSocket.emit('browserWindow-isDestroyed-completed' + id, isDestroyed);
}
else {
electronSocket.emit('browserWindow-isDestroyed-completed' + id, true);
}
});
socket.on('browserWindowShow', (id) => {
getWindowById(id)?.show();
});
socket.on('browserWindowShowInactive', (id) => {
getWindowById(id)?.showInactive();
});
socket.on('browserWindowHide', (id) => {
getWindowById(id)?.hide();
});
socket.on('browserWindowIsVisible', (id) => {
const isVisible = getWindowById(id)?.isVisible() ?? null;
electronSocket.emit('browserWindow-isVisible-completed' + id, isVisible);
});
socket.on('browserWindowIsModal', (id) => {
const isModal = getWindowById(id)?.isModal() ?? null;
electronSocket.emit('browserWindow-isModal-completed' + id, isModal);
});
socket.on('browserWindowMaximize', (id) => {
getWindowById(id)?.maximize();
});
socket.on('browserWindowUnmaximize', (id) => {
getWindowById(id)?.unmaximize();
});
socket.on('browserWindowIsMaximized', (id) => {
const isMaximized = getWindowById(id)?.isMaximized() ?? null;
electronSocket.emit('browserWindow-isMaximized-completed' + id, isMaximized);
});
socket.on('browserWindowMinimize', (id) => {
getWindowById(id)?.minimize();
});
socket.on('browserWindowRestore', (id) => {
getWindowById(id)?.restore();
});
socket.on('browserWindowIsMinimized', (id) => {
const isMinimized = getWindowById(id)?.isMinimized() ?? null;
electronSocket.emit('browserWindow-isMinimized-completed' + id, isMinimized);
});
socket.on('browserWindowSetFullScreen', (id, fullscreen) => {
getWindowById(id)?.setFullScreen(fullscreen);
});
socket.on('browserWindowSetBackgroundColor', (id, color) => {
getWindowById(id)?.setBackgroundColor(color);
});
socket.on('browserWindowIsFullScreen', (id) => {
const isFullScreen = getWindowById(id)?.isFullScreen() ?? null;
electronSocket.emit('browserWindow-isFullScreen-completed' + id, isFullScreen);
});
socket.on('browserWindowSetAspectRatio', (id, aspectRatio, extraSize) => {
getWindowById(id)?.setAspectRatio(aspectRatio, extraSize);
});
socket.on('browserWindowPreviewFile', (id, path, displayname) => {
getWindowById(id)?.previewFile(path, displayname);
});
socket.on('browserWindowCloseFilePreview', (id) => {
getWindowById(id)?.closeFilePreview();
});
socket.on('browserWindowSetBounds', (id, bounds, animate) => {
getWindowById(id)?.setBounds(bounds, animate);
});
socket.on('browserWindowGetBounds', (id) => {
const rectangle = getWindowById(id)?.getBounds() ?? null;
electronSocket.emit('browserWindow-getBounds-completed' + id, rectangle);
});
socket.on('browserWindowSetContentBounds', (id, bounds, animate) => {
getWindowById(id)?.setContentBounds(bounds, animate);
});
socket.on('browserWindowGetContentBounds', (id) => {
const rectangle = getWindowById(id)?.getContentBounds() ?? null;
electronSocket.emit('browserWindow-getContentBounds-completed' + id, rectangle);
});
socket.on('browserWindowSetSize', (id, width, height, animate) => {
getWindowById(id)?.setSize(width, height, animate);
});
socket.on('browserWindowGetSize', (id) => {
const size = getWindowById(id)?.getSize() ?? null;
electronSocket.emit('browserWindow-getSize-completed' + id, size);
});
socket.on('browserWindowSetContentSize', (id, width, height, animate) => {
getWindowById(id)?.setContentSize(width, height, animate);
});
socket.on('browserWindowGetContentSize', (id) => {
const size = getWindowById(id)?.getContentSize() ?? null;
electronSocket.emit('browserWindow-getContentSize-completed' + id, size);
});
socket.on('browserWindowSetMinimumSize', (id, width, height) => {
getWindowById(id)?.setMinimumSize(width, height);
});
socket.on('browserWindowGetMinimumSize', (id) => {
const size = getWindowById(id)?.getMinimumSize() ?? null;
electronSocket.emit('browserWindow-getMinimumSize-completed' + id, size);
});
socket.on('browserWindowSetMaximumSize', (id, width, height) => {
getWindowById(id)?.setMaximumSize(width, height);
});
socket.on('browserWindowGetMaximumSize', (id) => {
const size = getWindowById(id)?.getMaximumSize() ?? null;
electronSocket.emit('browserWindow-getMaximumSize-completed' + id, size);
});
socket.on('browserWindowSetResizable', (id, resizable) => {
getWindowById(id)?.setResizable(resizable);
});
socket.on('browserWindowIsResizable', (id) => {
const resizable = getWindowById(id)?.isResizable() ?? null;
electronSocket.emit('browserWindow-isResizable-completed' + id, resizable);
});
socket.on('browserWindowSetMovable', (id, movable) => {
getWindowById(id)?.setMovable(movable);
});
socket.on('browserWindowIsMovable', (id) => {
const movable = getWindowById(id)?.isMovable() ?? null;
electronSocket.emit('browserWindow-isMovable-completed' + id, movable);
});
socket.on('browserWindowSetMinimizable', (id, minimizable) => {
getWindowById(id)?.setMinimizable(minimizable);
});
socket.on('browserWindowIsMinimizable', (id) => {
const minimizable = getWindowById(id)?.isMinimizable() ?? null;
electronSocket.emit('browserWindow-isMinimizable-completed' + id, minimizable);
});
socket.on('browserWindowSetMaximizable', (id, maximizable) => {
getWindowById(id)?.setMaximizable(maximizable);
});
socket.on('browserWindowIsMaximizable', (id) => {
const maximizable = getWindowById(id)?.isMaximizable() ?? null;
electronSocket.emit('browserWindow-isMaximizable-completed' + id, maximizable);
});
socket.on('browserWindowSetFullScreenable', (id, fullscreenable) => {
getWindowById(id)?.setFullScreenable(fullscreenable);
});
socket.on('browserWindowIsFullScreenable', (id) => {
const fullscreenable = getWindowById(id)?.isFullScreenable() ?? null;
electronSocket.emit('browserWindow-isFullScreenable-completed' + id, fullscreenable);
});
socket.on('browserWindowSetClosable', (id, closable) => {
getWindowById(id)?.setClosable(closable);
});
socket.on('browserWindowIsClosable', (id) => {
const closable = getWindowById(id)?.isClosable() ?? null;
electronSocket.emit('browserWindow-isClosable-completed' + id, closable);
});
socket.on('browserWindowSetAlwaysOnTop', (id, flag, level, relativeLevel) => {
getWindowById(id)?.setAlwaysOnTop(flag, level, relativeLevel);
});
socket.on('browserWindowIsAlwaysOnTop', (id) => {
const isAlwaysOnTop = getWindowById(id)?.isAlwaysOnTop() ?? null;
electronSocket.emit('browserWindow-isAlwaysOnTop-completed' + id, isAlwaysOnTop);
});
socket.on('browserWindowCenter', (id) => {
getWindowById(id)?.center();
});
socket.on('browserWindowSetPosition', (id, x, y, animate) => {
getWindowById(id)?.setPosition(x, y, animate);
});
socket.on('browserWindowGetPosition', (id) => {
const position = getWindowById(id)?.getPosition() ?? null;
electronSocket.emit('browserWindow-getPosition-completed' + id, position);
});
socket.on('browserWindowSetTitle', (id, title) => {
getWindowById(id)?.setTitle(title);
});
socket.on('browserWindowGetTitle', (id) => {
const title = getWindowById(id)?.getTitle() ?? null;
electronSocket.emit('browserWindow-getTitle-completed' + id, title);
});
socket.on('browserWindowSetTitle', (id, title) => {
getWindowById(id)?.setTitle(title);
});
socket.on('browserWindowSetSheetOffset', (id, offsetY, offsetX) => {
if (offsetX) {
getWindowById(id)?.setSheetOffset(offsetY, offsetX);
}
else {
getWindowById(id)?.setSheetOffset(offsetY);
}
});
socket.on('browserWindowFlashFrame', (id, flag) => {
getWindowById(id)?.flashFrame(flag);
});
socket.on('browserWindowSetSkipTaskbar', (id, skip) => {
getWindowById(id)?.setSkipTaskbar(skip);
});
socket.on('browserWindowSetKiosk', (id, flag) => {
getWindowById(id)?.setKiosk(flag);
});
socket.on('browserWindowIsKiosk', (id) => {
const isKiosk = getWindowById(id)?.isKiosk() ?? null;
electronSocket.emit('browserWindow-isKiosk-completed' + id, isKiosk);
});
socket.on('browserWindowGetNativeWindowHandle', (id) => {
const nativeWindowHandle = getWindowById(id)?.getNativeWindowHandle()?.readInt32LE(0)?.toString(16) ?? null;
electronSocket.emit('browserWindow-getNativeWindowHandle-completed' + id, nativeWindowHandle);
});
socket.on('browserWindowSetRepresentedFilename', (id, filename) => {
getWindowById(id)?.setRepresentedFilename(filename);
});
socket.on('browserWindowGetRepresentedFilename', (id) => {
const pathname = getWindowById(id)?.getRepresentedFilename() ?? null;
electronSocket.emit('browserWindow-getRepresentedFilename-completed' + id, pathname);
});
socket.on('browserWindowSetDocumentEdited', (id, edited) => {
getWindowById(id)?.setDocumentEdited(edited);
});
socket.on('browserWindowIsDocumentEdited', (id) => {
const edited = getWindowById(id)?.isDocumentEdited() ?? null;
electronSocket.emit('browserWindow-isDocumentEdited-completed' + id, edited);
});
socket.on('browserWindowFocusOnWebView', (id) => {
getWindowById(id)?.focusOnWebView();
});
socket.on('browserWindowBlurWebView', (id) => {
getWindowById(id)?.blurWebView();
});
socket.on('browserWindowLoadURL', (id, url, options) => {
getWindowById(id)?.loadURL(url, options);
});
socket.on('browserWindowReload', (id) => {
getWindowById(id)?.reload();
});
socket.on('browserWindowSetMenu', (id, menuItems) => {
let menu = null;
if (menuItems) {
menu = electron_1.Menu.buildFromTemplate(menuItems);
addMenuItemClickConnector(menu.items, (id) => {
electronSocket.emit('windowMenuItemClicked', id);
});
}
getWindowById(id)?.setMenu(menu);
});
socket.on('browserWindowRemoveMenu', (id) => {
getWindowById(id)?.removeMenu();
});
function addMenuItemClickConnector(menuItems, callback) {
menuItems.forEach((item) => {
if (item.submenu && item.submenu.items.length > 0) {
addMenuItemClickConnector(item.submenu.items, callback);
}
if ('id' in item && item.id) {
item.click = () => {
callback(item.id);
};
}
});
}
socket.on('browserWindowSetProgressBar', (id, progress) => {
getWindowById(id)?.setProgressBar(progress);
});
socket.on('browserWindowSetProgressBar', (id, progress, options) => {
getWindowById(id)?.setProgressBar(progress, options);
});
socket.on('browserWindowSetHasShadow', (id, hasShadow) => {
getWindowById(id)?.setHasShadow(hasShadow);
});
socket.on('browserWindowHasShadow', (id) => {
const hasShadow = getWindowById(id)?.hasShadow() ?? null;
electronSocket.emit('browserWindow-hasShadow-completed' + id, hasShadow);
});
socket.on('browserWindowSetThumbarButtons', (id, thumbarButtons) => {
thumbarButtons.forEach(thumbarButton => {
const imagePath = path.join(__dirname.replace('api', ''), 'bin', thumbarButton.icon.toString());
thumbarButton.icon = electron_1.nativeImage.createFromPath(imagePath);
thumbarButton.click = () => {
electronSocket.emit('thumbarButtonClicked', thumbarButton['id']);
};
});
const success = getWindowById(id)?.setThumbarButtons(thumbarButtons) ?? null;
electronSocket.emit('browserWindowSetThumbarButtons-completed' + id, success);
});
socket.on('browserWindowSetThumbnailClip', (id, rectangle) => {
getWindowById(id)?.setThumbnailClip(rectangle);
});
socket.on('browserWindowSetThumbnailToolTip', (id, toolTip) => {
getWindowById(id)?.setThumbnailToolTip(toolTip);
});
socket.on('browserWindowSetAppDetails', (id, options) => {
getWindowById(id)?.setAppDetails(options);
});
socket.on('browserWindowShowDefinitionForSelection', (id) => {
getWindowById(id)?.showDefinitionForSelection();
});
socket.on('browserWindowSetAutoHideMenuBar', (id, hide) => {
getWindowById(id)?.setAutoHideMenuBar(hide);
});
socket.on('browserWindowIsMenuBarAutoHide', (id) => {
const isMenuBarAutoHide = getWindowById(id)?.isMenuBarAutoHide() ?? null;
electronSocket.emit('browserWindow-isMenuBarAutoHide-completed' + id, isMenuBarAutoHide);
});
socket.on('browserWindowSetMenuBarVisibility', (id, visible) => {
getWindowById(id)?.setMenuBarVisibility(visible);
});
socket.on('browserWindowIsMenuBarVisible', (id) => {
const isMenuBarVisible = getWindowById(id)?.isMenuBarVisible() ?? null;
electronSocket.emit('browserWindow-isMenuBarVisible-completed' + id, isMenuBarVisible);
});
socket.on('browserWindowSetVisibleOnAllWorkspaces', (id, visible) => {
getWindowById(id)?.setVisibleOnAllWorkspaces(visible);
});
socket.on('browserWindowIsVisibleOnAllWorkspaces', (id) => {
const isVisibleOnAllWorkspaces = getWindowById(id)?.isVisibleOnAllWorkspaces() ?? null;
electronSocket.emit('browserWindow-isVisibleOnAllWorkspaces-completed' + id, isVisibleOnAllWorkspaces);
});
socket.on('browserWindowSetIgnoreMouseEvents', (id, ignore) => {
getWindowById(id)?.setIgnoreMouseEvents(ignore);
});
socket.on('browserWindowSetContentProtection', (id, enable) => {
getWindowById(id)?.setContentProtection(enable);
});
socket.on('browserWindowSetFocusable', (id, focusable) => {
getWindowById(id)?.setFocusable(focusable);
});
socket.on('browserWindowSetParentWindow', (id, parent) => {
const browserWindow = electron_1.BrowserWindow.fromId(parent.id);
getWindowById(id)?.setParentWindow(browserWindow);
});
socket.on('browserWindowGetParentWindow', (id) => {
const browserWindow = getWindowById(id)?.getParentWindow() ?? null;
electronSocket.emit('browserWindow-getParentWindow-completed' + id, browserWindow.id);
});
socket.on('browserWindowGetChildWindows', (id) => {
const browserWindows = getWindowById(id)?.getChildWindows() ?? null;
const ids = [];
browserWindows.forEach(x => {
ids.push(x.id);
});
electronSocket.emit('browserWindow-getChildWindows-completed' + id, ids);
});
socket.on('browserWindowSetAutoHideCursor', (id, autoHide) => {
getWindowById(id)?.setAutoHideCursor(autoHide);
});
socket.on('browserWindowSetVibrancy', (id, type) => {
getWindowById(id)?.setVibrancy(type);
});
socket.on('browserWindowSetExcludedFromShownWindowsMenu', (id) => {
const w = getWindowById(id);
if (w) {
w.excludedFromShownWindowsMenu = true;
}
});
socket.on('browserWindow-setBrowserView', (id, browserViewId) => {
getWindowById(id)?.setBrowserView((0, browserView_1.browserViewMediateService)(browserViewId));
});
function getWindowById(id) {
for (let index = 0; index < windows.length; index++) {
const element = windows[index];
try {
if (element.id === id) {
return element;
}
}
catch {
//Accessing .id might throw 'Object has been destroyed', so we ignore it here
//The "closed" event should clean this up
}
}
return null;
}
};
//# sourceMappingURL=browserWindows.js.map