mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
Properly escaped mention keywords and search terms when formatting them
This commit is contained in:
parent
f0823ba5d8
commit
cfcfd3ebbb
1 changed files with 6 additions and 2 deletions
|
|
@ -171,6 +171,10 @@ function autolinkAtMentions(text, tokens) {
|
|||
return output;
|
||||
}
|
||||
|
||||
function escapeRegex(text) {
|
||||
return text.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
|
||||
}
|
||||
|
||||
function highlightCurrentMentions(text, tokens) {
|
||||
let output = text;
|
||||
|
||||
|
|
@ -210,7 +214,7 @@ function highlightCurrentMentions(text, tokens) {
|
|||
}
|
||||
|
||||
for (const mention of UserStore.getCurrentMentionKeys()) {
|
||||
output = output.replace(new RegExp(`(^|\\W)(${mention})\\b`, 'gi'), replaceCurrentMentionWithToken);
|
||||
output = output.replace(new RegExp(`(^|\\W)(${escapeRegex(mention)})\\b`, 'gi'), replaceCurrentMentionWithToken);
|
||||
}
|
||||
|
||||
return output;
|
||||
|
|
@ -290,7 +294,7 @@ function highlightSearchTerm(text, tokens, searchTerm) {
|
|||
return prefix + alias;
|
||||
}
|
||||
|
||||
return output.replace(new RegExp(`()(${searchTerm})`, 'gi'), replaceSearchTermWithToken);
|
||||
return output.replace(new RegExp(`()(${escapeRegex(searchTerm)})`, 'gi'), replaceSearchTermWithToken);
|
||||
}
|
||||
|
||||
function replaceTokens(text, tokens) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue