2020-04-22 04:16:26 +08:00
|
|
|
import { Node, CommandSpec } from '@tiptap/core'
|
|
|
|
import { NodeSpec } from 'prosemirror-model'
|
2020-04-22 04:48:27 +08:00
|
|
|
import VerEx from 'verbal-expressions'
|
|
|
|
import { textblockTypeInputRule } from 'prosemirror-inputrules'
|
2020-04-22 04:16:26 +08:00
|
|
|
|
|
|
|
type Level = 1 | 2 | 3 | 4 | 5 | 6
|
|
|
|
|
|
|
|
interface HeadingOptions {
|
2020-08-22 03:01:41 +08:00
|
|
|
levels: Level[],
|
2020-04-22 04:16:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
|
|
interface Editor {
|
|
|
|
heading(level: Level): Editor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-09 05:44:45 +08:00
|
|
|
export default new Node<HeadingOptions>()
|
|
|
|
.name('heading')
|
|
|
|
.defaults({
|
|
|
|
levels: [1, 2, 3, 4, 5, 6],
|
|
|
|
})
|
|
|
|
.schema(({ options }) => ({
|
|
|
|
attrs: {
|
|
|
|
level: {
|
|
|
|
default: 1,
|
2020-04-22 04:36:31 +08:00
|
|
|
},
|
2020-09-09 05:44:45 +08:00
|
|
|
},
|
|
|
|
content: 'inline*',
|
|
|
|
group: 'block',
|
|
|
|
defining: true,
|
|
|
|
draggable: false,
|
|
|
|
parseDOM: options.levels
|
|
|
|
.map((level: Level) => ({
|
|
|
|
tag: `h${level}`,
|
|
|
|
attrs: { level },
|
|
|
|
})),
|
|
|
|
toDOM: node => [`h${node.attrs.level}`, 0],
|
|
|
|
}))
|
|
|
|
.commands(({ editor, name }) => ({
|
|
|
|
[name]: next => attrs => {
|
|
|
|
editor.toggleNode(name, 'paragraph', attrs)
|
|
|
|
next()
|
|
|
|
},
|
|
|
|
}))
|
2020-09-10 00:07:17 +08:00
|
|
|
.inputRules(({ options, type }) => {
|
|
|
|
return options.levels.map((level: Level) => {
|
|
|
|
const regex = VerEx()
|
|
|
|
.startOfLine()
|
|
|
|
.find('#')
|
|
|
|
.repeatPrevious(level)
|
|
|
|
.whitespace()
|
|
|
|
.endOfLine()
|
2020-09-09 05:44:45 +08:00
|
|
|
|
2020-09-10 00:07:17 +08:00
|
|
|
return textblockTypeInputRule(regex, type, { level })
|
|
|
|
})
|
|
|
|
})
|
2020-09-09 05:44:45 +08:00
|
|
|
.create()
|