quilljs-markdown
Version:
Markdown for Quill Editor
48 lines (43 loc) • 1.5 kB
JavaScript
import AbstractTag from '../AbstractTag.js'
import meta from './meta.js'
class Link extends AbstractTag {
constructor (quillJS, options = {}) {
super()
this.quillJS = quillJS
this.name = 'link'
this.pattern = this._getCustomPatternOrDefault(options, this.name, /(?:\[(.+?)\])(?:\((.+?)\))/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) => {
const match = pattern.exec(text)
const startIndex = lineStart + match.index
const linkStartIndex = text.search(pattern)
const matchedText = text.match(pattern)[0]
const hrefText = text.match(/(?:\[(.*?)\])/g)[0]
const hrefLink = text.match(/(?:\((.*?)\))/g)[0]
if (!this.activeTags.length) {
resolve(false)
return
}
if (linkStartIndex !== -1) {
setTimeout(() => {
const removeOffset = startIndex
this.quillJS.deleteText(removeOffset, matchedText.length)
this.quillJS.insertText(removeOffset, hrefText.slice(1, hrefText.length - 1),
'link', hrefLink.slice(1, hrefLink.length - 1))
resolve(true)
}, 0)
} else {
resolve(false)
}
})
}
}
}
export default Link