mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-29 10:28:24 +00:00 
			
		
		
		
	1. Fix #20606 2. Fix #34246 3. Fix missing spaces, fix misspells, no visual change. 4. Fix missing "not-mobile", fix #34265 --------- Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {emojiKeys, emojiHTML, emojiString} from './emoji.ts';
 | |
| import {htmlEscape} from 'escape-goat';
 | |
| 
 | |
| type TributeItem = Record<string, any>;
 | |
| 
 | |
| export async function attachTribute(element: HTMLElement) {
 | |
|   const {default: Tribute} = await import(/* webpackChunkName: "tribute" */'tributejs');
 | |
| 
 | |
|   const collections = [
 | |
|     { // 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: TributeItem) => item,
 | |
|       selectTemplate: (item: TributeItem) => {
 | |
|         if (item === undefined) return null;
 | |
|         return emojiString(item.original);
 | |
|       },
 | |
|       menuItemTemplate: (item: TributeItem) => {
 | |
|         return `<div class="tribute-item">${emojiHTML(item.original)}<span>${htmlEscape(item.original)}</span></div>`;
 | |
|       },
 | |
|     }, { // mentions
 | |
|       values: window.config.mentionValues ?? [],
 | |
|       requireLeadingSpace: true,
 | |
|       menuItemTemplate: (item: TributeItem) => {
 | |
|         return `
 | |
|           <div class="tribute-item">
 | |
|             <img alt src="${htmlEscape(item.original.avatar)}" width="21" height="21"/>
 | |
|             <span class="name">${htmlEscape(item.original.name)}</span>
 | |
|             ${item.original.fullname && item.original.fullname !== '' ? `<span class="fullname">${htmlEscape(item.original.fullname)}</span>` : ''}
 | |
|           </div>
 | |
|         `;
 | |
|       },
 | |
|     },
 | |
|   ];
 | |
| 
 | |
|   // @ts-expect-error TS2351: This expression is not constructable (strange, why)
 | |
|   const tribute = new Tribute({collection: collections, noMatchTemplate: ''});
 | |
|   tribute.attach(element);
 | |
|   return tribute;
 | |
| }
 |