import type { ExtendedRegExpMatchArray } from '@tiptap/core' import { Node, mergeAttributes, nodeInputRule, nodePasteRule, } from '@tiptap/core' import { emojiRegEx, getEmojiAttributes } from '~/config/emojis' function wrapHandler any>(handler: T): T { return ((...args: any[]) => { try { return handler(...args) } catch (e) { return null } }) } function createEmojiRule(nodeRule: NR, type: Parameters[0]['type']): ReturnType[] { const rule = nodeRule({ find: emojiRegEx as RegExp, type, getAttributes: (match: ExtendedRegExpMatchArray) => { const [native] = match return getEmojiAttributes(native) }, }) as ReturnType // Error catch for unsupported emoji rule.handler = wrapHandler(rule.handler.bind(rule)) return [rule] } export const TiptapPluginEmoji = Node.create({ name: 'em-emoji', inline: () => true, group: () => 'inline', draggable: false, parseHTML() { return [ { tag: 'img.iconify-emoji', }, ] }, addAttributes() { return { alt: { default: null, }, src: { default: null, }, class: { default: null, }, } }, renderHTML(args) { return ['img', mergeAttributes(this.options.HTMLAttributes, args.HTMLAttributes)] }, addCommands() { return { insertEmoji: code => ({ commands }) => { return commands.insertContent({ type: this.name, attrs: getEmojiAttributes(code), }) }, } }, addInputRules() { return createEmojiRule(nodeInputRule, this.type) }, addPasteRules() { return createEmojiRule(nodePasteRule, this.type) }, })