mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
exit and clear search term after onSelect (#217)
* clean path and exit after onSelect * format * do not clean linux app path, and clear search term --------- Co-authored-by: Huakun Shen <huakun.shen@huakunshen.com>
This commit is contained in:
parent
70f7d4131e
commit
9e52ea331e
@ -1,9 +1,11 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
import { appState } from "@/stores"
|
||||||
import { IconEnum, type AppInfo } from "@kksh/api/models"
|
import { IconEnum, type AppInfo } from "@kksh/api/models"
|
||||||
import { Command } from "@kksh/svelte5"
|
import { Command } from "@kksh/svelte5"
|
||||||
import { IconMultiplexer } from "@kksh/ui"
|
import { IconMultiplexer } from "@kksh/ui"
|
||||||
import { DraggableCommandGroup } from "@kksh/ui/custom"
|
import { DraggableCommandGroup } from "@kksh/ui/custom"
|
||||||
import { convertFileSrc } from "@tauri-apps/api/core"
|
import { convertFileSrc } from "@tauri-apps/api/core"
|
||||||
|
import { getCurrentWindow } from "@tauri-apps/api/window"
|
||||||
import * as os from "@tauri-apps/plugin-os"
|
import * as os from "@tauri-apps/plugin-os"
|
||||||
import { toast } from "svelte-sonner"
|
import { toast } from "svelte-sonner"
|
||||||
import { executeBashScript, open } from "tauri-plugin-shellx-api"
|
import { executeBashScript, open } from "tauri-plugin-shellx-api"
|
||||||
@ -16,7 +18,7 @@
|
|||||||
{#each apps.filter((app) => app.name) as app}
|
{#each apps.filter((app) => app.name) as app}
|
||||||
<Command.Item
|
<Command.Item
|
||||||
class="flex justify-between"
|
class="flex justify-between"
|
||||||
onSelect={() => {
|
onSelect={async () => {
|
||||||
if (platform === "windows") {
|
if (platform === "windows") {
|
||||||
if (app.app_path_exe) {
|
if (app.app_path_exe) {
|
||||||
open(app.app_path_exe)
|
open(app.app_path_exe)
|
||||||
@ -34,6 +36,8 @@
|
|||||||
} else {
|
} else {
|
||||||
toast.error("Unsupported platform")
|
toast.error("Unsupported platform")
|
||||||
}
|
}
|
||||||
|
await getCurrentWindow().hide()
|
||||||
|
appState.clearSearchTerm()
|
||||||
}}
|
}}
|
||||||
value={app.app_desktop_path}
|
value={app.app_desktop_path}
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user