import { appState } from "@/stores" import { winExtMap } from "@/stores/winExtMap" import { trimSlash } from "@/utils/url" import { constructExtensionSupportDir } from "@kksh/api" import { CustomUiCmd, ExtPackageJsonExtra, TemplateUiCmd } from "@kksh/api/models" import { launchNewExtWindow } from "@kksh/extension" import { convertFileSrc } from "@tauri-apps/api/core" import * as fs from "@tauri-apps/plugin-fs" import { goto } from "$app/navigation" export async function createExtSupportDir(extPath: string) { const extSupportDir = await constructExtensionSupportDir(extPath) if (!(await fs.exists(extSupportDir))) { await fs.mkdir(extSupportDir, { recursive: true }) } } export async function onTemplateUiCmdSelect( ext: ExtPackageJsonExtra, cmd: TemplateUiCmd, { isDev, hmr }: { isDev: boolean; hmr: boolean } ) { await createExtSupportDir(ext.extPath) // console.log("onTemplateUiCmdSelect", ext, cmd, isDev, hmr) const url = `/extension/ui-worker?extPath=${encodeURIComponent(ext.extPath)}&cmdName=${encodeURIComponent(cmd.name)}` if (cmd.window) { const winLabel = await winExtMap.registerExtensionWithWindow({ extPath: ext.extPath }) const window = launchNewExtWindow(winLabel, url, cmd.window) window.onCloseRequested(async (event) => { await winExtMap.unregisterExtensionFromWindow(winLabel) }) } else { return winExtMap .registerExtensionWithWindow({ windowLabel: "main", extPath: ext.extPath }) .then(() => goto(url)) } } export async function onCustomUiCmdSelect( ext: ExtPackageJsonExtra, cmd: CustomUiCmd, { isDev, hmr }: { isDev: boolean; hmr: boolean } ) { // console.log("onCustomUiCmdSelect", ext, cmd, isDev, hmr) await createExtSupportDir(ext.extPath) let url = cmd.main if (hmr && isDev && cmd.devMain) { url = cmd.devMain } else { url = decodeURIComponent(convertFileSrc(`${trimSlash(cmd.main)}`, "ext")) } const url2 = `/extension/ui-iframe?url=${encodeURIComponent(url)}&extPath=${encodeURIComponent(ext.extPath)}` if (cmd.window) { const winLabel = await winExtMap.registerExtensionWithWindow({ extPath: ext.extPath, dist: cmd.dist }) console.log("Launch new window, ", winLabel) const window = launchNewExtWindow(winLabel, url2, cmd.window) window.onCloseRequested(async (event) => { await winExtMap.unregisterExtensionFromWindow(winLabel) }) } else { console.log("Launch main window") return winExtMap .registerExtensionWithWindow({ windowLabel: "main", extPath: ext.extPath, dist: cmd.dist }) .then(() => goto(url2)) } appState.clearSearchTerm() }