Merge pull request #1 from HuakunShen/main

feat: Add repository info and emoji name copy action
This commit is contained in:
Anshul Raj Verma 2025-02-26 21:08:36 +05:30 committed by GitHub
commit 9cff870b77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 29 additions and 2 deletions

View File

@ -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",

View File

@ -44,6 +44,7 @@ class Emoji extends TemplateUiCommand {
async load(): Promise<void> {
// 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<void> {
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();