refactor: restructure extensions

This commit is contained in:
Florian Wiech
2020-12-04 20:56:22 +01:00
parent e171f381a8
commit 11de3a287f
31 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
import { Command, Node, mergeAttributes } from '@tiptap/core'
export interface ParagraphOptions {
HTMLAttributes: {
[key: string]: any
},
}
const Paragraph = Node.create({
name: 'paragraph',
defaultOptions: <ParagraphOptions>{
HTMLAttributes: {},
},
group: 'block',
content: 'inline*',
parseHTML() {
return [
{ tag: 'p' },
]
},
renderHTML({ HTMLAttributes }) {
return ['p', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
addCommands() {
return {
/**
* Toggle a paragraph
*/
setParagraph: (): Command => ({ commands }) => {
return commands.toggleNode('paragraph', 'paragraph')
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Alt-0': () => this.editor.commands.setParagraph(),
}
},
})
export default Paragraph
declare module '@tiptap/core' {
interface AllExtensions {
Paragraph: typeof Paragraph,
}
}