) => void) => {
const matches = [];
for (const name of emojiKeys) {
if (name.includes(query)) {
matches.push(name);
if (matches.length > 5) break;
}
}
cb(matches);
},
lookup: (item) => item,
selectTemplate: (item) => {
if (item === undefined) return '';
return emojiString(item.original) ?? '';
},
menuItemTemplate: (item) => {
return html`${htmlRaw(emojiHTML(item.original))}${item.original}
`;
},
};
const mentionCollection: TributeCollection> = {
values: window.config.mentionValues,
requireLeadingSpace: true,
menuItemTemplate: (item) => {
const fullNameHtml = item.original.fullname && item.original.fullname !== '' ? html`${item.original.fullname}` : '';
return html`
${item.original.name}
${htmlRaw(fullNameHtml)}
`;
},
};
const tribute = new Tribute({
collection: [emojiCollection as TributeCollection, mentionCollection],
noMatchTemplate: () => '',
});
tribute.attach(element);
return tribute;
}