1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-08 23:36:49 +01:00
elk/composables/tiptap/emoji.ts
2022-12-27 20:13:50 +01:00

60 lines
976 B
TypeScript

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 }
},
}),
]
},
})