import { Node, mergeAttributes, nodeInputRule, } from '@tiptap/core' export const Emoji = Node.create({ name: 'em-emoji', inline: () => true, group: () => 'inline', draggable: false, parseHTML() { return [ { tag: 'em-emoji[native]', }, ] }, addAttributes() { return { native: { default: null, }, } }, renderHTML(args) { return ['em-emoji', mergeAttributes(this.options.HTMLAttributes, args.HTMLAttributes)] }, addCommands() { return { insertEmoji: name => ({ commands }) => { return commands.insertContent({ type: this.name, attrs: { native: name, }, }) }, } }, addInputRules() { return [ nodeInputRule({ find: EMOJI_REGEX, type: this.type, getAttributes: (match) => { const [native] = match return { native } }, }), ] }, })