Last active
January 29, 2025 22:52
-
-
Save projektorius96/745bc4a7640b0b60443a814db475a666 to your computer and use it in GitHub Desktop.
Electron bug 45367
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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(); | |
}); | |
} | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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