2020-11-16 18:19:43 +08:00
|
|
|
import { Command, Node, nodeInputRule } from '@tiptap/core'
|
2020-10-22 18:34:49 +08:00
|
|
|
|
2020-11-13 23:44:22 +08:00
|
|
|
export interface HorizontalRuleOptions {
|
|
|
|
HTMLAttributes: {
|
|
|
|
[key: string]: any
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-11-16 18:19:43 +08:00
|
|
|
const HorizontalRule = Node.create({
|
2020-10-22 18:34:49 +08:00
|
|
|
name: 'horizontalRule',
|
|
|
|
|
2020-11-13 23:44:22 +08:00
|
|
|
defaultOptions: <HorizontalRuleOptions>{
|
|
|
|
HTMLAttributes: {},
|
|
|
|
},
|
|
|
|
|
2020-10-22 18:34:49 +08:00
|
|
|
group: 'block',
|
|
|
|
|
|
|
|
parseHTML() {
|
|
|
|
return [
|
|
|
|
{ tag: 'hr' },
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2020-11-13 23:07:20 +08:00
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
|
|
return ['hr', HTMLAttributes]
|
2020-10-22 18:34:49 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
addCommands() {
|
|
|
|
return {
|
2020-11-13 22:08:30 +08:00
|
|
|
/**
|
|
|
|
* Add a horizontal rule
|
|
|
|
*/
|
2020-11-18 19:26:13 +08:00
|
|
|
setHorizontalRule: (): Command => ({ tr, dispatch }) => {
|
|
|
|
if (dispatch) {
|
|
|
|
tr.replaceSelectionWith(this.type.create())
|
|
|
|
}
|
2020-10-22 18:34:49 +08:00
|
|
|
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
addInputRules() {
|
|
|
|
return [
|
|
|
|
nodeInputRule(/^(?:---|___\s|\*\*\*\s)$/, this.type),
|
|
|
|
]
|
|
|
|
},
|
|
|
|
})
|
2020-10-23 04:40:40 +08:00
|
|
|
|
|
|
|
export default HorizontalRule
|
|
|
|
|
2020-11-16 23:58:30 +08:00
|
|
|
declare module '@tiptap/core' {
|
|
|
|
interface AllExtensions {
|
|
|
|
HorizontalRule: typeof HorizontalRule,
|
2020-10-23 04:40:40 +08:00
|
|
|
}
|
|
|
|
}
|