mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-17 20:47:49 +08:00
47 lines
946 B
TypeScript
47 lines
946 B
TypeScript
import { Mark } from '@tiptap/core'
|
|
import { toggleMark } from 'prosemirror-commands'
|
|
import { MarkSpec } from 'prosemirror-model'
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface Editor {
|
|
bold(): Editor,
|
|
}
|
|
}
|
|
|
|
export default class Bold extends Mark {
|
|
|
|
name = 'bold'
|
|
|
|
created() {
|
|
this.editor.registerCommand('bold', (next, { view }) => {
|
|
toggleMark(this.schemaType)(view.state, view.dispatch)
|
|
next()
|
|
})
|
|
}
|
|
|
|
schema(): MarkSpec {
|
|
return {
|
|
parseDOM: [
|
|
{
|
|
tag: 'strong',
|
|
},
|
|
{
|
|
tag: 'b',
|
|
getAttrs: node => (node as HTMLElement).style.fontWeight !== 'normal' && null,
|
|
},
|
|
{
|
|
style: 'font-weight',
|
|
getAttrs: value => /^(bold(er)?|[5-9]\d{2,})$/.test(value as string) && null,
|
|
},
|
|
],
|
|
toDOM: () => ['strong', 0],
|
|
}
|
|
}
|
|
|
|
keys() {
|
|
return {
|
|
'Mod-b': () => this.editor.bold(),
|
|
}
|
|
}
|
|
|
|
} |