From d63df8a8131d2f09b408ef2154d34e2eaaf87c0c Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Wed, 26 Feb 2025 06:24:08 -0500 Subject: [PATCH] feat: Add repository info and emoji name copy action --- package.json | 4 ++++ src/index.ts | 27 +++++++++++++++++++++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 21da77a..04c195e 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,10 @@ "name": "kunkun-search-emoji", "version": "0.0.1", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/arv-anshul/kunkun-search-emoji" + }, "type": "module", "kunkun": { "name": "Search Emoji", diff --git a/src/index.ts b/src/index.ts index 37ce004..532376d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -44,6 +44,7 @@ class Emoji extends TemplateUiCommand { async load(): Promise { // UI tweaks ui.setSearchBarPlaceholder("Search Emoji Name..."); + await ui.render(new List.List({ items: [] })); // render an empty list to render skeleton view quickly let emojiSections = getEmojisSections(); return ui.render( @@ -71,6 +72,14 @@ class Emoji extends TemplateUiCommand { value: "simple-icons:github", }), }), + new Action.Action({ + title: "Copy Emoji Name", + value: "copy-emoji-name", + icon: new Icon({ + type: IconEnum.Iconify, + value: "tabler:copy", + }), + }), ], }), }) @@ -79,10 +88,24 @@ class Emoji extends TemplateUiCommand { onActionSelected(value: string): Promise { switch (value) { - // case "copy-slug": - // return clipboard.writeText() case "open-ext-repo": return open.url("https://github.com/arv-anshul/kunkun-search-emoji"); + case "copy-emoji-name": + if (this.highlightedListItemValue) { + return clipboard + .writeText(this.highlightedListItemValue) + .then(() => { + toast.success(`Copied: ${this.highlightedListItemValue}`); + }) + .catch((e) => { + console.error(e); + toast.error( + `Error while copying emoji ${this.highlightedListItemValue}!` + ); + }); + } else { + return toast.error("No emoji selected!"); + } default: toast.error("Action Fallback!"); return Promise.resolve();