Files
Jammy 52636c91ae
Some checks failed
CI / main (push) Has been cancelled
CI / release-e2e (push) Has been cancelled
Track bundled vendor runtime sources
2026-07-07 10:05:50 +08:00

34 lines
1.3 KiB
TypeScript

import { BrowserWindow } from "electron";
import { t } from "../config/lang";
import { WindowConfig } from "../config/window";
import { preloadDefault } from "../lib/env-main";
import { Page } from "./index";
export const PageFeedback = {
NAME: "feedback",
open: async (option: any) => {
const win = new BrowserWindow({
title: t("page.feedback.title"),
parent: null,
minWidth: WindowConfig.feedbackWidth,
minHeight: WindowConfig.feedbackHeight,
width: WindowConfig.feedbackWidth,
height: WindowConfig.feedbackHeight,
webPreferences: {
preload: preloadDefault,
// Warning: Enable nodeIntegration and disable contextIsolation is not secure in production
nodeIntegration: true,
webSecurity: false,
webviewTag: true,
// Consider using contextBridge.exposeInMainWorld
// Read more on https://www.electronjs.org/docs/latest/tutorial/context-isolation
contextIsolation: false,
},
show: true,
frame: false,
transparent: false,
});
return Page.openWindow(PageFeedback.NAME, win, "page/feedback.html");
},
};