mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import { type UnlistenFn } from "@tauri-apps/api/event";
|
|
import { getCurrentWindow, PhysicalPosition, type WindowOptions, Window, currentMonitor } from "@tauri-apps/api/window";
|
|
import { WebviewWindow } from "@tauri-apps/api/webviewWindow";
|
|
import type { WebviewLabel, WebviewOptions } from "@tauri-apps/api/webview";
|
|
export default async (
|
|
label: WebviewLabel,
|
|
options?: Omit<WebviewOptions, "x" | "y" | "width" | "height"> & WindowOptions,
|
|
afterCreatedFunc?: (webviewWindow: WebviewWindow, appWindow: Window) => void | null,
|
|
beforeCloseFunc?: () => void | null
|
|
) => {
|
|
let unListenlogClose: UnlistenFn | null = null;
|
|
let unlistenLogCreated: UnlistenFn | null = null;
|
|
let dialog = await WebviewWindow.getByLabel(label);
|
|
if (!dialog) {
|
|
let defaultOpts: {[key:string]: any, parent: Window | undefined} = {
|
|
parent: undefined,
|
|
closable: true,
|
|
resizable: true,
|
|
decorations: true,
|
|
maximizable: false,
|
|
minimizable: false,
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
const appWindow = getCurrentWindow();
|
|
if (appWindow) {
|
|
const appSize = await appWindow.outerSize();
|
|
// const monitor = await currentMonitor();
|
|
// console.error(monitor)
|
|
const factor = await appWindow.scaleFactor();
|
|
const appPosition = await appWindow.outerPosition();
|
|
// console.error((appPosition.x + appSize.width) / 1.25);
|
|
const logicalPosition = new PhysicalPosition(appPosition.x + appSize.width, appPosition.y).toLogical(factor);
|
|
defaultOpts.parent = appWindow;
|
|
// console.error(logicalPosition);
|
|
defaultOpts.x = logicalPosition.x;
|
|
defaultOpts.y = logicalPosition.y;
|
|
}
|
|
dialog = new WebviewWindow(label, { ...defaultOpts, ...options });
|
|
unlistenLogCreated = await dialog.listen("tauri://webview-created", async () => {
|
|
if (dialog) {
|
|
afterCreatedFunc && (await afterCreatedFunc(dialog, appWindow));
|
|
await dialog.show();
|
|
}
|
|
});
|
|
unListenlogClose = await dialog.onCloseRequested(async () => {
|
|
beforeCloseFunc && (await beforeCloseFunc());
|
|
unListenlogClose && (await unListenlogClose());
|
|
});
|
|
} else {
|
|
const visible = await dialog.isVisible();
|
|
if (visible) {
|
|
await dialog.close();
|
|
unlistenLogCreated && (await (unlistenLogCreated as Function)());
|
|
}
|
|
}
|
|
};
|