2022-01-20 11:16:13 +01:00
|
|
|
import { Helpers } from "@budibase/bbui"
|
2022-06-21 10:40:37 +02:00
|
|
|
import { OperatorOptions, SqlNumberTypeRangeMap } from "../constants"
|
2022-01-18 10:39:19 +01:00
|
|
|
|
2022-01-20 11:16:13 +01:00
|
|
|
/**
|
|
|
|
* Returns the valid operator options for a certain data type
|
|
|
|
* @param type the data type
|
|
|
|
*/
|
|
|
|
export const getValidOperatorsForType = type => {
|
|
|
|
const Op = OperatorOptions
|
2022-02-01 17:46:00 +01:00
|
|
|
const stringOps = [
|
|
|
|
Op.Equals,
|
|
|
|
Op.NotEquals,
|
|
|
|
Op.StartsWith,
|
|
|
|
Op.Like,
|
|
|
|
Op.Empty,
|
|
|
|
Op.NotEmpty,
|
2022-06-24 15:41:08 +02:00
|
|
|
Op.In,
|
2022-02-01 17:46:00 +01:00
|
|
|
]
|
|
|
|
const numOps = [
|
|
|
|
Op.Equals,
|
|
|
|
Op.NotEquals,
|
|
|
|
Op.MoreThan,
|
|
|
|
Op.LessThan,
|
|
|
|
Op.Empty,
|
|
|
|
Op.NotEmpty,
|
2022-06-27 14:36:03 +02:00
|
|
|
Op.In,
|
2022-02-01 17:46:00 +01:00
|
|
|
]
|
2022-01-20 11:16:13 +01:00
|
|
|
if (type === "string") {
|
2022-02-01 17:46:00 +01:00
|
|
|
return stringOps
|
2022-01-20 11:16:13 +01:00
|
|
|
} else if (type === "number") {
|
2022-02-01 17:46:00 +01:00
|
|
|
return numOps
|
2022-01-20 11:16:13 +01:00
|
|
|
} else if (type === "options") {
|
|
|
|
return [Op.Equals, Op.NotEquals, Op.Empty, Op.NotEmpty]
|
|
|
|
} else if (type === "array") {
|
|
|
|
return [Op.Contains, Op.NotContains, Op.Empty, Op.NotEmpty]
|
|
|
|
} else if (type === "boolean") {
|
|
|
|
return [Op.Equals, Op.NotEquals, Op.Empty, Op.NotEmpty]
|
|
|
|
} else if (type === "longform") {
|
2022-02-01 17:46:00 +01:00
|
|
|
return stringOps
|
2022-01-20 11:16:13 +01:00
|
|
|
} else if (type === "datetime") {
|
2022-02-01 17:46:00 +01:00
|
|
|
return numOps
|
|
|
|
} else if (type === "formula") {
|
|
|
|
return stringOps.concat([Op.MoreThan, Op.LessThan])
|
2022-01-20 11:16:13 +01:00
|
|
|
}
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
2022-01-18 10:39:19 +01:00
|
|
|
/**
|
|
|
|
* Operators which do not support empty strings as values
|
|
|
|
*/
|
|
|
|
export const NoEmptyFilterStrings = [
|
|
|
|
OperatorOptions.StartsWith.value,
|
|
|
|
OperatorOptions.Like.value,
|
|
|
|
OperatorOptions.Equals.value,
|
|
|
|
OperatorOptions.NotEquals.value,
|
|
|
|
OperatorOptions.Contains.value,
|
|
|
|
OperatorOptions.NotContains.value,
|
|
|
|
]
|
2021-10-06 18:38:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes any fields that contain empty strings that would cause inconsistent
|
|
|
|
* behaviour with how backend tables are filtered (no value means no filter).
|
|
|
|
*/
|
2022-01-18 10:39:19 +01:00
|
|
|
const cleanupQuery = query => {
|
2021-10-06 18:38:32 +02:00
|
|
|
if (!query) {
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
for (let filterField of NoEmptyFilterStrings) {
|
|
|
|
if (!query[filterField]) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for (let [key, value] of Object.entries(query[filterField])) {
|
|
|
|
if (!value || value === "") {
|
|
|
|
delete query[filterField][key]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
|
2021-09-27 13:59:49 +02:00
|
|
|
/**
|
|
|
|
* Builds a lucene JSON query from the filter structure generated in the builder
|
|
|
|
* @param filter the builder filter structure
|
|
|
|
*/
|
|
|
|
export const buildLuceneQuery = filter => {
|
|
|
|
let query = {
|
|
|
|
string: {},
|
|
|
|
fuzzy: {},
|
|
|
|
range: {},
|
|
|
|
equal: {},
|
|
|
|
notEqual: {},
|
|
|
|
empty: {},
|
|
|
|
notEmpty: {},
|
|
|
|
contains: {},
|
|
|
|
notContains: {},
|
2022-06-24 15:41:08 +02:00
|
|
|
oneOf: {},
|
2021-09-27 13:59:49 +02:00
|
|
|
}
|
|
|
|
if (Array.isArray(filter)) {
|
|
|
|
filter.forEach(expression => {
|
2022-06-20 18:26:35 +02:00
|
|
|
let { operator, field, type, value, externalType } = expression
|
2021-09-27 13:59:49 +02:00
|
|
|
// Parse all values into correct types
|
|
|
|
if (type === "datetime" && value) {
|
|
|
|
value = new Date(value).toISOString()
|
|
|
|
}
|
2022-06-27 15:32:20 +02:00
|
|
|
if (type === "number" && !Array.isArray(value)) {
|
|
|
|
if (operator === "oneOf") {
|
|
|
|
value = value.split(",").map(item => parseFloat(item))
|
|
|
|
} else {
|
|
|
|
value = parseFloat(value)
|
|
|
|
}
|
2021-09-27 13:59:49 +02:00
|
|
|
}
|
|
|
|
if (type === "boolean") {
|
|
|
|
value = `${value}`?.toLowerCase() === "true"
|
|
|
|
}
|
|
|
|
if (operator.startsWith("range")) {
|
2022-06-20 18:26:35 +02:00
|
|
|
const minint =
|
2022-06-21 10:41:08 +02:00
|
|
|
SqlNumberTypeRangeMap[externalType]?.min || Number.MIN_SAFE_INTEGER
|
2022-06-20 18:26:35 +02:00
|
|
|
const maxint =
|
2022-06-21 10:41:08 +02:00
|
|
|
SqlNumberTypeRangeMap[externalType]?.max || Number.MAX_SAFE_INTEGER
|
2021-09-27 13:59:49 +02:00
|
|
|
if (!query.range[field]) {
|
|
|
|
query.range[field] = {
|
2022-06-20 18:26:35 +02:00
|
|
|
low: type === "number" ? minint : "0000-00-00T00:00:00.000Z",
|
|
|
|
high: type === "number" ? maxint : "9999-00-00T00:00:00.000Z",
|
2021-09-27 13:59:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (operator === "rangeLow" && value != null && value !== "") {
|
|
|
|
query.range[field].low = value
|
|
|
|
} else if (operator === "rangeHigh" && value != null && value !== "") {
|
|
|
|
query.range[field].high = value
|
|
|
|
}
|
|
|
|
} else if (query[operator]) {
|
|
|
|
if (type === "boolean") {
|
|
|
|
// Transform boolean filters to cope with null.
|
|
|
|
// "equals false" needs to be "not equals true"
|
|
|
|
// "not equals false" needs to be "equals true"
|
|
|
|
if (operator === "equal" && value === false) {
|
|
|
|
query.notEqual[field] = true
|
|
|
|
} else if (operator === "notEqual" && value === false) {
|
|
|
|
query.equal[field] = true
|
|
|
|
} else {
|
|
|
|
query[operator][field] = value
|
|
|
|
}
|
|
|
|
} else {
|
2022-06-27 15:32:20 +02:00
|
|
|
console.log("VAL ", value)
|
2021-09-27 13:59:49 +02:00
|
|
|
query[operator][field] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a client-side lucene search on an array of data
|
|
|
|
* @param docs the data
|
|
|
|
* @param query the JSON lucene query
|
|
|
|
*/
|
2022-01-18 10:39:19 +01:00
|
|
|
export const runLuceneQuery = (docs, query) => {
|
2021-12-07 14:58:59 +01:00
|
|
|
if (!docs || !Array.isArray(docs)) {
|
|
|
|
return []
|
|
|
|
}
|
2021-09-27 13:59:49 +02:00
|
|
|
if (!query) {
|
|
|
|
return docs
|
|
|
|
}
|
2021-12-06 13:04:22 +01:00
|
|
|
|
2021-10-06 18:38:32 +02:00
|
|
|
// make query consistent first
|
|
|
|
query = cleanupQuery(query)
|
2021-09-27 13:59:49 +02:00
|
|
|
|
|
|
|
// Iterates over a set of filters and evaluates a fail function against a doc
|
|
|
|
const match = (type, failFn) => doc => {
|
|
|
|
const filters = Object.entries(query[type] || {})
|
|
|
|
for (let i = 0; i < filters.length; i++) {
|
2021-12-06 13:04:22 +01:00
|
|
|
const [key, testValue] = filters[i]
|
2022-01-20 11:16:13 +01:00
|
|
|
const docValue = Helpers.deepGet(doc, key)
|
2021-12-06 13:04:22 +01:00
|
|
|
if (failFn(docValue, testValue)) {
|
2021-09-27 13:59:49 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process a string match (fails if the value does not start with the string)
|
2021-12-06 13:04:22 +01:00
|
|
|
const stringMatch = match("string", (docValue, testValue) => {
|
2022-01-04 15:34:09 +01:00
|
|
|
return (
|
|
|
|
!docValue || !docValue?.toLowerCase().startsWith(testValue?.toLowerCase())
|
|
|
|
)
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Process a fuzzy match (treat the same as starts with when running locally)
|
2021-12-06 13:04:22 +01:00
|
|
|
const fuzzyMatch = match("fuzzy", (docValue, testValue) => {
|
2022-01-04 15:34:09 +01:00
|
|
|
return (
|
|
|
|
!docValue || !docValue?.toLowerCase().startsWith(testValue?.toLowerCase())
|
|
|
|
)
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Process a range match
|
2021-12-06 13:04:22 +01:00
|
|
|
const rangeMatch = match("range", (docValue, testValue) => {
|
|
|
|
return !docValue || docValue < testValue.low || docValue > testValue.high
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Process an equal match (fails if the value is different)
|
2021-12-06 13:04:22 +01:00
|
|
|
const equalMatch = match("equal", (docValue, testValue) => {
|
|
|
|
return testValue != null && testValue !== "" && docValue !== testValue
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Process a not-equal match (fails if the value is the same)
|
2021-12-06 13:04:22 +01:00
|
|
|
const notEqualMatch = match("notEqual", (docValue, testValue) => {
|
|
|
|
return testValue != null && testValue !== "" && docValue === testValue
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Process an empty match (fails if the value is not empty)
|
2021-12-06 13:04:22 +01:00
|
|
|
const emptyMatch = match("empty", docValue => {
|
|
|
|
return docValue != null && docValue !== ""
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Process a not-empty match (fails is the value is empty)
|
2021-12-06 13:04:22 +01:00
|
|
|
const notEmptyMatch = match("notEmpty", docValue => {
|
|
|
|
return docValue == null || docValue === ""
|
2021-09-27 13:59:49 +02:00
|
|
|
})
|
|
|
|
|
2022-06-24 15:41:08 +02:00
|
|
|
// Process an includes match (fails if the value is not included)
|
|
|
|
const oneOf = match("oneOf", (docValue, testValue) => {
|
2022-06-27 14:38:43 +02:00
|
|
|
if (typeof testValue === "string") {
|
|
|
|
testValue = testValue.split(",")
|
2022-06-27 14:54:03 +02:00
|
|
|
if (typeof docValue === "number") {
|
|
|
|
testValue = testValue.map(item => Number(item))
|
|
|
|
}
|
2022-06-27 14:38:43 +02:00
|
|
|
}
|
2022-06-24 15:41:08 +02:00
|
|
|
return !testValue?.includes(docValue)
|
|
|
|
})
|
|
|
|
|
2021-09-27 13:59:49 +02:00
|
|
|
// Match a document against all criteria
|
|
|
|
const docMatch = doc => {
|
|
|
|
return (
|
|
|
|
stringMatch(doc) &&
|
|
|
|
fuzzyMatch(doc) &&
|
|
|
|
rangeMatch(doc) &&
|
|
|
|
equalMatch(doc) &&
|
|
|
|
notEqualMatch(doc) &&
|
|
|
|
emptyMatch(doc) &&
|
2022-06-24 15:41:08 +02:00
|
|
|
notEmptyMatch(doc) &&
|
2022-06-24 22:29:19 +02:00
|
|
|
oneOf(doc)
|
2021-09-27 13:59:49 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process all docs
|
|
|
|
return docs.filter(docMatch)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a client-side sort from the equivalent server-side lucene sort
|
|
|
|
* parameters.
|
|
|
|
* @param docs the data
|
|
|
|
* @param sort the sort column
|
|
|
|
* @param sortOrder the sort order ("ascending" or "descending")
|
|
|
|
* @param sortType the type of sort ("string" or "number")
|
|
|
|
*/
|
|
|
|
export const luceneSort = (docs, sort, sortOrder, sortType = "string") => {
|
|
|
|
if (!sort || !sortOrder || !sortType) {
|
|
|
|
return docs
|
|
|
|
}
|
|
|
|
const parse = sortType === "string" ? x => `${x}` : x => parseFloat(x)
|
|
|
|
return docs.slice().sort((a, b) => {
|
|
|
|
const colA = parse(a[sort])
|
|
|
|
const colB = parse(b[sort])
|
|
|
|
if (sortOrder === "Descending") {
|
|
|
|
return colA > colB ? -1 : 1
|
|
|
|
} else {
|
|
|
|
return colA > colB ? 1 : -1
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Limits the specified docs to the specified number of rows from the equivalent
|
|
|
|
* server-side lucene limit parameters.
|
|
|
|
* @param docs the data
|
|
|
|
* @param limit the number of docs to limit to
|
|
|
|
*/
|
|
|
|
export const luceneLimit = (docs, limit) => {
|
|
|
|
const numLimit = parseFloat(limit)
|
|
|
|
if (isNaN(numLimit)) {
|
|
|
|
return docs
|
|
|
|
}
|
|
|
|
return docs.slice(0, numLimit)
|
|
|
|
}
|