Added contains support for datasource pluses
This commit is contained in:
parent
1345ec831a
commit
e5dc38845b
|
@ -19,8 +19,8 @@ class QueryBuilder {
|
||||||
empty: {},
|
empty: {},
|
||||||
notEmpty: {},
|
notEmpty: {},
|
||||||
oneOf: {},
|
oneOf: {},
|
||||||
contains: {},
|
contains: {} ,
|
||||||
...base
|
...base,
|
||||||
}
|
}
|
||||||
this.limit = 50
|
this.limit = 50
|
||||||
this.sortOrder = "ascending"
|
this.sortOrder = "ascending"
|
||||||
|
|
|
@ -131,6 +131,9 @@ export interface SearchFilters {
|
||||||
oneOf?: {
|
oneOf?: {
|
||||||
[key: string]: any[]
|
[key: string]: any[]
|
||||||
}
|
}
|
||||||
|
contains?: {
|
||||||
|
[key: string]: any
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SortJson {
|
export interface SortJson {
|
||||||
|
|
|
@ -142,6 +142,21 @@ class InternalBuilder {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const like = (key: string, value: any) => {
|
||||||
|
const fnc = allOr ? "orWhere" : "where"
|
||||||
|
// postgres supports ilike, nothing else does
|
||||||
|
if (this.client === SqlClients.POSTGRES) {
|
||||||
|
query = query[fnc](key, "ilike", `%${value}%`)
|
||||||
|
} else {
|
||||||
|
const rawFnc = `${fnc}Raw`
|
||||||
|
// @ts-ignore
|
||||||
|
query = query[rawFnc](`LOWER(${likeKey(this.client, key)}) LIKE ?`, [
|
||||||
|
`%${value}%`,
|
||||||
|
])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!filters) {
|
if (!filters) {
|
||||||
return query
|
return query
|
||||||
}
|
}
|
||||||
|
@ -168,19 +183,7 @@ class InternalBuilder {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (filters.fuzzy) {
|
if (filters.fuzzy) {
|
||||||
iterate(filters.fuzzy, (key, value) => {
|
iterate(filters.fuzzy, like)
|
||||||
const fnc = allOr ? "orWhere" : "where"
|
|
||||||
// postgres supports ilike, nothing else does
|
|
||||||
if (this.client === SqlClients.POSTGRES) {
|
|
||||||
query = query[fnc](key, "ilike", `%${value}%`)
|
|
||||||
} else {
|
|
||||||
const rawFnc = `${fnc}Raw`
|
|
||||||
// @ts-ignore
|
|
||||||
query = query[rawFnc](`LOWER(${likeKey(this.client, key)}) LIKE ?`, [
|
|
||||||
`%${value}%`,
|
|
||||||
])
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
if (filters.range) {
|
if (filters.range) {
|
||||||
iterate(filters.range, (key, value) => {
|
iterate(filters.range, (key, value) => {
|
||||||
|
@ -223,6 +226,29 @@ class InternalBuilder {
|
||||||
query = query[fnc](key)
|
query = query[fnc](key)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
if (filters.contains) {
|
||||||
|
const fnc = allOr ? "orWhere" : "where"
|
||||||
|
const rawFnc = `${fnc}Raw`
|
||||||
|
if (this.client === SqlClients.POSTGRES) {
|
||||||
|
iterate(filters.contains, (key: string, value: any) => {
|
||||||
|
const fieldNames = key.split(/\./g)
|
||||||
|
const tableName = fieldNames[0]
|
||||||
|
const columnName = fieldNames[1]
|
||||||
|
// @ts-ignore
|
||||||
|
query = query[rawFnc](`"${tableName}"."${columnName}"::jsonb @> '["${value}"]'`)
|
||||||
|
})
|
||||||
|
} else if (this.client === SqlClients.MY_SQL) {
|
||||||
|
iterate(filters.contains, (key: string, value: any) => {
|
||||||
|
if (typeof value === "string") {
|
||||||
|
value = `"${value}"`
|
||||||
|
}
|
||||||
|
// @ts-ignore
|
||||||
|
query = query[rawFnc](`JSON_CONTAINS(${key}, '${value}')`)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
iterate(filters.contains, like)
|
||||||
|
}
|
||||||
|
}
|
||||||
return query
|
return query
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue