Add pre-flight checks for zed and deno commands

- Check for zed command availability before extension load
- Verify deno command is installed
- Provide user-friendly error toasts if commands are missing
- Bump package version to 0.0.3
This commit is contained in:
Huakun Shen 2025-02-26 10:27:16 -05:00
parent b0b59edf7e
commit 397468911a
No known key found for this signature in database
2 changed files with 19 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.kunkun.sh", "$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-zed", "name": "kunkun-ext-zed",
"version": "0.0.2", "version": "0.0.3",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"repository": { "repository": {

View File

@ -84,6 +84,24 @@ function openWithZed(path: string) {
class ExtensionTemplate extends TemplateUiCommand { class ExtensionTemplate extends TemplateUiCommand {
async load() { async load() {
shell.hasCommand("zed").then((hasCommand) => {
if (!hasCommand) {
toast.error(
"zed command not installed to PATH, please install it the 'zed' command."
);
return ui.goBack();
}
});
shell.hasCommand("deno").then((hasCommand) => {
if (!hasCommand) {
toast.error(
"This extension requires the 'deno' command to be installed to PATH, but not detected."
);
return ui.goBack();
}
});
ui.setSearchBarPlaceholder( ui.setSearchBarPlaceholder(
"Enter a search term, and press enter to search" "Enter a search term, and press enter to search"
); );