Skip to content

Instantly share code, notes, and snippets.

@projektorius96
Last active January 29, 2025 22:52
Show Gist options
  • Save projektorius96/745bc4a7640b0b60443a814db475a666 to your computer and use it in GitHub Desktop.
Save projektorius96/745bc4a7640b0b60443a814db475a666 to your computer and use it in GitHub Desktop.
Electron bug 45367
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'" />
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'" />
<title>Hello from Electron renderer!</title>
</head>
<body>
<h1>Hello from Electron renderer!</h1>
<p>👋</p>
</body>
</html>
/* import { app, screen, BaseWindow, WebContentsView } from 'electron'; */// DEV_NOTE # As per original issue, I use ESM syntax to import modules !
const { app, screen, BaseWindow, WebContentsView } = require('electron');
app.whenReady().then(() => {
const
{ workAreaSize } = screen.getPrimaryDisplay()
,
parentView = new BaseWindow({
frame: true,
x: 0,
y: 0,
width: workAreaSize.width,
height: workAreaSize.height,
})
,
mainPage = new WebContentsView()
;
if (mainPage) {
const bounds = parentView.getContentBounds();
mainPage.setBounds({
x: 0,
y: 0,
width: bounds.width,
height: bounds.height,
});
console.log(bounds, parentView.getBounds());
mainPage.webContents.loadFile('index.html');
/* mainPage.webContents.openDevTools(); */// # shows the debugger
}
if (parentView) {
parentView.maximize();
/**
* Credits to github:nikwen for sorting me out on this one:..
* @see {@link https://github.com/electron/electron/issues/45367#issuecomment-2620264791}
*/
parentView.contentView.addChildView(mainPage);
/**
* Read more about Resource Management...
* @see {@link https://www.electronjs.org/docs/latest/api/base-window#resource-management|Resource Management}
*/
parentView.on('closed', () => {
mainPage.webContents.close();
});
}
})
{
"name": "humdrum-software-show-7vjox",
"productName": "humdrum-software-show-7vjox",
"description": "My Electron application description",
"keywords": [],
"main": "./main.js",
"version": "1.0.0",
"author": "Lukas",
"scripts": {
"start": "electron ."
},
"dependencies": {},
"devDependencies": {
"electron": "34.0.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment