2020-09-24 06:29:05 +08:00
|
|
|
import {
|
2020-10-22 18:34:49 +08:00
|
|
|
Command, createMark, markInputRule, markPasteRule,
|
2020-09-24 06:29:05 +08:00
|
|
|
} from '@tiptap/core'
|
2020-09-22 05:17:30 +08:00
|
|
|
|
2020-09-24 06:37:31 +08:00
|
|
|
export const starInputRegex = /(?:^|\s)((?:\*\*)((?:[^*]+))(?:\*\*))$/gm
|
|
|
|
export const starPasteRegex = /(?:^|\s)((?:\*\*)((?:[^*]+))(?:\*\*))/gm
|
2020-09-10 00:47:47 +08:00
|
|
|
export const underscoreInputRegex = /(?:^|\s)((?:__)((?:[^__]+))(?:__))$/gm
|
|
|
|
export const underscorePasteRegex = /(?:^|\s)((?:__)((?:[^__]+))(?:__))/gm
|
|
|
|
|
2020-10-23 04:40:40 +08:00
|
|
|
const Bold = createMark({
|
2020-10-22 18:34:49 +08:00
|
|
|
name: 'bold',
|
|
|
|
|
|
|
|
parseHTML() {
|
|
|
|
return [
|
2020-09-09 05:44:45 +08:00
|
|
|
{
|
|
|
|
tag: 'strong',
|
2020-04-02 20:34:07 +08:00
|
|
|
},
|
2020-09-09 05:44:45 +08:00
|
|
|
{
|
|
|
|
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,
|
|
|
|
},
|
2020-10-22 18:34:49 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
renderHTML({ attributes }) {
|
|
|
|
return ['strong', attributes, 0]
|
|
|
|
},
|
|
|
|
|
|
|
|
addCommands() {
|
|
|
|
return {
|
2020-10-23 04:40:40 +08:00
|
|
|
/**
|
|
|
|
* bold command
|
|
|
|
*/
|
|
|
|
bold: (): Command => ({ commands }) => {
|
2020-10-22 18:34:49 +08:00
|
|
|
return commands.toggleMark('bold')
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
addKeyboardShortcuts() {
|
|
|
|
return {
|
|
|
|
'Mod-b': () => this.editor.bold(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
addInputRules() {
|
|
|
|
return [
|
|
|
|
markInputRule(starInputRegex, this.type),
|
|
|
|
markInputRule(underscoreInputRegex, this.type),
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
addPasteRules() {
|
|
|
|
return [
|
|
|
|
markPasteRule(starPasteRegex, this.type),
|
|
|
|
markPasteRule(underscorePasteRegex, this.type),
|
|
|
|
]
|
|
|
|
},
|
|
|
|
})
|
2020-10-23 04:40:40 +08:00
|
|
|
|
|
|
|
export default Bold
|
|
|
|
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
|
|
interface AllExtensions {
|
|
|
|
Bold: typeof Bold,
|
|
|
|
}
|
|
|
|
}
|