Skip to content

Commit

Permalink
feat(electron): enable vscode debugger for electron (#9333)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Dec 26, 2024
1 parent 188cabc commit 7d0160c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
7 changes: 6 additions & 1 deletion packages/frontend/apps/electron/scripts/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ function spawnOrReloadElectron() {
const ext = process.platform === 'win32' ? '.cmd' : '';
const exe = resolve(rootDir, 'node_modules', '.bin', `electron${ext}`);

delete process.env['NODE_OPTIONS'];
// remove import loader option
const NODE_OPTIONS = process.env.NODE_OPTIONS;
if (NODE_OPTIONS) {
process.env.NODE_OPTIONS = NODE_OPTIONS.replace(/--import=[^\s]*/, '');
}

spawnProcess = spawn(exe, ['.'], {
cwd: electronDir,
env: process.env,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import type { Display } from 'electron';
import { BrowserWindow, screen } from 'electron';

import { isMacOS } from '../../shared/utils';
import { isDev } from '../config';
import { onboardingViewUrl } from '../constants';
// import { getExposedMeta } from './exposed';
import { logger } from '../logger';
Expand Down Expand Up @@ -90,6 +91,10 @@ async function createOnboardingWindow(additionalArguments: string[]) {
fullscreenAndCenter(browserWindow);
});

if (isDev) {
browserWindow.webContents.openDevTools();
}

await browserWindow.loadURL(onboardingViewUrl);

return browserWindow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand All @@ -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;
Expand Down

0 comments on commit 7d0160c

Please sign in to comment.