mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-17 12:37:49 +08:00
55 lines
1.0 KiB
TypeScript
55 lines
1.0 KiB
TypeScript
import { Node, CommandSpec } from '@tiptap/core'
|
|
import { NodeSpec } from 'prosemirror-model'
|
|
|
|
type Level = 1 | 2 | 3 | 4 | 5 | 6
|
|
|
|
interface HeadingOptions {
|
|
levels?: Level[],
|
|
}
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface Editor {
|
|
heading(level: Level): Editor,
|
|
}
|
|
}
|
|
|
|
export default class Heading extends Node {
|
|
|
|
name = 'heading'
|
|
|
|
defaultOptions(): HeadingOptions {
|
|
return {
|
|
levels: [1, 2, 3, 4, 5, 6],
|
|
}
|
|
}
|
|
|
|
schema(): NodeSpec {
|
|
return {
|
|
attrs: {
|
|
level: {
|
|
default: 1,
|
|
},
|
|
},
|
|
content: 'inline*',
|
|
group: 'block',
|
|
defining: true,
|
|
draggable: false,
|
|
parseDOM: this.options.levels
|
|
.map((level: Level) => ({
|
|
tag: `h${level}`,
|
|
attrs: { level },
|
|
})),
|
|
toDOM: node => [`h${node.attrs.level}`, 0],
|
|
}
|
|
}
|
|
|
|
// commands(): CommandSpec {
|
|
// return {
|
|
// heading: (next, { view }) => {
|
|
// toggleBlockType(this.type)(view.state, view.dispatch)
|
|
// next()
|
|
// },
|
|
// }
|
|
// }
|
|
|
|
} |