mirror of
https://github.com/go-gitea/gitea
synced 2026-02-03 08:50:36 +00:00
Removes `@ts-expect-error` in the code base and forbids it. --------- Signed-off-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: silverwind <115237+silverwind@users.noreply.github.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import {emojiKeys, emojiHTML, emojiString} from './emoji.ts';
|
|
import {html, htmlRaw} from '../utils/html.ts';
|
|
import type {TributeCollection} from 'tributejs';
|
|
|
|
export async function attachTribute(element: HTMLElement) {
|
|
const {default: Tribute} = await import(/* webpackChunkName: "tribute" */'tributejs');
|
|
|
|
const emojiCollection: TributeCollection<string> = { // emojis
|
|
trigger: ':',
|
|
requireLeadingSpace: true,
|
|
values: (query: string, cb: (matches: Array<string>) => 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`<div class="tribute-item">${htmlRaw(emojiHTML(item.original))}<span>${item.original}</span></div>`;
|
|
},
|
|
};
|
|
|
|
const mentionCollection: TributeCollection<Record<string, any>> = {
|
|
values: window.config.mentionValues,
|
|
requireLeadingSpace: true,
|
|
menuItemTemplate: (item) => {
|
|
const fullNameHtml = item.original.fullname && item.original.fullname !== '' ? html`<span class="fullname">${item.original.fullname}</span>` : '';
|
|
return html`
|
|
<div class="tribute-item">
|
|
<img alt src="${item.original.avatar}" width="21" height="21"/>
|
|
<span class="name">${item.original.name}</span>
|
|
${htmlRaw(fullNameHtml)}
|
|
</div>
|
|
`;
|
|
},
|
|
};
|
|
|
|
const tribute = new Tribute({
|
|
collection: [emojiCollection as TributeCollection<any>, mentionCollection],
|
|
noMatchTemplate: () => '',
|
|
});
|
|
tribute.attach(element);
|
|
return tribute;
|
|
}
|