mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
Refactor window handling to improve safety and consistency
- Introduced optional chaining for `data.win` to prevent potential runtime errors when accessing window methods. - Updated various components to ensure proper handling of window focus and visibility. - Enhanced the layout and extension pages to utilize the current webview window more effectively, improving overall user experience.
This commit is contained in:
parent
57117b4f3e
commit
f3332d2f3c
@ -5,9 +5,9 @@ import { LoadingAnimation, PersistedAppConfig, type AppConfigState } from "@kksh
|
|||||||
import { debug, error, info } from "@tauri-apps/plugin-log"
|
import { debug, error, info } from "@tauri-apps/plugin-log"
|
||||||
import * as os from "@tauri-apps/plugin-os"
|
import * as os from "@tauri-apps/plugin-os"
|
||||||
import { load } from "@tauri-apps/plugin-store"
|
import { load } from "@tauri-apps/plugin-store"
|
||||||
|
import { Store } from "@tauri-store/svelte"
|
||||||
import { toast } from "svelte-sonner"
|
import { toast } from "svelte-sonner"
|
||||||
import { get, writable } from "svelte/store"
|
import { get, writable } from "svelte/store"
|
||||||
import { Store } from "@tauri-store/svelte"
|
|
||||||
import * as v from "valibot"
|
import * as v from "valibot"
|
||||||
|
|
||||||
export const defaultAppConfig: AppConfigState = {
|
export const defaultAppConfig: AppConfigState = {
|
||||||
@ -105,6 +105,5 @@ class AppConfigStore extends Store<AppConfigState> implements AppConfigAPI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// export const appConfig = createAppConfig()
|
// export const appConfig = createAppConfig()
|
||||||
export const appConfig = new AppConfigStore()
|
export const appConfig = new AppConfigStore()
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow"
|
import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow"
|
||||||
|
import { browser } from "$app/environment"
|
||||||
|
|
||||||
// Tauri doesn't have a Node.js server to do proper SSR
|
// Tauri doesn't have a Node.js server to do proper SSR
|
||||||
// so we will use adapter-static to prerender the app (SSG)
|
// so we will use adapter-static to prerender the app (SSG)
|
||||||
@ -7,6 +8,8 @@ export const prerender = true
|
|||||||
export const ssr = false
|
export const ssr = false
|
||||||
|
|
||||||
export const load = () => {
|
export const load = () => {
|
||||||
const win = getCurrentWebviewWindow()
|
if (browser) {
|
||||||
return { win }
|
const win = getCurrentWebviewWindow()
|
||||||
|
return { win }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@
|
|||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
data.win.setFocus()
|
data.win?.show().then(() => data.win?.setFocus())
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
data.win.show().then(() => data.win.setFocus())
|
data.win?.show().then(() => data.win?.setFocus())
|
||||||
|
|
||||||
userInput.setEventTypes([userInput.EventTypeEnum.KeyPress, userInput.EventTypeEnum.KeyRelease])
|
userInput.setEventTypes([userInput.EventTypeEnum.KeyPress, userInput.EventTypeEnum.KeyRelease])
|
||||||
userInput.startListening((evt: InputEvent) => {
|
userInput.startListening((evt: InputEvent) => {
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
import { Button } from "@kksh/svelte5"
|
import { Button } from "@kksh/svelte5"
|
||||||
import { Layouts } from "@kksh/ui"
|
import { Layouts } from "@kksh/ui"
|
||||||
import { LogicalSize } from "@tauri-apps/api/dpi"
|
import { LogicalSize } from "@tauri-apps/api/dpi"
|
||||||
|
import { getCurrentWebviewWindow } from "@tauri-apps/api/webviewWindow"
|
||||||
import { CircleX } from "lucide-svelte"
|
import { CircleX } from "lucide-svelte"
|
||||||
import { onMount } from "svelte"
|
import { onMount } from "svelte"
|
||||||
import * as clipboard from "tauri-plugin-clipboard-api"
|
import * as clipboard from "tauri-plugin-clipboard-api"
|
||||||
@ -14,16 +15,17 @@
|
|||||||
let currentSize = $derived(
|
let currentSize = $derived(
|
||||||
originalSize ? { width: originalSize.width * scale, height: originalSize.height * scale } : null
|
originalSize ? { width: originalSize.width * scale, height: originalSize.height * scale } : null
|
||||||
)
|
)
|
||||||
|
const win = getCurrentWebviewWindow()
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
if (currentSize) {
|
if (currentSize) {
|
||||||
data.win.setSize(new LogicalSize(currentSize.width, currentSize.height))
|
win.setSize(new LogicalSize(currentSize.width, currentSize.height))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
async function getWindowSize() {
|
async function getWindowSize() {
|
||||||
const size = await data.win.outerSize()
|
const size = await win.outerSize()
|
||||||
const scaleFactor = originalScaleFactor ?? (await data.win.scaleFactor())
|
const scaleFactor = originalScaleFactor ?? (await win.scaleFactor())
|
||||||
const logicalSize = size.toLogical(scaleFactor)
|
const logicalSize = size.toLogical(scaleFactor)
|
||||||
return { logicalSize, scaleFactor }
|
return { logicalSize, scaleFactor }
|
||||||
}
|
}
|
||||||
@ -35,7 +37,7 @@
|
|||||||
image = b64
|
image = b64
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
data.win.show().then(() => data.win.setFocus())
|
data.win?.show().then(() => data.win?.setFocus())
|
||||||
})
|
})
|
||||||
const { logicalSize, scaleFactor } = await getWindowSize()
|
const { logicalSize, scaleFactor } = await getWindowSize()
|
||||||
originalSize = { width: logicalSize.width, height: logicalSize.height }
|
originalSize = { width: logicalSize.width, height: logicalSize.height }
|
||||||
@ -66,11 +68,11 @@
|
|||||||
<svelte:window
|
<svelte:window
|
||||||
on:keydown={(e) => {
|
on:keydown={(e) => {
|
||||||
if (e.key === "Escape") {
|
if (e.key === "Escape") {
|
||||||
data.win.close()
|
win.close()
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Button size="icon" variant="ghost" class="fixed left-2 top-2" onclick={() => data.win.close()}>
|
<Button size="icon" variant="ghost" class="fixed left-2 top-2" onclick={() => win.close()}>
|
||||||
<CircleX />
|
<CircleX />
|
||||||
</Button>
|
</Button>
|
||||||
<main class="z-50 h-screen w-screen overflow-hidden" data-tauri-drag-region>
|
<main class="z-50 h-screen w-screen overflow-hidden" data-tauri-drag-region>
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
if (isInMainWindow()) {
|
if (isInMainWindow()) {
|
||||||
goto(i18n.resolveRoute("/app/"))
|
goto(i18n.resolveRoute("/app/"))
|
||||||
} else {
|
} else {
|
||||||
data.win.close()
|
data.win?.close()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
hideBackButton: async () => {
|
hideBackButton: async () => {
|
||||||
@ -130,7 +130,7 @@
|
|||||||
},
|
},
|
||||||
getSpawnedProcesses: () => Promise.resolve(extSpawnedProcesses),
|
getSpawnedProcesses: () => Promise.resolve(extSpawnedProcesses),
|
||||||
paste: async () => {
|
paste: async () => {
|
||||||
await data.win.hide()
|
await data.win?.hide()
|
||||||
await sleep(200)
|
await sleep(200)
|
||||||
return paste()
|
return paste()
|
||||||
}
|
}
|
||||||
@ -154,7 +154,7 @@
|
|||||||
if (isInMainWindow()) {
|
if (isInMainWindow()) {
|
||||||
goHome()
|
goHome()
|
||||||
} else {
|
} else {
|
||||||
data.win.close()
|
data.win?.close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -169,7 +169,7 @@
|
|||||||
onMount(() => {
|
onMount(() => {
|
||||||
appState.setFullScreenLoading(true)
|
appState.setFullScreenLoading(true)
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
data.win.setFocus()
|
data.win?.setFocus()
|
||||||
}, 200)
|
}, 200)
|
||||||
if (iframeRef?.contentWindow) {
|
if (iframeRef?.contentWindow) {
|
||||||
const io = new IframeParentIO(iframeRef.contentWindow)
|
const io = new IframeParentIO(iframeRef.contentWindow)
|
||||||
@ -195,7 +195,7 @@
|
|||||||
})
|
})
|
||||||
|
|
||||||
onDestroy(() => {
|
onDestroy(() => {
|
||||||
winExtMap.unregisterExtensionFromWindow(data.win.label)
|
winExtMap.unregisterExtensionFromWindow(data.win?.label ?? "")
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -208,7 +208,7 @@
|
|||||||
onclick={onBackBtnClicked}
|
onclick={onBackBtnClicked}
|
||||||
style={`${positionToCssStyleString(uiControl.backBtnPosition)}`}
|
style={`${positionToCssStyleString(uiControl.backBtnPosition)}`}
|
||||||
>
|
>
|
||||||
{#if data.win.label === "main"}
|
{#if data.win?.label === "main"}
|
||||||
<ArrowLeftIcon class="w-4" />
|
<ArrowLeftIcon class="w-4" />
|
||||||
{:else}
|
{:else}
|
||||||
<XIcon class="w-4" />
|
<XIcon class="w-4" />
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
let { data } = $props()
|
let { data } = $props()
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
data.win.show().then(() => data.win.setFocus())
|
data.win?.show().then(() => data.win?.setFocus())
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user