1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

NotContains internalSearch

This commit is contained in:
Mel O'Hagan 2022-07-26 17:21:58 +01:00
parent 4135c4ce59
commit a75f3b7bba
2 changed files with 14 additions and 1 deletions

View file

@ -39,7 +39,7 @@ export const OperatorOptions = {
label: "Contains",
},
NotContains: {
value: "notEqual",
value: "notContains",
label: "Does Not Contain",
},
In: {

View file

@ -20,6 +20,7 @@ class QueryBuilder {
notEmpty: {},
oneOf: {},
contains: {},
notContains: {},
...base,
}
this.limit = 50
@ -125,6 +126,11 @@ class QueryBuilder {
return this
}
addNotContains(key, value) {
this.query.notContains[key] = value
return this
}
/**
* Preprocesses a value before going into a lucene search.
* Transforms strings to lowercase and wraps strings and bools in quotes.
@ -181,6 +187,10 @@ class QueryBuilder {
return `${key}:(${andStatement})`
}
const notContains = (key, value) => {
return "*:* AND NOT " + contains(key, value)
}
const oneOf = (key, value) => {
if (!Array.isArray(value)) {
if (typeof value === "string") {
@ -279,6 +289,9 @@ class QueryBuilder {
if (this.query.contains) {
build(this.query.contains, contains)
}
if (this.query.notContains) {
build(this.query.notContains, notContains)
}
// make sure table ID is always added as an AND
if (tableId) {
query = `(${query})`