tiptap/packages/extension-bold/index.ts

47 lines
946 B
TypeScript
Raw Normal View History

2020-03-30 18:40:25 +08:00
import { Mark } from '@tiptap/core'
import { toggleMark } from 'prosemirror-commands'
2020-04-01 04:57:39 +08:00
import { MarkSpec } from 'prosemirror-model'
2020-03-30 18:40:25 +08:00
2020-04-01 04:17:54 +08:00
declare module '@tiptap/core/src/Editor' {
interface Editor {
bold(): Editor,
}
}
2020-03-30 18:40:25 +08:00
export default class Bold extends Mark {
name = 'bold'
created() {
2020-03-30 18:43:41 +08:00
this.editor.registerCommand('bold', (next, { view }) => {
toggleMark(this.schemaType)(view.state, view.dispatch)
2020-03-30 18:40:25 +08:00
next()
})
}
2020-04-01 04:57:39 +08:00
schema(): MarkSpec {
2020-03-30 18:40:25 +08:00
return {
parseDOM: [
{
tag: 'strong',
},
{
tag: 'b',
2020-04-01 04:57:39 +08:00
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,
2020-03-30 18:40:25 +08:00
},
],
toDOM: () => ['strong', 0],
}
}
2020-04-01 04:17:54 +08:00
keys() {
return {
'Mod-b': () => this.editor.bold(),
}
}
2020-03-30 18:40:25 +08:00
}