mirror of
https://github.com/arv-anshul/kunkun-search-emoji.git
synced 2025-04-04 09:46:43 +00:00
feat: Add repository info and emoji name copy action
This commit is contained in:
parent
386083f85b
commit
d63df8a813
@ -3,6 +3,10 @@
|
|||||||
"name": "kunkun-search-emoji",
|
"name": "kunkun-search-emoji",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/arv-anshul/kunkun-search-emoji"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "Search Emoji",
|
"name": "Search Emoji",
|
||||||
|
27
src/index.ts
27
src/index.ts
@ -44,6 +44,7 @@ class Emoji extends TemplateUiCommand {
|
|||||||
async load(): Promise<void> {
|
async load(): Promise<void> {
|
||||||
// UI tweaks
|
// UI tweaks
|
||||||
ui.setSearchBarPlaceholder("Search Emoji Name...");
|
ui.setSearchBarPlaceholder("Search Emoji Name...");
|
||||||
|
await ui.render(new List.List({ items: [] })); // render an empty list to render skeleton view quickly
|
||||||
|
|
||||||
let emojiSections = getEmojisSections();
|
let emojiSections = getEmojisSections();
|
||||||
return ui.render(
|
return ui.render(
|
||||||
@ -71,6 +72,14 @@ class Emoji extends TemplateUiCommand {
|
|||||||
value: "simple-icons:github",
|
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> {
|
onActionSelected(value: string): Promise<void> {
|
||||||
switch (value) {
|
switch (value) {
|
||||||
// case "copy-slug":
|
|
||||||
// return clipboard.writeText()
|
|
||||||
case "open-ext-repo":
|
case "open-ext-repo":
|
||||||
return open.url("https://github.com/arv-anshul/kunkun-search-emoji");
|
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:
|
default:
|
||||||
toast.error("Action Fallback!");
|
toast.error("Action Fallback!");
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user