Skip to content
Snippets Groups Projects
Commit 674e8e7e authored by chris's avatar chris
Browse files

escape certain characters before searching

parent 88eca1c9
No related branches found
No related tags found
1 merge request!234Search replace
...@@ -37,7 +37,7 @@ const findMatches = (doc, searchValue, matchCase) => { ...@@ -37,7 +37,7 @@ const findMatches = (doc, searchValue, matchCase) => {
} }
}); });
mergedTextNodes.forEach(({ text, pos }) => { mergedTextNodes.forEach(({ text, pos }) => {
const search = RegExp(searchValue, matchCase ? 'gu' : 'gui'); const search = RegExp(escapeRegExp(searchValue), matchCase ? 'gu' : 'gui');
let m; let m;
// eslint-disable-next-line no-cond-assign // eslint-disable-next-line no-cond-assign
while ((m = search.exec(text))) { while ((m = search.exec(text))) {
...@@ -54,6 +54,10 @@ const findMatches = (doc, searchValue, matchCase) => { ...@@ -54,6 +54,10 @@ const findMatches = (doc, searchValue, matchCase) => {
return results; return results;
}; };
const escapeRegExp = string => {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
};
const getMatchesByView = (views, searchValue, matchCase) => { const getMatchesByView = (views, searchValue, matchCase) => {
let allResults = 0; let allResults = 0;
each(views, (singleView, viewId) => { each(views, (singleView, viewId) => {
......
...@@ -42,7 +42,7 @@ const findMatches = (doc, searchValue) => { ...@@ -42,7 +42,7 @@ const findMatches = (doc, searchValue) => {
} }
}); });
mergedTextNodes.forEach(({ text, pos }) => { mergedTextNodes.forEach(({ text, pos }) => {
const search = RegExp(searchValue, matchCase ? 'gu' : 'gui'); const search = RegExp(escapeRegExp(searchValue), matchCase ? 'gu' : 'gui');
let m; let m;
// eslint-disable-next-line no-cond-assign // eslint-disable-next-line no-cond-assign
while ((m = search.exec(text))) { while ((m = search.exec(text))) {
...@@ -59,6 +59,10 @@ const findMatches = (doc, searchValue) => { ...@@ -59,6 +59,10 @@ const findMatches = (doc, searchValue) => {
return results; return results;
}; };
const escapeRegExp = string => {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
};
export default props => { export default props => {
return new Plugin({ return new Plugin({
key: findAndReplacePlugin, key: findAndReplacePlugin,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment