quilljs-markdown
Version:
Markdown for Quill Editor
42 lines (37 loc) • 1.24 kB
JavaScript
import AbstractTag from '../AbstractTag.js'
import meta from './meta.js'
class Bold extends AbstractTag {
constructor (quillJS, options = {}) {
super()
this.quillJS = quillJS
this.name = 'bold'
this.pattern = this._getCustomPatternOrDefault(options, this.name, /(\*|_){2}(.+?)(?:\1){2}/g)
this.getAction.bind(this)
this._meta = meta()
this.activeTags = this._getActiveTagsWithoutIgnore(this._meta.applyHtmlTags, options.ignoreTags)
}
getAction () {
return {
name: this.name,
pattern: this.pattern,
action: (text, selection, pattern, lineStart) => new Promise((resolve) => {
let match = pattern.exec(text)
const [annotatedText, , matchedText] = match
const startIndex = lineStart + match.index
if (text.match(/^([*_ \n]+)$/g) || !this.activeTags.length) {
resolve(false)
return
}
setTimeout(() => {
this.quillJS.deleteText(startIndex, annotatedText.length)
setTimeout(() => {
this.quillJS.insertText(startIndex, matchedText, { bold: true })
this.quillJS.format('bold', false)
resolve(true)
})
}, 0)
})
}
}
}
export default Bold