snort/packages/app/src/emoji-search.ts
2023-08-17 20:35:52 +01:00

13 lines
398 B
TypeScript

import { matchSorter } from "match-sorter";
export default async function searchEmoji(key: string) {
const emoji = await import("emojilib");
/* build proper library with included name of the emoji */
const library = Object.entries(emoji).map(([emoji, keywords]) => ({
name: keywords[0],
keywords,
char: emoji,
}));
return matchSorter(library, key, { keys: ["keywords"] });
}