feat(electron): enable vscode debugger for electron (#9333)

This commit is contained in:
pengx17
2024-12-26 15:37:56 +00:00
parent 188cabc7d7
commit 7d0160c8fb
3 changed files with 17 additions and 2 deletions

View File

@@ -88,6 +88,10 @@ export class DesktopApiService extends Service {
}
private setupCommonUIEvents() {
if (this.api.appInfo.windowName !== 'main') {
return;
}
const handleMaximized = (maximized: boolean | undefined) => {
document.documentElement.dataset.maximized = String(maximized);
};
@@ -102,12 +106,13 @@ export class DesktopApiService extends Service {
.isFullScreen()
.then(handleFullscreen)
.catch(console.error);
this.api.events.ui.onMaximized(handleMaximized);
this.api.events.ui.onFullScreen(handleFullscreen);
const tabId = this.api.appInfo.viewId;
if (tabId && this.api.appInfo.windowName === 'main') {
if (tabId) {
let isActive = false;
const handleActiveTabChange = (active: boolean) => {
isActive = active;