1
0
Fork 0
mirror of synced 2024-09-20 03:08:18 +12:00

Merge master.

This commit is contained in:
Sam Rose 2024-09-09 17:07:28 +01:00
commit 5cd1b00dad
No known key found for this signature in database
2 changed files with 8 additions and 16 deletions

View file

@ -571,24 +571,20 @@ export class GoogleSheetsIntegration implements DatasourcePlus {
query.filters.equal[`_${GOOGLE_SHEETS_PRIMARY_KEY}`] = id
}
}
let filtered = dataFilters.runQuery(
rows,
query.filters || {},
(row: GoogleSpreadsheetRow, headerKey: string) => {
return row.get(headerKey)
}
)
if (hasFilters && query.paginate) {
filtered = filtered.slice(offset, offset + limit)
rows = rows.slice(offset, offset + limit)
}
const headerValues = sheet.headerValues
let response = []
for (let row of filtered) {
for (let row of rows) {
response.push(
this.buildRowObject(headerValues, row.toObject(), row["_rowNumber"])
this.buildRowObject(headerValues, row.toObject(), row.rowNumber)
)
}
response = dataFilters.runQuery(response, query.filters || {})
if (query.sort) {
if (Object.keys(query.sort).length !== 1) {
console.warn("Googlesheets does not support multiple sorting", {

View file

@ -471,14 +471,10 @@ export function search<T>(
* Performs a client-side search on an array of data
* @param docs the data
* @param query the JSON query
* @param findInDoc optional fn when trying to extract a value
* from custom doc type e.g. Google Sheets
*
*/
export function runQuery<T extends Record<string, any>>(
docs: T[],
query: SearchFilters,
findInDoc: (obj: T, key: string) => any = deepGet
query: SearchFilters
): T[] {
if (!docs || !Array.isArray(docs)) {
return []
@ -506,7 +502,7 @@ export function runQuery<T extends Record<string, any>>(
for (const [key, testValue] of Object.entries(query[type] || {})) {
const valueToCheck = isLogicalSearchOperator(type)
? doc
: findInDoc(doc, removeKeyNumbering(key))
: deepGet(doc, removeKeyNumbering(key))
const result = test(valueToCheck, testValue)
if (query.allOr && result) {
return true