mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
feat(desktop) Improve search (#202)
* feat: add lockHideOnBlur to prevent app hiding during dialogs * feat: add Fuse.js for advanced search filtering across app sections * chore: update .prettierignore and clean up imports in AddDevExtForm
This commit is contained in:
parent
8940d25245
commit
66135624b9
@ -1,4 +1,5 @@
|
|||||||
.svelte-kit/
|
.svelte-kit/
|
||||||
target/
|
target/
|
||||||
|
vendors/**
|
||||||
vendors
|
vendors
|
||||||
.nuxt/
|
.nuxt/
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
"@tauri-apps/plugin-shell": "^2.2.0",
|
"@tauri-apps/plugin-shell": "^2.2.0",
|
||||||
"@tauri-apps/plugin-stronghold": "^2.2.0",
|
"@tauri-apps/plugin-stronghold": "^2.2.0",
|
||||||
"dompurify": "^3.2.3",
|
"dompurify": "^3.2.3",
|
||||||
|
"fuse.js": "^7.1.0",
|
||||||
"gsap": "^3.12.5",
|
"gsap": "^3.12.5",
|
||||||
"kkrpc": "^0.1.1",
|
"kkrpc": "^0.1.1",
|
||||||
"lz-string": "^1.5.0",
|
"lz-string": "^1.5.0",
|
||||||
|
@ -11,6 +11,7 @@ import { WebviewWindow } from "@tauri-apps/api/webviewWindow"
|
|||||||
import { exit } from "@tauri-apps/plugin-process"
|
import { exit } from "@tauri-apps/plugin-process"
|
||||||
import { dev } from "$app/environment"
|
import { dev } from "$app/environment"
|
||||||
import { goto } from "$app/navigation"
|
import { goto } from "$app/navigation"
|
||||||
|
import Fuse from "fuse.js"
|
||||||
import { toast } from "svelte-sonner"
|
import { toast } from "svelte-sonner"
|
||||||
import { derived } from "svelte/store"
|
import { derived } from "svelte/store"
|
||||||
import * as clipboard from "tauri-plugin-clipboard-api"
|
import * as clipboard from "tauri-plugin-clipboard-api"
|
||||||
@ -475,11 +476,19 @@ export const rawBuiltinCmds: BuiltinCmd[] = [
|
|||||||
}
|
}
|
||||||
].map((cmd) => ({ ...cmd, id: uuidv4() }))
|
].map((cmd) => ({ ...cmd, id: uuidv4() }))
|
||||||
|
|
||||||
export const builtinCmds = derived([appConfig, appState], ([$appConfig, $appState]) => {
|
export const fuse = new Fuse<BuiltinCmd>(rawBuiltinCmds, {
|
||||||
return rawBuiltinCmds.filter((cmd) => {
|
includeScore: true,
|
||||||
const passDeveloper = cmd.flags?.developer ? $appConfig.developerMode : true
|
threshold: 0.2,
|
||||||
const passDev = cmd.flags?.dev ? dev : true
|
keys: ["name"]
|
||||||
return passDeveloper && passDev
|
})
|
||||||
})
|
|
||||||
// .filter((cmd) => commandScore(cmd.name, $appState.searchTerm, cmd.keywords) > 0.5)
|
export const builtinCmds = derived([appConfig, appState], ([$appConfig, $appState]) => {
|
||||||
|
return $appState.searchTerm
|
||||||
|
? fuse
|
||||||
|
.search($appState.searchTerm)
|
||||||
|
.map((result) => result.item)
|
||||||
|
.filter(
|
||||||
|
(cmd) => (!cmd.flags?.developer || $appConfig.developerMode) && (!cmd.flags?.dev || dev)
|
||||||
|
)
|
||||||
|
: rawBuiltinCmds
|
||||||
})
|
})
|
||||||
|
@ -1,10 +1,23 @@
|
|||||||
import { getSystemCommands } from "@kksh/api/commands"
|
import { getSystemCommands } from "@kksh/api/commands"
|
||||||
import type { SysCommand } from "@kksh/api/models"
|
import type { SysCommand } from "@kksh/api/models"
|
||||||
import { commandScore } from "@kksh/ui/utils"
|
import { commandScore } from "@kksh/ui/utils"
|
||||||
|
import Fuse from "fuse.js"
|
||||||
import { derived, readable } from "svelte/store"
|
import { derived, readable } from "svelte/store"
|
||||||
import { appState } from "../stores/appState"
|
import { appState } from "../stores/appState"
|
||||||
|
|
||||||
export const systemCommands = readable(getSystemCommands())
|
export const systemCommands = getSystemCommands()
|
||||||
|
|
||||||
|
export const fuse = new Fuse<SysCommand>(systemCommands, {
|
||||||
|
includeScore: true,
|
||||||
|
threshold: 0.2,
|
||||||
|
keys: ["name"]
|
||||||
|
})
|
||||||
|
|
||||||
|
export const systemCommandsFiltered = derived(appState, ($appState) => {
|
||||||
|
return $appState.searchTerm
|
||||||
|
? fuse.search($appState.searchTerm).map((result) => result.item)
|
||||||
|
: systemCommands
|
||||||
|
})
|
||||||
|
|
||||||
// export const systemCommandsFiltered = derived(
|
// export const systemCommandsFiltered = derived(
|
||||||
// [systemCommands, appState],
|
// [systemCommands, appState],
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
toast.error("Unsupported platform")
|
toast.error("Unsupported platform")
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
value={app.name}
|
value={app.app_desktop_path}
|
||||||
>
|
>
|
||||||
<span class="flex gap-2">
|
<span class="flex gap-2">
|
||||||
<IconMultiplexer
|
<IconMultiplexer
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
import DevExtPathForm from "@/components/standalone/settings/DevExtPathForm.svelte"
|
import DevExtPathForm from "@/components/standalone/settings/DevExtPathForm.svelte"
|
||||||
import { i18n } from "@/i18n"
|
import { i18n } from "@/i18n"
|
||||||
import * as m from "@/paraglide/messages"
|
import * as m from "@/paraglide/messages"
|
||||||
import { appConfig, extensions } from "@/stores"
|
import { appConfig, appState, extensions } from "@/stores"
|
||||||
import { goBackOnEscape } from "@/utils/key"
|
import { goBackOnEscape } from "@/utils/key"
|
||||||
import { goBack } from "@/utils/route"
|
import { goBack } from "@/utils/route"
|
||||||
import { IconEnum } from "@kksh/api/models"
|
import { IconEnum } from "@kksh/api/models"
|
||||||
@ -65,10 +65,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function pickExtFolders() {
|
async function pickExtFolders() {
|
||||||
|
appState.setLockHideOnBlur(true)
|
||||||
const selected = await openFileSelector({
|
const selected = await openFileSelector({
|
||||||
directory: true,
|
directory: true,
|
||||||
multiple: true // allow install multiple extensions at once
|
multiple: true // allow install multiple extensions at once
|
||||||
})
|
})
|
||||||
|
appState.setLockHideOnBlur(false)
|
||||||
if (!selected) {
|
if (!selected) {
|
||||||
return toast.warning("No File Selected")
|
return toast.warning("No File Selected")
|
||||||
}
|
}
|
||||||
@ -91,6 +93,7 @@
|
|||||||
toast.warning("Please set the dev extension path in the settings")
|
toast.warning("Please set the dev extension path in the settings")
|
||||||
return goto(i18n.resolveRoute("/app/settings/set-dev-ext-path"))
|
return goto(i18n.resolveRoute("/app/settings/set-dev-ext-path"))
|
||||||
}
|
}
|
||||||
|
appState.setLockHideOnBlur(true)
|
||||||
const selected = await openFileSelector({
|
const selected = await openFileSelector({
|
||||||
directory: false,
|
directory: false,
|
||||||
multiple: true, // allow install multiple extensions at once
|
multiple: true, // allow install multiple extensions at once
|
||||||
@ -101,6 +104,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
appState.setLockHideOnBlur(false)
|
||||||
if (!selected) {
|
if (!selected) {
|
||||||
return toast.warning("No File Selected")
|
return toast.warning("No File Selected")
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,8 @@ export const defaultAppState: AppState = {
|
|||||||
highlightedCmd: "",
|
highlightedCmd: "",
|
||||||
loadingBar: false,
|
loadingBar: false,
|
||||||
defaultAction: "",
|
defaultAction: "",
|
||||||
actionPanel: undefined
|
actionPanel: undefined,
|
||||||
|
lockHideOnBlur: false // when dialog is open, we don't hide the app, we lock the hide on blur and unlock when dialog is closed
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AppStateAPI {
|
interface AppStateAPI {
|
||||||
@ -16,6 +17,7 @@ interface AppStateAPI {
|
|||||||
setLoadingBar: (loadingBar: boolean) => void
|
setLoadingBar: (loadingBar: boolean) => void
|
||||||
setDefaultAction: (defaultAction: string | null) => void
|
setDefaultAction: (defaultAction: string | null) => void
|
||||||
setActionPanel: (actionPanel?: ActionSchema.ActionPanel) => void
|
setActionPanel: (actionPanel?: ActionSchema.ActionPanel) => void
|
||||||
|
setLockHideOnBlur: (lockHideOnBlur: boolean) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
function createAppState(): Writable<AppState> & AppStateAPI {
|
function createAppState(): Writable<AppState> & AppStateAPI {
|
||||||
@ -35,6 +37,9 @@ function createAppState(): Writable<AppState> & AppStateAPI {
|
|||||||
},
|
},
|
||||||
setActionPanel: (actionPanel?: ActionSchema.ActionPanel) => {
|
setActionPanel: (actionPanel?: ActionSchema.ActionPanel) => {
|
||||||
store.update((state) => ({ ...state, actionPanel }))
|
store.update((state) => ({ ...state, actionPanel }))
|
||||||
|
},
|
||||||
|
setLockHideOnBlur: (lockHideOnBlur: boolean) => {
|
||||||
|
store.update((state) => ({ ...state, lockHideOnBlur }))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,16 @@ import { AppInfo } from "@kksh/api/models"
|
|||||||
import { commandScore } from "@kksh/ui/utils"
|
import { commandScore } from "@kksh/ui/utils"
|
||||||
import * as fs from "@tauri-apps/plugin-fs"
|
import * as fs from "@tauri-apps/plugin-fs"
|
||||||
import { platform } from "@tauri-apps/plugin-os"
|
import { platform } from "@tauri-apps/plugin-os"
|
||||||
|
import Fuse from "fuse.js"
|
||||||
import { derived, get, writable } from "svelte/store"
|
import { derived, get, writable } from "svelte/store"
|
||||||
import { appState } from "./appState"
|
import { appState } from "./appState"
|
||||||
|
|
||||||
|
export const fuse = new Fuse<AppInfo>([], {
|
||||||
|
includeScore: true,
|
||||||
|
threshold: 0.2,
|
||||||
|
keys: ["name"]
|
||||||
|
})
|
||||||
|
|
||||||
export function createAppsLoaderStore() {
|
export function createAppsLoaderStore() {
|
||||||
const store = writable<AppInfo[]>([])
|
const store = writable<AppInfo[]>([])
|
||||||
|
|
||||||
@ -28,24 +35,14 @@ export function createAppsLoaderStore() {
|
|||||||
// console.log("filteredApps", apps)
|
// console.log("filteredApps", apps)
|
||||||
// fs.writeTextFile("/Users/hk/Desktop/apps.json", JSON.stringify(apps))
|
// fs.writeTextFile("/Users/hk/Desktop/apps.json", JSON.stringify(apps))
|
||||||
store.set(apps)
|
store.set(apps)
|
||||||
|
fuse.setCollection(apps)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const appsLoader = createAppsLoaderStore()
|
export const appsLoader = createAppsLoaderStore()
|
||||||
|
export const appsFiltered = derived([appsLoader, appState], ([$apps, $appState]) => {
|
||||||
// export const appsFiltered = derived([appsLoader, appState], ([$apps, $appState]) => {
|
return $appState.searchTerm.length > 0
|
||||||
// return []
|
? fuse.search($appState.searchTerm).map((result) => result.item)
|
||||||
// return $apps.filter((app) => {
|
: $apps.slice(0, 20)
|
||||||
// if ($appState.searchTerm.length === 0) {
|
})
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
// return (
|
|
||||||
// commandScore(
|
|
||||||
// app.name,
|
|
||||||
// $appState.searchTerm
|
|
||||||
// // []
|
|
||||||
// ) > 0.8
|
|
||||||
// )
|
|
||||||
// })
|
|
||||||
// })
|
|
||||||
|
@ -5,10 +5,17 @@ import * as extAPI from "@kksh/extension"
|
|||||||
import { commandScore } from "@kksh/ui/utils"
|
import { commandScore } from "@kksh/ui/utils"
|
||||||
import * as path from "@tauri-apps/api/path"
|
import * as path from "@tauri-apps/api/path"
|
||||||
import * as fs from "@tauri-apps/plugin-fs"
|
import * as fs from "@tauri-apps/plugin-fs"
|
||||||
|
import Fuse from "fuse.js"
|
||||||
import { derived, get, writable, type Readable, type Writable } from "svelte/store"
|
import { derived, get, writable, type Readable, type Writable } from "svelte/store"
|
||||||
import { appConfig } from "./appConfig"
|
import { appConfig } from "./appConfig"
|
||||||
import { appState } from "./appState"
|
import { appState } from "./appState"
|
||||||
|
|
||||||
|
export const fuse = new Fuse<ExtPackageJsonExtra>([], {
|
||||||
|
includeScore: true,
|
||||||
|
threshold: 0.2,
|
||||||
|
keys: ["name"]
|
||||||
|
})
|
||||||
|
|
||||||
function createExtensionsStore(): Writable<ExtPackageJsonExtra[]> & {
|
function createExtensionsStore(): Writable<ExtPackageJsonExtra[]> & {
|
||||||
init: () => Promise<void>
|
init: () => Promise<void>
|
||||||
getExtensionsFromStore: () => ExtPackageJsonExtra[]
|
getExtensionsFromStore: () => ExtPackageJsonExtra[]
|
||||||
@ -40,6 +47,7 @@ function createExtensionsStore(): Writable<ExtPackageJsonExtra[]> & {
|
|||||||
function init() {
|
function init() {
|
||||||
return extAPI.loadAllExtensionsFromDb().then((exts) => {
|
return extAPI.loadAllExtensionsFromDb().then((exts) => {
|
||||||
store.set(exts)
|
store.set(exts)
|
||||||
|
fuse.setCollection(exts)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -245,6 +253,24 @@ export const devStoreExts: Readable<ExtPackageJsonExtra[]> = derived(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
export const installedStoreExtsFiltered = derived(
|
||||||
|
[installedStoreExts, appState],
|
||||||
|
([$installedStoreExts, $appState]) => {
|
||||||
|
return $appState.searchTerm
|
||||||
|
? fuse.search($appState.searchTerm).map((result) => result.item)
|
||||||
|
: $installedStoreExts
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
export const devStoreExtsFiltered = derived(
|
||||||
|
[devStoreExts, appState],
|
||||||
|
([$devStoreExts, $appState]) => {
|
||||||
|
return $appState.searchTerm
|
||||||
|
? fuse.search($appState.searchTerm).map((result) => result.item)
|
||||||
|
: $devStoreExts
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
// export const installedStoreExtsFiltered = derived(
|
// export const installedStoreExtsFiltered = derived(
|
||||||
// [installedStoreExts, appState],
|
// [installedStoreExts, appState],
|
||||||
// ([$installedStoreExts, $appState]) => {
|
// ([$installedStoreExts, $appState]) => {
|
||||||
|
@ -2,9 +2,16 @@ import type { Icon } from "@kksh/api/models"
|
|||||||
import { createQuickLinkCommand, getAllQuickLinkCommands } from "@kksh/extension/db"
|
import { createQuickLinkCommand, getAllQuickLinkCommands } from "@kksh/extension/db"
|
||||||
import type { QuickLink } from "@kksh/ui/types"
|
import type { QuickLink } from "@kksh/ui/types"
|
||||||
import { commandScore } from "@kksh/ui/utils"
|
import { commandScore } from "@kksh/ui/utils"
|
||||||
|
import Fuse from "fuse.js"
|
||||||
import { derived, get, writable, type Writable } from "svelte/store"
|
import { derived, get, writable, type Writable } from "svelte/store"
|
||||||
import { appState } from "./appState"
|
import { appState } from "./appState"
|
||||||
|
|
||||||
|
export const fuse = new Fuse<QuickLink>([], {
|
||||||
|
includeScore: true,
|
||||||
|
threshold: 0.2,
|
||||||
|
keys: ["name"]
|
||||||
|
})
|
||||||
|
|
||||||
export interface QuickLinkAPI {
|
export interface QuickLinkAPI {
|
||||||
get: () => QuickLink[]
|
get: () => QuickLink[]
|
||||||
init: () => Promise<void>
|
init: () => Promise<void>
|
||||||
@ -21,7 +28,9 @@ function createQuickLinksStore(): Writable<QuickLink[]> & QuickLinkAPI {
|
|||||||
|
|
||||||
async function refresh() {
|
async function refresh() {
|
||||||
const cmds = await getAllQuickLinkCommands()
|
const cmds = await getAllQuickLinkCommands()
|
||||||
store.set(cmds.map((cmd) => ({ link: cmd.data.link, name: cmd.name, icon: cmd.data.icon })))
|
const items = cmds.map((cmd) => ({ link: cmd.data.link, name: cmd.name, icon: cmd.data.icon }))
|
||||||
|
store.set(items)
|
||||||
|
fuse.setCollection(items)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createQuickLink(name: string, link: string, icon: Icon) {
|
async function createQuickLink(name: string, link: string, icon: Icon) {
|
||||||
@ -39,7 +48,11 @@ function createQuickLinksStore(): Writable<QuickLink[]> & QuickLinkAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const quickLinks = createQuickLinksStore()
|
export const quickLinks = createQuickLinksStore()
|
||||||
|
export const quickLinksFiltered = derived([quickLinks, appState], ([$quickLinks, $appState]) => {
|
||||||
|
return $appState.searchTerm
|
||||||
|
? fuse.search($appState.searchTerm).map((result) => result.item)
|
||||||
|
: $quickLinks
|
||||||
|
})
|
||||||
// export const quickLinksFiltered = derived([quickLinks, appState], ([$quicklinks, $appState]) => {
|
// export const quickLinksFiltered = derived([quickLinks, appState], ([$quicklinks, $appState]) => {
|
||||||
// return $quicklinks.filter((lnk) => {
|
// return $quicklinks.filter((lnk) => {
|
||||||
// if ($appState.searchTerm.length === 0) {
|
// if ($appState.searchTerm.length === 0) {
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
// this extra is focused check may be needed because blur event got triggered somehow when window show()
|
// this extra is focused check may be needed because blur event got triggered somehow when window show()
|
||||||
// for edge case: when settings page is opened and focused, switch to main window, the blur event is triggered for main window
|
// for edge case: when settings page is opened and focused, switch to main window, the blur event is triggered for main window
|
||||||
if (!isFocused) {
|
if (!isFocused) {
|
||||||
if ($appConfig.hideOnBlur) {
|
if ($appConfig.hideOnBlur && !$appState.lockHideOnBlur) {
|
||||||
win.hide()
|
win.hide()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,21 +2,23 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { commandLaunchers } from "@/cmds"
|
import { commandLaunchers } from "@/cmds"
|
||||||
import { builtinCmds } from "@/cmds/builtin"
|
import { builtinCmds } from "@/cmds/builtin"
|
||||||
import { systemCommands } from "@/cmds/system"
|
import { systemCommands, systemCommandsFiltered } from "@/cmds/system"
|
||||||
import AppsCmds from "@/components/main/AppsCmds.svelte"
|
import AppsCmds from "@/components/main/AppsCmds.svelte"
|
||||||
import { i18n } from "@/i18n"
|
import { i18n } from "@/i18n"
|
||||||
import * as m from "@/paraglide/messages"
|
import * as m from "@/paraglide/messages"
|
||||||
import {
|
import {
|
||||||
appConfig,
|
appConfig,
|
||||||
appConfigLoaded,
|
appConfigLoaded,
|
||||||
|
appsFiltered,
|
||||||
// appsFiltered,
|
// appsFiltered,
|
||||||
appsLoader,
|
appsLoader,
|
||||||
appState,
|
appState,
|
||||||
devStoreExts,
|
devStoreExts,
|
||||||
// devStoreExtsFiltered,
|
devStoreExtsFiltered,
|
||||||
// installedStoreExtsFiltered,
|
|
||||||
installedStoreExts,
|
installedStoreExts,
|
||||||
quickLinks
|
installedStoreExtsFiltered,
|
||||||
|
quickLinks,
|
||||||
|
quickLinksFiltered
|
||||||
// quickLinksFiltered
|
// quickLinksFiltered
|
||||||
} from "@/stores"
|
} from "@/stores"
|
||||||
import { cmdQueries } from "@/stores/cmdQuery"
|
import { cmdQueries } from "@/stores/cmdQuery"
|
||||||
@ -97,7 +99,7 @@
|
|||||||
<Command.Root
|
<Command.Root
|
||||||
class={cn("h-screen rounded-lg shadow-md")}
|
class={cn("h-screen rounded-lg shadow-md")}
|
||||||
bind:value={$appState.highlightedCmd}
|
bind:value={$appState.highlightedCmd}
|
||||||
shouldFilter={true}
|
shouldFilter={false}
|
||||||
loop
|
loop
|
||||||
>
|
>
|
||||||
<CustomCommandInput
|
<CustomCommandInput
|
||||||
@ -198,9 +200,9 @@
|
|||||||
</CustomCommandInput>
|
</CustomCommandInput>
|
||||||
<Command.List class="max-h-screen grow">
|
<Command.List class="max-h-screen grow">
|
||||||
<Command.Empty data-tauri-drag-region>No results found.</Command.Empty>
|
<Command.Empty data-tauri-drag-region>No results found.</Command.Empty>
|
||||||
{#if $appConfig.extensionsInstallDir && $devStoreExts.length > 0}
|
{#if $appConfig.extensionsInstallDir && $devStoreExtsFiltered.length > 0}
|
||||||
<ExtCmdsGroup
|
<ExtCmdsGroup
|
||||||
extensions={$devStoreExts}
|
extensions={$devStoreExtsFiltered}
|
||||||
heading={m.command_group_heading_dev_ext()}
|
heading={m.command_group_heading_dev_ext()}
|
||||||
isDev={true}
|
isDev={true}
|
||||||
onExtCmdSelect={commandLaunchers.onExtCmdSelect}
|
onExtCmdSelect={commandLaunchers.onExtCmdSelect}
|
||||||
@ -208,35 +210,28 @@
|
|||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if $appConfig.extensionsInstallDir && $installedStoreExts.length > 0}
|
{#if $appConfig.extensionsInstallDir && $installedStoreExtsFiltered.length > 0}
|
||||||
<ExtCmdsGroup
|
<ExtCmdsGroup
|
||||||
extensions={$installedStoreExts}
|
extensions={$installedStoreExtsFiltered}
|
||||||
heading={m.command_group_heading_ext()}
|
heading={m.command_group_heading_ext()}
|
||||||
isDev={false}
|
isDev={false}
|
||||||
hmr={false}
|
hmr={false}
|
||||||
onExtCmdSelect={commandLaunchers.onExtCmdSelect}
|
onExtCmdSelect={commandLaunchers.onExtCmdSelect}
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
<QuickLinks quickLinks={$quickLinks} />
|
|
||||||
<BuiltinCmds builtinCmds={$builtinCmds} />
|
|
||||||
<SystemCmds systemCommands={$systemCommands} />
|
|
||||||
<AppsCmds apps={$appsLoader} />
|
|
||||||
|
|
||||||
<!-- <AppsCmds apps={$appsFiltered} /> -->
|
|
||||||
<!-- {#if $quickLinksFiltered.length > 0}
|
|
||||||
<QuickLinks quickLinks={$quickLinksFiltered} />
|
|
||||||
{/if}
|
|
||||||
{#if $appsFiltered.length > 0}
|
|
||||||
<AppsCmds apps={$appsFiltered} />
|
|
||||||
{/if}
|
|
||||||
{#if $builtinCmds.length > 0}
|
{#if $builtinCmds.length > 0}
|
||||||
<BuiltinCmds builtinCmds={$builtinCmds} />
|
<BuiltinCmds builtinCmds={$builtinCmds} />
|
||||||
{/if}
|
{/if}
|
||||||
{#if $systemCommandsFiltered.length > 0}
|
{#if $systemCommandsFiltered.length > 0}
|
||||||
<SystemCmds systemCommands={$systemCommandsFiltered} />
|
<SystemCmds systemCommands={$systemCommandsFiltered} />
|
||||||
{/if} -->
|
{/if}
|
||||||
<!-- <AppsCmds apps={$appsLoader} /> -->
|
{#if $appsFiltered.length > 0}
|
||||||
<!-- <AppsCmds apps={$appsFiltered} /> -->
|
<AppsCmds apps={$appsFiltered} />
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{#if $quickLinksFiltered.length > 0}
|
||||||
|
<QuickLinks quickLinks={$quickLinksFiltered} />
|
||||||
|
{/if}
|
||||||
</Command.List>
|
</Command.List>
|
||||||
<GlobalCommandPaletteFooter />
|
<GlobalCommandPaletteFooter />
|
||||||
</Command.Root>
|
</Command.Root>
|
||||||
|
@ -6,4 +6,5 @@ export interface AppState {
|
|||||||
loadingBar: boolean
|
loadingBar: boolean
|
||||||
defaultAction: string | null
|
defaultAction: string | null
|
||||||
actionPanel?: ActionSchema.ActionPanel
|
actionPanel?: ActionSchema.ActionPanel
|
||||||
|
lockHideOnBlur: boolean
|
||||||
}
|
}
|
||||||
|
58
pnpm-lock.yaml
generated
58
pnpm-lock.yaml
generated
@ -147,7 +147,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@types/debug':
|
'@types/debug':
|
||||||
specifier: ^4.1.12
|
specifier: ^4.1.12
|
||||||
version: 4.1.12
|
version: 4.1.12
|
||||||
@ -187,7 +187,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@types/fs-extra':
|
'@types/fs-extra':
|
||||||
specifier: ^11.0.4
|
specifier: ^11.0.4
|
||||||
version: 11.0.4
|
version: 11.0.4
|
||||||
@ -248,6 +248,9 @@ importers:
|
|||||||
dompurify:
|
dompurify:
|
||||||
specifier: ^3.2.3
|
specifier: ^3.2.3
|
||||||
version: 3.2.3
|
version: 3.2.3
|
||||||
|
fuse.js:
|
||||||
|
specifier: ^7.1.0
|
||||||
|
version: 7.1.0
|
||||||
gsap:
|
gsap:
|
||||||
specifier: ^3.12.5
|
specifier: ^3.12.5
|
||||||
version: 3.12.5
|
version: 3.12.5
|
||||||
@ -314,7 +317,7 @@ importers:
|
|||||||
version: 2.2.7
|
version: 2.2.7
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@types/semver':
|
'@types/semver':
|
||||||
specifier: ^7.5.8
|
specifier: ^7.5.8
|
||||||
version: 7.5.8
|
version: 7.5.8
|
||||||
@ -465,7 +468,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@types/lodash':
|
'@types/lodash':
|
||||||
specifier: ^4.17.14
|
specifier: ^4.17.14
|
||||||
version: 4.17.14
|
version: 4.17.14
|
||||||
@ -505,7 +508,7 @@ importers:
|
|||||||
version: link:../typescript-config
|
version: link:../typescript-config
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/config-eslint:
|
packages/config-eslint:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -548,7 +551,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/extensions/demo-worker-template-ext:
|
packages/extensions/demo-worker-template-ext:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -573,7 +576,7 @@ importers:
|
|||||||
version: 11.1.6(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3)
|
version: 11.1.6(rollup@4.30.1)(tslib@2.8.1)(typescript@5.7.3)
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
rollup-plugin-visualizer:
|
rollup-plugin-visualizer:
|
||||||
specifier: ^5.12.0
|
specifier: ^5.12.0
|
||||||
version: 5.12.0(rollup@4.30.1)
|
version: 5.12.0(rollup@4.30.1)
|
||||||
@ -680,7 +683,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/grpc:
|
packages/grpc:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -699,7 +702,7 @@ importers:
|
|||||||
version: 0.7.13
|
version: 0.7.13
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@types/google-protobuf':
|
'@types/google-protobuf':
|
||||||
specifier: ^3.15.12
|
specifier: ^3.15.12
|
||||||
version: 3.15.12
|
version: 3.15.12
|
||||||
@ -727,7 +730,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
verify-package-export:
|
verify-package-export:
|
||||||
specifier: ^0.0.3
|
specifier: ^0.0.3
|
||||||
version: 0.0.3(typescript@5.7.3)
|
version: 0.0.3(typescript@5.7.3)
|
||||||
@ -755,7 +758,7 @@ importers:
|
|||||||
version: 2.48.0
|
version: 2.48.0
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@valibot/to-json-schema':
|
'@valibot/to-json-schema':
|
||||||
specifier: 1.0.0-beta.4
|
specifier: 1.0.0-beta.4
|
||||||
version: 1.0.0-beta.4(valibot@1.0.0-beta.10(typescript@5.7.3))
|
version: 1.0.0-beta.4(valibot@1.0.0-beta.10(typescript@5.7.3))
|
||||||
@ -777,7 +780,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/tauri-plugins/jarvis:
|
packages/tauri-plugins/jarvis:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -796,7 +799,7 @@ importers:
|
|||||||
version: 2.48.0
|
version: 2.48.0
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/templates/template-ext-headless:
|
packages/templates/template-ext-headless:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1164,7 +1167,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/types:
|
packages/types:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1174,7 +1177,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
packages/typescript-config: {}
|
packages/typescript-config: {}
|
||||||
|
|
||||||
@ -1240,7 +1243,7 @@ importers:
|
|||||||
version: 0.1.15(lucide-svelte@0.471.0(svelte@5.16.6))(svelte-sonner@0.3.28(svelte@5.16.6))(svelte@5.16.6)(sveltekit-superforms@2.22.1(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(@types/json-schema@7.0.15)(svelte@5.16.6)(typescript@5.7.3))(typescript@5.7.3)
|
version: 0.1.15(lucide-svelte@0.471.0(svelte@5.16.6))(svelte-sonner@0.3.28(svelte@5.16.6))(svelte@5.16.6)(sveltekit-superforms@2.22.1(@sveltejs/kit@2.17.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(svelte@5.16.6)(vite@6.0.7(@types/node@22.13.1)(jiti@2.4.0)(terser@5.36.0)(yaml@2.6.1)))(@types/json-schema@7.0.15)(svelte@5.16.6)(typescript@5.7.3))(typescript@5.7.3)
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
'@typescript-eslint/eslint-plugin':
|
'@typescript-eslint/eslint-plugin':
|
||||||
specifier: ^8.20.0
|
specifier: ^8.20.0
|
||||||
version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3)
|
version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.0))(typescript@5.7.3)
|
||||||
@ -1319,7 +1322,7 @@ importers:
|
|||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/bun':
|
'@types/bun':
|
||||||
specifier: latest
|
specifier: latest
|
||||||
version: 1.2.2
|
version: 1.2.3
|
||||||
|
|
||||||
vendors/tauri-plugin-keyring:
|
vendors/tauri-plugin-keyring:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5127,9 +5130,6 @@ packages:
|
|||||||
'@types/btoa-lite@1.0.2':
|
'@types/btoa-lite@1.0.2':
|
||||||
resolution: {integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==}
|
resolution: {integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==}
|
||||||
|
|
||||||
'@types/bun@1.2.2':
|
|
||||||
resolution: {integrity: sha512-tr74gdku+AEDN5ergNiBnplr7hpDp3V1h7fqI2GcR/rsUaM39jpSeKH0TFibRvU0KwniRx5POgaYnaXbk0hU+w==}
|
|
||||||
|
|
||||||
'@types/bun@1.2.3':
|
'@types/bun@1.2.3':
|
||||||
resolution: {integrity: sha512-054h79ipETRfjtsCW9qJK8Ipof67Pw9bodFWmkfkaUaRiIQ1dIV2VTlheshlBx3mpKr0KeK8VqnMMCtgN9rQtw==}
|
resolution: {integrity: sha512-054h79ipETRfjtsCW9qJK8Ipof67Pw9bodFWmkfkaUaRiIQ1dIV2VTlheshlBx3mpKr0KeK8VqnMMCtgN9rQtw==}
|
||||||
|
|
||||||
@ -6180,9 +6180,6 @@ packages:
|
|||||||
buffer@6.0.3:
|
buffer@6.0.3:
|
||||||
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
||||||
|
|
||||||
bun-types@1.2.2:
|
|
||||||
resolution: {integrity: sha512-RCbMH5elr9gjgDGDhkTTugA21XtJAy/9jkKe/G3WR2q17VPGhcquf9Sir6uay9iW+7P/BV0CAHA1XlHXMAVKHg==}
|
|
||||||
|
|
||||||
bun-types@1.2.3:
|
bun-types@1.2.3:
|
||||||
resolution: {integrity: sha512-P7AeyTseLKAvgaZqQrvp3RqFM3yN9PlcLuSTe7SoJOfZkER73mLdT2vEQi8U64S1YvM/ldcNiQjn0Sn7H9lGgg==}
|
resolution: {integrity: sha512-P7AeyTseLKAvgaZqQrvp3RqFM3yN9PlcLuSTe7SoJOfZkER73mLdT2vEQi8U64S1YvM/ldcNiQjn0Sn7H9lGgg==}
|
||||||
|
|
||||||
@ -7680,6 +7677,10 @@ packages:
|
|||||||
functions-have-names@1.2.3:
|
functions-have-names@1.2.3:
|
||||||
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
||||||
|
|
||||||
|
fuse.js@7.1.0:
|
||||||
|
resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
|
||||||
gauge@3.0.2:
|
gauge@3.0.2:
|
||||||
resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
|
resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
@ -16635,10 +16636,6 @@ snapshots:
|
|||||||
|
|
||||||
'@types/btoa-lite@1.0.2': {}
|
'@types/btoa-lite@1.0.2': {}
|
||||||
|
|
||||||
'@types/bun@1.2.2':
|
|
||||||
dependencies:
|
|
||||||
bun-types: 1.2.2
|
|
||||||
|
|
||||||
'@types/bun@1.2.3':
|
'@types/bun@1.2.3':
|
||||||
dependencies:
|
dependencies:
|
||||||
bun-types: 1.2.3
|
bun-types: 1.2.3
|
||||||
@ -18188,11 +18185,6 @@ snapshots:
|
|||||||
base64-js: 1.5.1
|
base64-js: 1.5.1
|
||||||
ieee754: 1.2.1
|
ieee754: 1.2.1
|
||||||
|
|
||||||
bun-types@1.2.2:
|
|
||||||
dependencies:
|
|
||||||
'@types/node': 22.13.1
|
|
||||||
'@types/ws': 8.5.14
|
|
||||||
|
|
||||||
bun-types@1.2.3:
|
bun-types@1.2.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 22.13.1
|
'@types/node': 22.13.1
|
||||||
@ -19938,6 +19930,8 @@ snapshots:
|
|||||||
|
|
||||||
functions-have-names@1.2.3: {}
|
functions-have-names@1.2.3: {}
|
||||||
|
|
||||||
|
fuse.js@7.1.0: {}
|
||||||
|
|
||||||
gauge@3.0.2:
|
gauge@3.0.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
aproba: 2.0.0
|
aproba: 2.0.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user