mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
128 lines
2.8 KiB
JavaScript
128 lines
2.8 KiB
JavaScript
|
|
export class TextPostProcessRuler {
|
|
constructor() {
|
|
this.rules = [];
|
|
}
|
|
|
|
getRules() {
|
|
return this.rules;
|
|
}
|
|
|
|
// TODO error handling
|
|
getMatcher() {
|
|
if (this.matcher) { return this.matcher; }
|
|
|
|
this.matcherIndex = [];
|
|
|
|
let rules = this.rules.map((r) =>
|
|
"(" + r.rule.matcher.toString().slice(1,-1) + ")"
|
|
);
|
|
|
|
let i;
|
|
let regexString = "";
|
|
let last = 1;
|
|
|
|
// this code is a bit tricky, our matcher may have multiple capture groups
|
|
// we want to dynamically determine how many
|
|
for(i=0; i<rules.length; i++) {
|
|
this.matcherIndex[i] = last;
|
|
|
|
if (i === rules.length-1) {
|
|
break;
|
|
}
|
|
|
|
if (i>0) {
|
|
regexString = regexString + '|';
|
|
}
|
|
regexString = regexString + rules[i];
|
|
|
|
let regex = new RegExp(regexString + '|(x)');
|
|
last = 'x'.match(regex).length - 1;
|
|
}
|
|
|
|
this.matcher = new RegExp(rules.join('|'), 'g');
|
|
return this.matcher;
|
|
}
|
|
|
|
applyRule(buffer, match, state) {
|
|
let i;
|
|
for(i=0; i<this.rules.length; i++) {
|
|
let index = this.matcherIndex[i];
|
|
|
|
if (match[index]) {
|
|
this.rules[i].rule.onMatch(buffer, match.slice(index, this.matcherIndex[i+1]), state);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO validate inputs
|
|
push(name, rule) {
|
|
this.rules.push({name, rule});
|
|
this.matcher = null;
|
|
}
|
|
|
|
}
|
|
|
|
function allowedBoundary(content, index, utils) {
|
|
let code = content.charCodeAt(index);
|
|
return (utils.isWhiteSpace(code) || utils.isPunctChar(String.fromCharCode(code)));
|
|
}
|
|
|
|
function textPostProcess(content, state, ruler) {
|
|
let result = null,
|
|
match,
|
|
pos = 0;
|
|
|
|
const matcher = ruler.getMatcher();
|
|
|
|
while (match = matcher.exec(content)) {
|
|
// check boundary
|
|
if (match.index > 0) {
|
|
if (!allowedBoundary(content, match.index-1, state.md.utils)) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// check forward boundary as well
|
|
if (match.index + match[0].length < content.length) {
|
|
if (!allowedBoundary(content, match.index + match[0].length, state.md.utils)) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if (match.index > pos) {
|
|
result = result || [];
|
|
let token = new state.Token('text', '', 0);
|
|
token.content = content.slice(pos, match.index);
|
|
result.push(token);
|
|
}
|
|
|
|
result = result || [];
|
|
|
|
ruler.applyRule(result, match, state);
|
|
|
|
pos = match.index + match[0].length;
|
|
}
|
|
|
|
if (result && pos < content.length) {
|
|
let token = new state.Token('text', '', 0);
|
|
token.content = content.slice(pos);
|
|
result.push(token);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
export function setup(helper) {
|
|
helper.registerPlugin(md => {
|
|
const ruler = md.core.textPostProcess.ruler;
|
|
const replacer = (content, state) => textPostProcess(content, state, ruler);
|
|
|
|
md.core.ruler.push('text-post-process', state =>
|
|
md.options.discourse.helpers.textReplace(state, replacer, true)
|
|
);
|
|
});
|
|
}
|