mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
Fix: ext window loading (#82)
* fix: extension new window loading with localStorage * fix: extension loading in new window * upgrade: @kksh/svelte5 * refactor: update SideBar import to Sidebar across desktop app * fix: safely remove test directories with existsSync check * feat: add open preference command with platform-specific shortcut * chore: clean up vite config trailing comma * fix: iframe custom ext loading * fix: fix template extension loading * feat: add progress bar to extension form and list views * feat: add optional description to form view template
This commit is contained in:
parent
c93ebd895e
commit
0bb59e4f66
@ -35,14 +35,21 @@ export async function createExtSupportDir(extPath: string) {
|
||||
}
|
||||
}
|
||||
|
||||
function setTemplateExtParams(extPath: string, cmdName: string) {
|
||||
localStorage.setItem(
|
||||
"kunkun-template-ext-params",
|
||||
JSON.stringify({ extPath, cmdName } satisfies KunkunTemplateExtParams)
|
||||
)
|
||||
}
|
||||
|
||||
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 = `/app/extension/ui-worker?extPath=${encodeURIComponent(ext.extPath)}&cmdName=${encodeURIComponent(cmd.name)}`
|
||||
setTemplateExtParams(ext.extPath, cmd.name)
|
||||
if (cmd.window) {
|
||||
const winLabel = await winExtMap.registerExtensionWithWindow({ extPath: ext.extPath })
|
||||
localStorage.setItem(
|
||||
@ -101,6 +108,13 @@ export async function onHeadlessCmdSelect(
|
||||
await workerAPI.load()
|
||||
}
|
||||
|
||||
function setIframeExtParams(extPath: string, url: string) {
|
||||
localStorage.setItem(
|
||||
"kunkun-iframe-ext-params",
|
||||
JSON.stringify({ url, extPath } satisfies KunkunIframeExtParams)
|
||||
)
|
||||
}
|
||||
|
||||
export async function onCustomUiCmdSelect(
|
||||
ext: ExtPackageJsonExtra,
|
||||
cmd: CustomUiCmd,
|
||||
@ -119,6 +133,8 @@ export async function onCustomUiCmdSelect(
|
||||
}
|
||||
let url2 = `/app/extension/ui-iframe?url=${encodeURIComponent(url)}&extPath=${encodeURIComponent(ext.extPath)}`
|
||||
// url2 = `/dev?url=${encodeURIComponent(url)}&extPath=${encodeURIComponent(ext.extPath)}`
|
||||
|
||||
setIframeExtParams(ext.extPath, url)
|
||||
if (cmd.window) {
|
||||
const winLabel = await winExtMap.registerExtensionWithWindow({
|
||||
extPath: ext.extPath,
|
||||
@ -128,6 +144,7 @@ export async function onCustomUiCmdSelect(
|
||||
const addr = await spawnExtensionFileServer(winLabel)
|
||||
const newUrl = `http://${addr}`
|
||||
url2 = `/app/extension/ui-iframe?url=${encodeURIComponent(newUrl)}&extPath=${encodeURIComponent(ext.extPath)}`
|
||||
setIframeExtParams(ext.extPath, newUrl)
|
||||
}
|
||||
localStorage.setItem(
|
||||
"kunkun-iframe-ext-params",
|
||||
@ -149,6 +166,7 @@ export async function onCustomUiCmdSelect(
|
||||
console.log("Extension file server address: ", addr)
|
||||
const newUrl = `http://${addr}`
|
||||
url2 = `/app/extension/ui-iframe?url=${encodeURIComponent(newUrl)}&extPath=${encodeURIComponent(ext.extPath)}`
|
||||
setIframeExtParams(ext.extPath, newUrl)
|
||||
}
|
||||
goto(i18n.resolveRoute(url2))
|
||||
}
|
||||
|
@ -361,6 +361,7 @@
|
||||
{:else if loaded && formViewContent !== undefined}
|
||||
<Templates.FormView
|
||||
{formViewContent}
|
||||
{pbar}
|
||||
onGoBack={goBack}
|
||||
onSubmit={(formData: Record<string, string | number | boolean>) => {
|
||||
console.log("formData", formData)
|
||||
|
@ -20,7 +20,7 @@ export const load: PageLoad = async ({ url }) => {
|
||||
toast.error("Invalid extension path or url")
|
||||
return svError(404, "Invalid extension path or url")
|
||||
}
|
||||
localStorage.removeItem("kunkun-template-ext-params")
|
||||
|
||||
const parsed = v.safeParse(KunkunTemplateExtParams, JSON.parse(rawKunkunTemplateExtParams))
|
||||
if (!parsed.success) {
|
||||
toast.error("Fail to parse extension params from local storage", {
|
||||
|
@ -1,25 +1,33 @@
|
||||
<script lang="ts">
|
||||
import { FormNodeNameEnum, FormSchema } from "@kksh/api/models"
|
||||
import { Button } from "@kksh/svelte5"
|
||||
import { Button, Progress } from "@kksh/svelte5"
|
||||
import { ArrowLeftIcon } from "lucide-svelte"
|
||||
import Form from "./form.svelte"
|
||||
|
||||
let {
|
||||
formViewContent,
|
||||
pbar,
|
||||
onGoBack,
|
||||
onSubmit
|
||||
}: {
|
||||
formViewContent: FormSchema.Form
|
||||
pbar: number | null
|
||||
onGoBack: () => void
|
||||
onSubmit?: (formData: Record<string, string | number | boolean>) => void
|
||||
} = $props()
|
||||
</script>
|
||||
|
||||
{#if pbar && pbar > 0}
|
||||
<Progress value={Math.min(pbar, 100)} class="absolute top-0 h-0.5 rounded-none" />
|
||||
{/if}
|
||||
<div data-tauri-drag-region class="h-12 w-full"></div>
|
||||
<Button class="fixed left-2 top-2" size="icon" variant="outline" onclick={onGoBack}>
|
||||
<ArrowLeftIcon />
|
||||
</Button>
|
||||
<main class="container flex flex-col gap-2 pb-4">
|
||||
<h1 class="text-2xl font-bold">{formViewContent.title}</h1>
|
||||
{#if formViewContent.description}
|
||||
<p>{formViewContent.description}</p>
|
||||
{/if}
|
||||
<Form {formViewContent} {onSubmit} />
|
||||
</main>
|
||||
|
@ -131,7 +131,7 @@
|
||||
{/snippet}
|
||||
</CustomCommandInput>
|
||||
{#if pbar}
|
||||
<Progress value={50} class="h-0.4 rounded-none" />
|
||||
<Progress value={pbar} class="h-0.5 rounded-none" />
|
||||
{/if}
|
||||
|
||||
<Resizable.PaneGroup direction="horizontal">
|
||||
|
Loading…
x
Reference in New Issue
Block a user