rescope
This commit is contained in:
parent
d93debc634
commit
4362460441
|
@ -1,9 +1,5 @@
|
||||||
import Component from "@glimmer/component";
|
import Component from "@glimmer/component";
|
||||||
import { tracked } from "@glimmer/tracking";
|
import { tracked } from "@glimmer/tracking";
|
||||||
import {
|
|
||||||
createWatchedWordRegExp,
|
|
||||||
toWatchedWord,
|
|
||||||
} from "discourse-common/utils/watched-words";
|
|
||||||
|
|
||||||
export default class WatchedWordTest extends Component {
|
export default class WatchedWordTest extends Component {
|
||||||
@tracked value;
|
@tracked value;
|
||||||
|
@ -31,7 +27,8 @@ export default class WatchedWordTest extends Component {
|
||||||
if (this.isReplace || this.isLink) {
|
if (this.isReplace || this.isLink) {
|
||||||
const matches = [];
|
const matches = [];
|
||||||
this.args.model.watchedWord.words.forEach((word) => {
|
this.args.model.watchedWord.words.forEach((word) => {
|
||||||
const regexp = createWatchedWordRegExp(word);
|
const caseFlag = word.case_sensitive ? "" : "i";
|
||||||
|
const regexp = new RegExp(word.regexp, `${caseFlag}gu`);
|
||||||
let match;
|
let match;
|
||||||
|
|
||||||
while ((match = regexp.exec(this.value)) !== null) {
|
while ((match = regexp.exec(this.value)) !== null) {
|
||||||
|
@ -45,7 +42,8 @@ export default class WatchedWordTest extends Component {
|
||||||
} else if (this.isTag) {
|
} else if (this.isTag) {
|
||||||
const matches = {};
|
const matches = {};
|
||||||
this.args.model.watchedWord.words.forEach((word) => {
|
this.args.model.watchedWord.words.forEach((word) => {
|
||||||
const regexp = createWatchedWordRegExp(word);
|
const caseFlag = word.case_sensitive ? "" : "i";
|
||||||
|
const regexp = new RegExp(word.regexp, `${caseFlag}gu`);
|
||||||
let match;
|
let match;
|
||||||
|
|
||||||
while ((match = regexp.exec(this.value)) !== null) {
|
while ((match = regexp.exec(this.value)) !== null) {
|
||||||
|
@ -66,12 +64,13 @@ export default class WatchedWordTest extends Component {
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
let matches = [];
|
let matches = [];
|
||||||
this.args.model.watchedWord.compiledRegularExpression.forEach(
|
this.args.model.watchedWord.compiledRegularExpression.forEach((entry) => {
|
||||||
(regexp) => {
|
const [regexp, options] = Object.entries(entry)[0];
|
||||||
const wordRegexp = createWatchedWordRegExp(toWatchedWord(regexp));
|
const caseFlag = options.case_sensitive ? "" : "i";
|
||||||
matches.push(...(this.value.match(wordRegexp) || []));
|
const wordRegexp = new RegExp(regexp, `${caseFlag}gu`);
|
||||||
}
|
|
||||||
);
|
matches.push(...(this.value.match(wordRegexp) || []));
|
||||||
|
});
|
||||||
|
|
||||||
return matches;
|
return matches;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
export function createWatchedWordRegExp(word) {
|
|
||||||
const caseFlag = word.case_sensitive ? "" : "i";
|
|
||||||
return new RegExp(word.regexp, `${caseFlag}gu`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function toWatchedWord(regexp) {
|
|
||||||
const [[regexpString, options]] = Object.entries(regexp);
|
|
||||||
return { ...options, regexp: regexpString };
|
|
||||||
}
|
|
|
@ -196,7 +196,7 @@ function applyEmoji(
|
||||||
enableShortcuts,
|
enableShortcuts,
|
||||||
inlineEmoji,
|
inlineEmoji,
|
||||||
customEmojiTranslation,
|
customEmojiTranslation,
|
||||||
watchedWordsReplacer,
|
watchedWordsReplace,
|
||||||
emojiDenyList
|
emojiDenyList
|
||||||
) {
|
) {
|
||||||
let result = null;
|
let result = null;
|
||||||
|
@ -206,19 +206,16 @@ function applyEmoji(
|
||||||
content = emojiUnicodeReplacer(content);
|
content = emojiUnicodeReplacer(content);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (watchedWordsReplacer) {
|
if (content && watchedWordsReplace) {
|
||||||
const watchedWordRegex = Object.keys(watchedWordsReplacer);
|
Object.entries(watchedWordsReplace).forEach(([regexpString, options]) => {
|
||||||
|
if (content.match(regexpString)) {
|
||||||
watchedWordRegex.forEach((watchedWord) => {
|
const regex = new RegExp(regexpString, "g");
|
||||||
if (content?.match(watchedWord)) {
|
|
||||||
const regex = new RegExp(watchedWord, "g");
|
|
||||||
const matches = content.match(regex);
|
const matches = content.match(regex);
|
||||||
const replacement = watchedWordsReplacer[watchedWord].replacement;
|
|
||||||
|
|
||||||
matches.forEach(() => {
|
matches.forEach(() => {
|
||||||
const matchingRegex = regex.exec(content);
|
const matchingRegex = regex.exec(content);
|
||||||
if (matchingRegex) {
|
if (matchingRegex) {
|
||||||
content = content.replace(matchingRegex[1], replacement);
|
content = content.replace(matchingRegex[1], options.replacement);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -226,9 +223,9 @@ function applyEmoji(
|
||||||
}
|
}
|
||||||
|
|
||||||
// prevent denied emoji and aliases from being rendered
|
// prevent denied emoji and aliases from being rendered
|
||||||
if (emojiDenyList?.length > 0) {
|
if (content && emojiDenyList?.length > 0) {
|
||||||
emojiDenyList.forEach((emoji) => {
|
emojiDenyList.forEach((emoji) => {
|
||||||
if (content?.match(emoji)) {
|
if (content.match(emoji)) {
|
||||||
const regex = new RegExp(`:${emoji}:`, "g");
|
const regex = new RegExp(`:${emoji}:`, "g");
|
||||||
content = content.replace(regex, "");
|
content = content.replace(regex, "");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
import {
|
|
||||||
createWatchedWordRegExp,
|
|
||||||
toWatchedWord,
|
|
||||||
} from "discourse-common/utils/watched-words";
|
|
||||||
|
|
||||||
const MAX_MATCHES = 100;
|
const MAX_MATCHES = 100;
|
||||||
|
|
||||||
function isLinkOpen(str) {
|
function isLinkOpen(str) {
|
||||||
|
@ -58,11 +53,11 @@ export function setup(helper) {
|
||||||
if (md.options.discourse.watchedWordsReplace) {
|
if (md.options.discourse.watchedWordsReplace) {
|
||||||
Object.entries(md.options.discourse.watchedWordsReplace).forEach(
|
Object.entries(md.options.discourse.watchedWordsReplace).forEach(
|
||||||
([regexpString, options]) => {
|
([regexpString, options]) => {
|
||||||
const word = toWatchedWord({ [regexpString]: options });
|
const caseFlag = options.case_sensitive ? "" : "i";
|
||||||
|
|
||||||
matchers.push({
|
matchers.push({
|
||||||
word: new RegExp(options.regexp, options.case_sensitive ? "" : "i"),
|
word: new RegExp(options.regexp, caseFlag),
|
||||||
pattern: createWatchedWordRegExp(word),
|
pattern: new RegExp(regexpString, `${caseFlag}gu`),
|
||||||
replacement: options.replacement,
|
replacement: options.replacement,
|
||||||
link: false,
|
link: false,
|
||||||
});
|
});
|
||||||
|
@ -73,11 +68,11 @@ export function setup(helper) {
|
||||||
if (md.options.discourse.watchedWordsLink) {
|
if (md.options.discourse.watchedWordsLink) {
|
||||||
Object.entries(md.options.discourse.watchedWordsLink).forEach(
|
Object.entries(md.options.discourse.watchedWordsLink).forEach(
|
||||||
([regexpString, options]) => {
|
([regexpString, options]) => {
|
||||||
const word = toWatchedWord({ [regexpString]: options });
|
const caseFlag = options.case_sensitive ? "" : "i";
|
||||||
|
|
||||||
matchers.push({
|
matchers.push({
|
||||||
word: new RegExp(options.regexp, options.case_sensitive ? "" : "i"),
|
word: new RegExp(options.regexp, caseFlag),
|
||||||
pattern: createWatchedWordRegExp(word),
|
pattern: new RegExp(regexpString, `${caseFlag}gu`),
|
||||||
replacement: options.replacement,
|
replacement: options.replacement,
|
||||||
link: true,
|
link: true,
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
import {
|
export function censorFn(regexpList, replacementLetter = "■") {
|
||||||
createWatchedWordRegExp,
|
|
||||||
toWatchedWord,
|
|
||||||
} from "discourse-common/utils/watched-words";
|
|
||||||
|
|
||||||
export function censorFn(regexpList, replacementLetter) {
|
|
||||||
if (regexpList?.length) {
|
if (regexpList?.length) {
|
||||||
replacementLetter = replacementLetter || "■";
|
const censorRegexps = regexpList.map((entry) => {
|
||||||
let censorRegexps = regexpList.map((regexp) => {
|
const [regexp, options] = Object.entries(entry)[0];
|
||||||
return createWatchedWordRegExp(toWatchedWord(regexp));
|
const caseFlag = options.case_sensitive ? "" : "i";
|
||||||
|
return new RegExp(regexp, `${caseFlag}gu`);
|
||||||
});
|
});
|
||||||
|
|
||||||
return function (text) {
|
return function (text) {
|
||||||
|
|
|
@ -89,7 +89,6 @@ module PrettyText
|
||||||
discourse-common/addon/lib/deprecated
|
discourse-common/addon/lib/deprecated
|
||||||
discourse-common/addon/lib/escape
|
discourse-common/addon/lib/escape
|
||||||
discourse-common/addon/lib/avatar-utils
|
discourse-common/addon/lib/avatar-utils
|
||||||
discourse-common/addon/utils/watched-words
|
|
||||||
discourse/app/lib/to-markdown
|
discourse/app/lib/to-markdown
|
||||||
discourse/app/static/markdown-it/features
|
discourse/app/static/markdown-it/features
|
||||||
].each do |f|
|
].each do |f|
|
||||||
|
|
Loading…
Reference in New Issue