mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-22 01:19:13 +01:00
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
import type { Plugin } from "@yaakapp-internal/models";
|
|
import { pluginsAtom } from "@yaakapp-internal/models";
|
|
import type { PluginMetadata } from "@yaakapp-internal/plugins";
|
|
import { useAtomValue } from "jotai";
|
|
import { queryClient } from "../lib/queryClient";
|
|
import { invokeCmd } from "../lib/tauri";
|
|
|
|
function pluginInfoKey(id: string | null, plugin: Plugin | null) {
|
|
return ["plugin_info", id ?? "n/a", plugin?.updatedAt ?? "n/a"];
|
|
}
|
|
|
|
export function usePluginInfo(id: string | null) {
|
|
const plugins = useAtomValue(pluginsAtom);
|
|
// Get the plugin so we can refetch whenever it's updated
|
|
const plugin = plugins.find((p) => p.id === id);
|
|
return useQuery({
|
|
queryKey: pluginInfoKey(id, plugin ?? null),
|
|
placeholderData: (prev) => prev, // Keep previous data on refetch
|
|
queryFn: () => {
|
|
if (id == null) return null;
|
|
return invokeCmd<PluginMetadata>("cmd_plugin_info", { id });
|
|
},
|
|
});
|
|
}
|
|
|
|
export function invalidateAllPluginInfo() {
|
|
queryClient.invalidateQueries({ queryKey: ["plugin_info"] }).catch(console.error);
|
|
}
|