import AutocompleteProvider from './AutocompleteProvider'; import Q from 'q'; import {emojioneList, shortnameToImage} from 'emojione'; import Fuse from 'fuse.js'; const EMOJI_REGEX = /:\w*:?/g; const EMOJI_SHORTNAMES = Object.keys(emojioneList); let instance = null; export default class EmojiProvider extends AutocompleteProvider { constructor() { super(); this.fuse = new Fuse(EMOJI_SHORTNAMES); } getCompletions(query: String) { let completions = []; let matches = query.match(EMOJI_REGEX); let command = matches && matches[0]; if(command) { completions = this.fuse.search(command).map(result => { let shortname = EMOJI_SHORTNAMES[result]; let imageHTML = shortnameToImage(shortname); return { title: shortname, component: (
{shortname}
) }; }).slice(0, 4); } return Q.when(completions); } getName() { return 'Emoji'; } static getInstance() { if(instance == null) instance = new EmojiProvider(); return instance; } }