mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-29 08:19:34 +08:00
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
import { Mark, CommandSpec, markInputRule, markPasteRule } from '@tiptap/core'
|
|
import { MarkSpec } from 'prosemirror-model'
|
|
import VerEx from 'verbal-expressions'
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface Editor {
|
|
bold(): Editor,
|
|
}
|
|
}
|
|
|
|
export default class Bold extends Mark {
|
|
|
|
name = 'bold'
|
|
|
|
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],
|
|
}
|
|
}
|
|
|
|
commands(): CommandSpec {
|
|
return {
|
|
bold: next => () => {
|
|
this.editor.toggleMark(this.name)
|
|
next()
|
|
},
|
|
}
|
|
}
|
|
|
|
keys() {
|
|
return {
|
|
'Mod-b': () => this.editor.bold()
|
|
}
|
|
}
|
|
|
|
inputRules() {
|
|
return ['**', '__'].map(character => {
|
|
const regex = VerEx()
|
|
.add('(?:^|\\s)')
|
|
.beginCapture()
|
|
.find(character)
|
|
.beginCapture()
|
|
.somethingBut(character)
|
|
.endCapture()
|
|
.find(character)
|
|
.endCapture()
|
|
.endOfLine()
|
|
|
|
return markInputRule(regex, this.type)
|
|
})
|
|
}
|
|
|
|
pasteRules() {
|
|
return ['**', '__'].map(character => {
|
|
const regex = VerEx()
|
|
.add('(?:^|\\s)')
|
|
.beginCapture()
|
|
.find(character)
|
|
.beginCapture()
|
|
.somethingBut(character)
|
|
.endCapture()
|
|
.find(character)
|
|
.endCapture()
|
|
|
|
return markPasteRule(regex, this.type)
|
|
})
|
|
}
|
|
|
|
} |