tiptap/packages/extension-hard-break/src/index.ts
2020-11-18 12:11:45 +01:00

58 lines
1.1 KiB
TypeScript

import { Command, Node } from '@tiptap/core'
import { exitCode } from 'prosemirror-commands'
const HardBreak = Node.create({
name: 'hardBreak',
inline: true,
group: 'inline',
selectable: false,
parseHTML() {
return [
{ tag: 'br' },
]
},
renderHTML({ HTMLAttributes }) {
return ['br', HTMLAttributes]
},
addCommands() {
return {
/**
* Add a hard break
*/
setHardBreak: (): Command => ({ commands, state, dispatch }) => {
return commands.try([
() => exitCode(state, dispatch),
() => {
if (dispatch) {
state.tr.replaceSelectionWith(this.type.create()).scrollIntoView()
}
return true
},
])
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Enter': () => this.editor.commands.setHardBreak(),
'Shift-Enter': () => this.editor.commands.setHardBreak(),
}
},
})
export default HardBreak
declare module '@tiptap/core' {
interface AllExtensions {
HardBreak: typeof HardBreak,
}
}