[Glitch] Add option to not consider word boundaries when processing keyword filtering

Port 1ca4e51eb3 to glitch-soc
This commit is contained in:
Thibaut Girka 2018-07-09 22:40:27 +02:00 committed by ThibG
parent 6777dfc8d9
commit faa4db7975
1 changed files with 4 additions and 1 deletions

View File

@ -45,7 +45,10 @@ export const regexFromFilters = filters => {
return null;
}
return new RegExp(filters.map(filter => escapeRegExp(filter.get('phrase'))).map(expr => `\\b${expr}\\b`).join('|'), 'i');
return new RegExp(filters.map(filter => {
let expr = escapeRegExp(filter.get('phrase'));
return filter.get('whole_word') ? `\\b${expr}\\b` : expr;
}).join('|'), 'i');
};
export const makeGetStatus = () => {