mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Merge pull request #11053 from Piccirello/refactor_misc
Simplify WebUI function implementation
This commit is contained in:
commit
c15e8752ed
1 changed files with 12 additions and 22 deletions
|
@ -176,28 +176,18 @@ function toFixedPointString(number, digits) {
|
||||||
*/
|
*/
|
||||||
function containsAllTerms(text, terms) {
|
function containsAllTerms(text, terms) {
|
||||||
const textToSearch = text.toLowerCase();
|
const textToSearch = text.toLowerCase();
|
||||||
for (let i = 0; i < terms.length; ++i) {
|
return terms.every((function(term) {
|
||||||
const term = terms[i].trim().toLowerCase();
|
const isTermRequired = (term[0] === '+');
|
||||||
if ((term[0] === '-')) {
|
const isTermExcluded = (term[0] === '-');
|
||||||
// ignore lonely -
|
if (isTermRequired || isTermExcluded) {
|
||||||
|
// ignore lonely +/-
|
||||||
if (term.length === 1)
|
if (term.length === 1)
|
||||||
continue;
|
return true;
|
||||||
// disallow any text after -
|
|
||||||
if (textToSearch.indexOf(term.substring(1)) !== -1)
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if ((term[0] === '+')) {
|
|
||||||
// ignore lonely +
|
|
||||||
if (term.length === 1)
|
|
||||||
continue;
|
|
||||||
// require any text after +
|
|
||||||
if (textToSearch.indexOf(term.substring(1)) === -1)
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if (textToSearch.indexOf(term) === -1){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
term = term.substring(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const textContainsTerm = (textToSearch.indexOf(term) !== -1);
|
||||||
|
return isTermExcluded ? !textContainsTerm : textContainsTerm;
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue