2020-11-16 06:25:25 +08:00
|
|
|
import { Command, NodeExtension, 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 06:25:25 +08:00
|
|
|
const HorizontalRule = NodeExtension.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-10-23 04:40:40 +08:00
|
|
|
horizontalRule: (): Command => ({ tr }) => {
|
2020-10-22 18:34:49 +08:00
|
|
|
tr.replaceSelectionWith(this.type.create())
|
|
|
|
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
addInputRules() {
|
|
|
|
return [
|
|
|
|
nodeInputRule(/^(?:---|___\s|\*\*\*\s)$/, this.type),
|
|
|
|
]
|
|
|
|
},
|
|
|
|
})
|
2020-10-23 04:40:40 +08:00
|
|
|
|
|
|
|
export default HorizontalRule
|
|
|
|
|
2020-11-11 04:18:22 +08:00
|
|
|
declare module '@tiptap/core' {
|
2020-10-23 04:40:40 +08:00
|
|
|
interface AllExtensions {
|
|
|
|
HorizontalRule: typeof HorizontalRule,
|
|
|
|
}
|
|
|
|
}
|