2020-04-28 14:05:39 -04:00
|
|
|
import {emojiKeys, emojiHTML, emojiString} from './emoji.js';
|
2022-08-17 15:43:53 -04:00
|
|
|
import {htmlEscape} from 'escape-goat';
|
2020-04-28 14:05:39 -04:00
|
|
|
|
2020-05-20 22:00:43 -04:00
|
|
|
function makeCollections({mentions, emoji}) {
|
|
|
|
const collections = [];
|
|
|
|
|
2023-04-03 06:06:57 -04:00
|
|
|
if (emoji) {
|
2020-05-20 22:00:43 -04:00
|
|
|
collections.push({
|
|
|
|
trigger: ':',
|
|
|
|
requireLeadingSpace: true,
|
|
|
|
values: (query, cb) => {
|
|
|
|
const matches = [];
|
|
|
|
for (const name of emojiKeys) {
|
|
|
|
if (name.includes(query)) {
|
|
|
|
matches.push(name);
|
|
|
|
if (matches.length > 5) break;
|
|
|
|
}
|
2020-04-28 14:05:39 -04:00
|
|
|
}
|
2020-05-20 22:00:43 -04:00
|
|
|
cb(matches);
|
|
|
|
},
|
|
|
|
lookup: (item) => item,
|
|
|
|
selectTemplate: (item) => {
|
2022-11-21 19:58:55 -05:00
|
|
|
if (item === undefined) return null;
|
2020-05-20 22:00:43 -04:00
|
|
|
return emojiString(item.original);
|
|
|
|
},
|
|
|
|
menuItemTemplate: (item) => {
|
2022-08-17 15:43:53 -04:00
|
|
|
return `<div class="tribute-item">${emojiHTML(item.original)}<span>${htmlEscape(item.original)}</span></div>`;
|
2020-04-28 14:05:39 -04:00
|
|
|
}
|
2020-05-20 22:00:43 -04:00
|
|
|
});
|
2020-04-28 14:05:39 -04:00
|
|
|
}
|
|
|
|
|
2023-04-03 06:06:57 -04:00
|
|
|
if (mentions) {
|
2020-05-20 22:00:43 -04:00
|
|
|
collections.push({
|
|
|
|
values: window.config.tributeValues,
|
2021-06-23 19:02:23 -04:00
|
|
|
requireLeadingSpace: true,
|
2020-05-20 22:00:43 -04:00
|
|
|
menuItemTemplate: (item) => {
|
|
|
|
return `
|
|
|
|
<div class="tribute-item">
|
2023-04-03 06:06:57 -04:00
|
|
|
<img src="${htmlEscape(item.original.avatar)}" class="gt-mr-3"/>
|
2022-08-17 15:43:53 -04:00
|
|
|
<span class="name">${htmlEscape(item.original.name)}</span>
|
|
|
|
${item.original.fullname && item.original.fullname !== '' ? `<span class="fullname">${htmlEscape(item.original.fullname)}</span>` : ''}
|
2020-05-20 22:00:43 -04:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
});
|
2020-04-28 14:05:39 -04:00
|
|
|
}
|
|
|
|
|
2020-05-20 22:00:43 -04:00
|
|
|
return collections;
|
|
|
|
}
|
|
|
|
|
2023-04-03 06:06:57 -04:00
|
|
|
export async function attachTribute(element, {mentions, emoji} = {}) {
|
2020-05-20 22:00:43 -04:00
|
|
|
const {default: Tribute} = await import(/* webpackChunkName: "tribute" */'tributejs');
|
2023-04-03 06:06:57 -04:00
|
|
|
const collections = makeCollections({mentions, emoji});
|
2021-06-23 19:02:23 -04:00
|
|
|
const tribute = new Tribute({collection: collections, noMatchTemplate: ''});
|
2023-04-03 06:06:57 -04:00
|
|
|
tribute.attach(element);
|
2020-05-20 22:00:43 -04:00
|
|
|
return tribute;
|
2020-04-28 14:05:39 -04:00
|
|
|
}
|