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:
Luca Giannini 2025-03-01 07:59:09 +01:00 committed by GitHub
parent 70f7d4131e
commit 9e52ea331e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +1,11 @@
<script lang="ts">
import { appState } from "@/stores"
import { IconEnum, type AppInfo } from "@kksh/api/models"
import { Command } from "@kksh/svelte5"
import { IconMultiplexer } from "@kksh/ui"
import { DraggableCommandGroup } from "@kksh/ui/custom"
import { convertFileSrc } from "@tauri-apps/api/core"
import { getCurrentWindow } from "@tauri-apps/api/window"
import * as os from "@tauri-apps/plugin-os"
import { toast } from "svelte-sonner"
import { executeBashScript, open } from "tauri-plugin-shellx-api"
@ -16,7 +18,7 @@
{#each apps.filter((app) => app.name) as app}
<Command.Item
class="flex justify-between"
onSelect={() => {
onSelect={async () => {
if (platform === "windows") {
if (app.app_path_exe) {
open(app.app_path_exe)
@ -34,6 +36,8 @@
} else {
toast.error("Unsupported platform")
}
await getCurrentWindow().hide()
appState.clearSearchTerm()
}}
value={app.app_desktop_path}
>