Merge branch 'master' into BUDI-8408/set-nx-task-dependencies
This commit is contained in:
commit
c764038f0a
|
@ -184,7 +184,11 @@ class InternalBuilder {
|
||||||
query: Knex.QueryBuilder,
|
query: Knex.QueryBuilder,
|
||||||
filters: SearchFilters | undefined,
|
filters: SearchFilters | undefined,
|
||||||
table: Table,
|
table: Table,
|
||||||
opts: { aliases?: Record<string, string>; relationship?: boolean }
|
opts: {
|
||||||
|
aliases?: Record<string, string>
|
||||||
|
relationship?: boolean
|
||||||
|
columnPrefix?: string
|
||||||
|
}
|
||||||
): Knex.QueryBuilder {
|
): Knex.QueryBuilder {
|
||||||
if (!filters) {
|
if (!filters) {
|
||||||
return query
|
return query
|
||||||
|
@ -192,7 +196,10 @@ class InternalBuilder {
|
||||||
filters = parseFilters(filters)
|
filters = parseFilters(filters)
|
||||||
// if all or specified in filters, then everything is an or
|
// if all or specified in filters, then everything is an or
|
||||||
const allOr = filters.allOr
|
const allOr = filters.allOr
|
||||||
const sqlStatements = new SqlStatements(this.client, table, { allOr })
|
const sqlStatements = new SqlStatements(this.client, table, {
|
||||||
|
allOr,
|
||||||
|
columnPrefix: opts.columnPrefix,
|
||||||
|
})
|
||||||
const tableName =
|
const tableName =
|
||||||
this.client === SqlClient.SQL_LITE ? table._id! : table.name
|
this.client === SqlClient.SQL_LITE ? table._id! : table.name
|
||||||
|
|
||||||
|
@ -663,6 +670,7 @@ class InternalBuilder {
|
||||||
}
|
}
|
||||||
// add filters to the query (where)
|
// add filters to the query (where)
|
||||||
query = this.addFilters(query, filters, json.meta.table, {
|
query = this.addFilters(query, filters, json.meta.table, {
|
||||||
|
columnPrefix: json.meta.columnPrefix,
|
||||||
aliases: tableAliases,
|
aliases: tableAliases,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -698,6 +706,7 @@ class InternalBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.addFilters(query, filters, json.meta.table, {
|
return this.addFilters(query, filters, json.meta.table, {
|
||||||
|
columnPrefix: json.meta.columnPrefix,
|
||||||
relationship: true,
|
relationship: true,
|
||||||
aliases: tableAliases,
|
aliases: tableAliases,
|
||||||
})
|
})
|
||||||
|
@ -708,6 +717,7 @@ class InternalBuilder {
|
||||||
let query = this.knexWithAlias(knex, endpoint, tableAliases)
|
let query = this.knexWithAlias(knex, endpoint, tableAliases)
|
||||||
const parsedBody = parseBody(body)
|
const parsedBody = parseBody(body)
|
||||||
query = this.addFilters(query, filters, json.meta.table, {
|
query = this.addFilters(query, filters, json.meta.table, {
|
||||||
|
columnPrefix: json.meta.columnPrefix,
|
||||||
aliases: tableAliases,
|
aliases: tableAliases,
|
||||||
})
|
})
|
||||||
// mysql can't use returning
|
// mysql can't use returning
|
||||||
|
@ -722,6 +732,7 @@ class InternalBuilder {
|
||||||
const { endpoint, filters, tableAliases } = json
|
const { endpoint, filters, tableAliases } = json
|
||||||
let query = this.knexWithAlias(knex, endpoint, tableAliases)
|
let query = this.knexWithAlias(knex, endpoint, tableAliases)
|
||||||
query = this.addFilters(query, filters, json.meta.table, {
|
query = this.addFilters(query, filters, json.meta.table, {
|
||||||
|
columnPrefix: json.meta.columnPrefix,
|
||||||
aliases: tableAliases,
|
aliases: tableAliases,
|
||||||
})
|
})
|
||||||
// mysql can't use returning
|
// mysql can't use returning
|
||||||
|
|
|
@ -5,19 +5,27 @@ export class SqlStatements {
|
||||||
client: string
|
client: string
|
||||||
table: Table
|
table: Table
|
||||||
allOr: boolean | undefined
|
allOr: boolean | undefined
|
||||||
|
columnPrefix: string | undefined
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
client: string,
|
client: string,
|
||||||
table: Table,
|
table: Table,
|
||||||
{ allOr }: { allOr?: boolean } = {}
|
{ allOr, columnPrefix }: { allOr?: boolean; columnPrefix?: string } = {}
|
||||||
) {
|
) {
|
||||||
this.client = client
|
this.client = client
|
||||||
this.table = table
|
this.table = table
|
||||||
this.allOr = allOr
|
this.allOr = allOr
|
||||||
|
this.columnPrefix = columnPrefix
|
||||||
}
|
}
|
||||||
|
|
||||||
getField(key: string): FieldSchema | undefined {
|
getField(key: string): FieldSchema | undefined {
|
||||||
const fieldName = key.split(".")[1]
|
const fieldName = key.split(".")[1]
|
||||||
return this.table.schema[fieldName]
|
let found = this.table.schema[fieldName]
|
||||||
|
if (!found && this.columnPrefix) {
|
||||||
|
const prefixRemovedFieldName = fieldName.replace(this.columnPrefix, "")
|
||||||
|
found = this.table.schema[prefixRemovedFieldName]
|
||||||
|
}
|
||||||
|
return found
|
||||||
}
|
}
|
||||||
|
|
||||||
between(
|
between(
|
||||||
|
|
|
@ -223,7 +223,7 @@
|
||||||
height: 420px;
|
height: 420px;
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
border: var(--border-light);
|
border: var(--border-light);
|
||||||
z-index: 100;
|
z-index: 1000;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { BannedSearchTypes } from "../constants"
|
||||||
|
|
||||||
export function getTableFields(tables, linkField) {
|
export function getTableFields(tables, linkField) {
|
||||||
const table = tables.find(table => table._id === linkField.tableId)
|
const table = tables.find(table => table._id === linkField.tableId)
|
||||||
// TODO: mdrury - add support for this with SQS at some point
|
|
||||||
if (!table || !table.sql) {
|
if (!table || !table.sql) {
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
@ -11,7 +10,7 @@ export function getTableFields(tables, linkField) {
|
||||||
})
|
})
|
||||||
return linkFields.map(field => ({
|
return linkFields.map(field => ({
|
||||||
...field,
|
...field,
|
||||||
name: `${table.name}.${field.name}`,
|
name: `${linkField.name}.${field.name}`,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,20 @@ import { db as dbCore, utils } from "@budibase/backend-core"
|
||||||
import * as setup from "./utilities"
|
import * as setup from "./utilities"
|
||||||
import {
|
import {
|
||||||
AutoFieldSubType,
|
AutoFieldSubType,
|
||||||
|
BBReferenceFieldSubType,
|
||||||
Datasource,
|
Datasource,
|
||||||
EmptyFilterOption,
|
EmptyFilterOption,
|
||||||
BBReferenceFieldSubType,
|
|
||||||
FieldType,
|
FieldType,
|
||||||
|
RelationshipType,
|
||||||
|
Row,
|
||||||
RowSearchParams,
|
RowSearchParams,
|
||||||
SearchFilters,
|
SearchFilters,
|
||||||
|
SearchResponse,
|
||||||
SortOrder,
|
SortOrder,
|
||||||
SortType,
|
SortType,
|
||||||
Table,
|
Table,
|
||||||
TableSchema,
|
TableSchema,
|
||||||
User,
|
User,
|
||||||
Row,
|
|
||||||
RelationshipType,
|
|
||||||
SearchResponse,
|
|
||||||
} from "@budibase/types"
|
} from "@budibase/types"
|
||||||
import _ from "lodash"
|
import _ from "lodash"
|
||||||
import tk from "timekeeper"
|
import tk from "timekeeper"
|
||||||
|
@ -2084,6 +2084,28 @@ describe.each([
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
isInternal &&
|
||||||
|
describe("no column error backwards compat", () => {
|
||||||
|
beforeAll(async () => {
|
||||||
|
table = await createTable({
|
||||||
|
name: {
|
||||||
|
name: "name",
|
||||||
|
type: FieldType.STRING,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it("shouldn't error when column doesn't exist", async () => {
|
||||||
|
await expectSearch({
|
||||||
|
query: {
|
||||||
|
string: {
|
||||||
|
"1:something": "a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}).toMatch({ rows: [] })
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
// lucene can't count the total rows
|
// lucene can't count the total rows
|
||||||
!isLucene &&
|
!isLucene &&
|
||||||
describe("row counting", () => {
|
describe("row counting", () => {
|
||||||
|
@ -2119,4 +2141,29 @@ describe.each([
|
||||||
}).toNotHaveProperty(["totalRows"])
|
}).toNotHaveProperty(["totalRows"])
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe.each(["data_name_test", "name_data_test", "name_test_data_"])(
|
||||||
|
"special (%s) case",
|
||||||
|
column => {
|
||||||
|
beforeAll(async () => {
|
||||||
|
table = await createTable({
|
||||||
|
[column]: {
|
||||||
|
name: column,
|
||||||
|
type: FieldType.STRING,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
await createRows([{ [column]: "a" }, { [column]: "b" }])
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should be able to query a column with data_ in it", async () => {
|
||||||
|
await expectSearch({
|
||||||
|
query: {
|
||||||
|
equal: {
|
||||||
|
[`1:${column}`]: "a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}).toContainExactly([{ [column]: "a" }])
|
||||||
|
})
|
||||||
|
}
|
||||||
|
)
|
||||||
})
|
})
|
||||||
|
|
|
@ -15,6 +15,7 @@ import {
|
||||||
import { processMigrations } from "../../migrationsProcessor"
|
import { processMigrations } from "../../migrationsProcessor"
|
||||||
import migration from "../20240604153647_initial_sqs"
|
import migration from "../20240604153647_initial_sqs"
|
||||||
import { AppMigration } from "src/appMigrations"
|
import { AppMigration } from "src/appMigrations"
|
||||||
|
import sdk from "../../../sdk"
|
||||||
|
|
||||||
const MIGRATIONS: AppMigration[] = [
|
const MIGRATIONS: AppMigration[] = [
|
||||||
{
|
{
|
||||||
|
@ -27,6 +28,8 @@ const MIGRATIONS: AppMigration[] = [
|
||||||
const config = setup.getConfig()
|
const config = setup.getConfig()
|
||||||
let tableId: string
|
let tableId: string
|
||||||
|
|
||||||
|
const prefix = sdk.tables.sqs.mapToUserColumn
|
||||||
|
|
||||||
function oldLinkDocInfo() {
|
function oldLinkDocInfo() {
|
||||||
const tableId1 = `${DocumentType.TABLE}_a`,
|
const tableId1 = `${DocumentType.TABLE}_a`,
|
||||||
tableId2 = `${DocumentType.TABLE}_b`
|
tableId2 = `${DocumentType.TABLE}_b`
|
||||||
|
@ -102,8 +105,14 @@ describe("SQS migration", () => {
|
||||||
expect(designDoc.sql.tables).toBeDefined()
|
expect(designDoc.sql.tables).toBeDefined()
|
||||||
const mainTableDef = designDoc.sql.tables[tableId]
|
const mainTableDef = designDoc.sql.tables[tableId]
|
||||||
expect(mainTableDef).toBeDefined()
|
expect(mainTableDef).toBeDefined()
|
||||||
expect(mainTableDef.fields.name).toEqual(SQLiteType.TEXT)
|
expect(mainTableDef.fields[prefix("name")]).toEqual({
|
||||||
expect(mainTableDef.fields.description).toEqual(SQLiteType.TEXT)
|
field: "name",
|
||||||
|
type: SQLiteType.TEXT,
|
||||||
|
})
|
||||||
|
expect(mainTableDef.fields[prefix("description")]).toEqual({
|
||||||
|
field: "description",
|
||||||
|
type: SQLiteType.TEXT,
|
||||||
|
})
|
||||||
|
|
||||||
const { tableId1, tableId2, rowId1, rowId2 } = oldLinkDocInfo()
|
const { tableId1, tableId2, rowId1, rowId2 } = oldLinkDocInfo()
|
||||||
const linkDoc = await db.get<LinkDocument>(oldLinkDocID())
|
const linkDoc = await db.get<LinkDocument>(oldLinkDocID())
|
||||||
|
|
|
@ -18,6 +18,7 @@ import {
|
||||||
buildInternalRelationships,
|
buildInternalRelationships,
|
||||||
sqlOutputProcessing,
|
sqlOutputProcessing,
|
||||||
} from "../../../../api/controllers/row/utils"
|
} from "../../../../api/controllers/row/utils"
|
||||||
|
import { mapToUserColumn, USER_COLUMN_PREFIX } from "../../tables/internal/sqs"
|
||||||
import sdk from "../../../index"
|
import sdk from "../../../index"
|
||||||
import {
|
import {
|
||||||
context,
|
context,
|
||||||
|
@ -35,8 +36,13 @@ import {
|
||||||
getRelationshipColumns,
|
getRelationshipColumns,
|
||||||
getTableIDList,
|
getTableIDList,
|
||||||
} from "./filters"
|
} from "./filters"
|
||||||
|
import { dataFilters } from "@budibase/shared-core"
|
||||||
|
|
||||||
const builder = new sql.Sql(SqlClient.SQL_LITE)
|
const builder = new sql.Sql(SqlClient.SQL_LITE)
|
||||||
|
const MISSING_COLUMN_REGEX = new RegExp(`no such column: .+`)
|
||||||
|
const USER_COLUMN_PREFIX_REGEX = new RegExp(
|
||||||
|
`no such column: .+${USER_COLUMN_PREFIX}`
|
||||||
|
)
|
||||||
|
|
||||||
function buildInternalFieldList(
|
function buildInternalFieldList(
|
||||||
table: Table,
|
table: Table,
|
||||||
|
@ -59,7 +65,7 @@ function buildInternalFieldList(
|
||||||
buildInternalFieldList(relatedTable, tables, { relationships: false })
|
buildInternalFieldList(relatedTable, tables, { relationships: false })
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
fieldList.push(`${table._id}.${col.name}`)
|
fieldList.push(`${table._id}.${mapToUserColumn(col.name)}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return fieldList
|
return fieldList
|
||||||
|
@ -90,6 +96,34 @@ function cleanupFilters(
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// generate a map of all possible column names (these can be duplicated across tables
|
||||||
|
// the map of them will always be the same
|
||||||
|
const userColumnMap: Record<string, string> = {}
|
||||||
|
allTables.forEach(table =>
|
||||||
|
Object.keys(table.schema).forEach(
|
||||||
|
key => (userColumnMap[key] = mapToUserColumn(key))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
// update the keys of filters to manage user columns
|
||||||
|
const keyInAnyTable = (key: string): boolean =>
|
||||||
|
allTables.some(table => table.schema[key])
|
||||||
|
|
||||||
|
const splitter = new dataFilters.ColumnSplitter(allTables)
|
||||||
|
for (const filter of Object.values(filters)) {
|
||||||
|
for (const key of Object.keys(filter)) {
|
||||||
|
const { numberPrefix, relationshipPrefix, column } = splitter.run(key)
|
||||||
|
if (keyInAnyTable(column)) {
|
||||||
|
filter[
|
||||||
|
`${numberPrefix || ""}${relationshipPrefix || ""}${mapToUserColumn(
|
||||||
|
column
|
||||||
|
)}`
|
||||||
|
] = filter[key]
|
||||||
|
delete filter[key]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return filters
|
return filters
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,6 +140,25 @@ function buildTableMap(tables: Table[]) {
|
||||||
return tableMap
|
return tableMap
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function reverseUserColumnMapping(rows: Row[]) {
|
||||||
|
const prefixLength = USER_COLUMN_PREFIX.length
|
||||||
|
return rows.map(row => {
|
||||||
|
const finalRow: Row = {}
|
||||||
|
for (let key of Object.keys(row)) {
|
||||||
|
// it should be the first prefix
|
||||||
|
const index = key.indexOf(USER_COLUMN_PREFIX)
|
||||||
|
if (index !== -1) {
|
||||||
|
// cut out the prefix
|
||||||
|
const newKey = key.slice(0, index) + key.slice(index + prefixLength)
|
||||||
|
finalRow[newKey] = row[key]
|
||||||
|
} else {
|
||||||
|
finalRow[key] = row[key]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return finalRow
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
function runSqlQuery(json: QueryJson, tables: Table[]): Promise<Row[]>
|
function runSqlQuery(json: QueryJson, tables: Table[]): Promise<Row[]>
|
||||||
function runSqlQuery(
|
function runSqlQuery(
|
||||||
json: QueryJson,
|
json: QueryJson,
|
||||||
|
@ -147,9 +200,10 @@ async function runSqlQuery(
|
||||||
const response = await alias.queryWithAliasing(json, processSQLQuery)
|
const response = await alias.queryWithAliasing(json, processSQLQuery)
|
||||||
if (opts?.countTotalRows) {
|
if (opts?.countTotalRows) {
|
||||||
return processRowCountResponse(response)
|
return processRowCountResponse(response)
|
||||||
} else {
|
} else if (Array.isArray(response)) {
|
||||||
return response
|
return reverseUserColumnMapping(response)
|
||||||
}
|
}
|
||||||
|
return response
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function search(
|
export async function search(
|
||||||
|
@ -185,6 +239,7 @@ export async function search(
|
||||||
meta: {
|
meta: {
|
||||||
table,
|
table,
|
||||||
tables: allTablesMap,
|
tables: allTablesMap,
|
||||||
|
columnPrefix: USER_COLUMN_PREFIX,
|
||||||
},
|
},
|
||||||
resource: {
|
resource: {
|
||||||
fields: buildInternalFieldList(table, allTables),
|
fields: buildInternalFieldList(table, allTables),
|
||||||
|
@ -197,7 +252,7 @@ export async function search(
|
||||||
const sortType =
|
const sortType =
|
||||||
sortField.type === FieldType.NUMBER ? SortType.NUMBER : SortType.STRING
|
sortField.type === FieldType.NUMBER ? SortType.NUMBER : SortType.STRING
|
||||||
request.sort = {
|
request.sort = {
|
||||||
[sortField.name]: {
|
[mapToUserColumn(sortField.name)]: {
|
||||||
direction: params.sortOrder || SortOrder.ASCENDING,
|
direction: params.sortOrder || SortOrder.ASCENDING,
|
||||||
type: sortType as SortType,
|
type: sortType as SortType,
|
||||||
},
|
},
|
||||||
|
@ -278,10 +333,17 @@ export async function search(
|
||||||
return response
|
return response
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
const msg = typeof err === "string" ? err : err.message
|
const msg = typeof err === "string" ? err : err.message
|
||||||
if (err.status === 404 && msg?.includes(SQLITE_DESIGN_DOC_ID)) {
|
const syncAndRepeat =
|
||||||
|
(err.status === 400 && msg?.match(USER_COLUMN_PREFIX_REGEX)) ||
|
||||||
|
(err.status === 404 && msg?.includes(SQLITE_DESIGN_DOC_ID))
|
||||||
|
if (syncAndRepeat) {
|
||||||
await sdk.tables.sqs.syncDefinition()
|
await sdk.tables.sqs.syncDefinition()
|
||||||
return search(options, table)
|
return search(options, table)
|
||||||
}
|
}
|
||||||
|
// previously the internal table didn't error when a column didn't exist in search
|
||||||
|
if (err.status === 400 && msg?.match(MISSING_COLUMN_REGEX)) {
|
||||||
|
return { rows: [] }
|
||||||
|
}
|
||||||
throw new Error(`Unable to search by SQL - ${msg}`, { cause: err })
|
throw new Error(`Unable to search by SQL - ${msg}`, { cause: err })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,10 +62,18 @@ function buildRelationshipDefinitions(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const USER_COLUMN_PREFIX = "data_"
|
||||||
|
|
||||||
|
// utility function to denote that columns in SQLite are mapped to avoid overlap issues
|
||||||
|
// the overlaps can occur due to case insensitivity and some of the columns which Budibase requires
|
||||||
|
export function mapToUserColumn(key: string) {
|
||||||
|
return `${USER_COLUMN_PREFIX}${key}`
|
||||||
|
}
|
||||||
|
|
||||||
// this can generate relationship tables as part of the mapping
|
// this can generate relationship tables as part of the mapping
|
||||||
function mapTable(table: Table): SQLiteTables {
|
function mapTable(table: Table): SQLiteTables {
|
||||||
const tables: SQLiteTables = {}
|
const tables: SQLiteTables = {}
|
||||||
const fields: Record<string, SQLiteType> = {}
|
const fields: Record<string, { field: string; type: SQLiteType }> = {}
|
||||||
for (let [key, column] of Object.entries(table.schema)) {
|
for (let [key, column] of Object.entries(table.schema)) {
|
||||||
// relationships should be handled differently
|
// relationships should be handled differently
|
||||||
if (column.type === FieldType.LINK) {
|
if (column.type === FieldType.LINK) {
|
||||||
|
@ -78,7 +86,10 @@ function mapTable(table: Table): SQLiteTables {
|
||||||
if (!FieldTypeMap[column.type]) {
|
if (!FieldTypeMap[column.type]) {
|
||||||
throw new Error(`Unable to map type "${column.type}" to SQLite type`)
|
throw new Error(`Unable to map type "${column.type}" to SQLite type`)
|
||||||
}
|
}
|
||||||
fields[key] = FieldTypeMap[column.type]
|
fields[mapToUserColumn(key)] = {
|
||||||
|
field: key,
|
||||||
|
type: FieldTypeMap[column.type],
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// there are some extra columns to map - add these in
|
// there are some extra columns to map - add these in
|
||||||
const constantMap: Record<string, SQLiteType> = {}
|
const constantMap: Record<string, SQLiteType> = {}
|
||||||
|
|
|
@ -13,6 +13,7 @@ import {
|
||||||
RowSearchParams,
|
RowSearchParams,
|
||||||
EmptyFilterOption,
|
EmptyFilterOption,
|
||||||
SearchResponse,
|
SearchResponse,
|
||||||
|
Table,
|
||||||
} from "@budibase/types"
|
} from "@budibase/types"
|
||||||
import dayjs from "dayjs"
|
import dayjs from "dayjs"
|
||||||
import { OperatorOptions, SqlNumberTypeRangeMap } from "./constants"
|
import { OperatorOptions, SqlNumberTypeRangeMap } from "./constants"
|
||||||
|
@ -131,13 +132,72 @@ const cleanupQuery = (query: SearchFilters) => {
|
||||||
* Removes a numeric prefix on field names designed to give fields uniqueness
|
* Removes a numeric prefix on field names designed to give fields uniqueness
|
||||||
*/
|
*/
|
||||||
export const removeKeyNumbering = (key: string): string => {
|
export const removeKeyNumbering = (key: string): string => {
|
||||||
|
return getKeyNumbering(key).key
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the part of the keys, returning the numeric prefix and the field name
|
||||||
|
*/
|
||||||
|
export const getKeyNumbering = (
|
||||||
|
key: string
|
||||||
|
): { prefix?: string; key: string } => {
|
||||||
if (typeof key === "string" && key.match(/\d[0-9]*:/g) != null) {
|
if (typeof key === "string" && key.match(/\d[0-9]*:/g) != null) {
|
||||||
const parts = key.split(":")
|
const parts = key.split(":")
|
||||||
// remove the number
|
// remove the number
|
||||||
parts.shift()
|
const number = parts.shift()
|
||||||
return parts.join(":")
|
return { prefix: `${number}:`, key: parts.join(":") }
|
||||||
} else {
|
} else {
|
||||||
return key
|
return { key }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a splitter which can be used to split columns from a context into
|
||||||
|
* their components (number prefix, relationship column/table, column name)
|
||||||
|
*/
|
||||||
|
export class ColumnSplitter {
|
||||||
|
tableNames: string[]
|
||||||
|
tableIds: string[]
|
||||||
|
relationshipColumnNames: string[]
|
||||||
|
relationships: string[]
|
||||||
|
|
||||||
|
constructor(tables: Table[]) {
|
||||||
|
this.tableNames = tables.map(table => table.name)
|
||||||
|
this.tableIds = tables.map(table => table._id!)
|
||||||
|
this.relationshipColumnNames = tables.flatMap(table =>
|
||||||
|
Object.keys(table.schema).filter(
|
||||||
|
columnName => table.schema[columnName].type === FieldType.LINK
|
||||||
|
)
|
||||||
|
)
|
||||||
|
this.relationships = this.tableNames
|
||||||
|
.concat(this.tableIds)
|
||||||
|
.concat(this.relationshipColumnNames)
|
||||||
|
// sort by length - makes sure there's no mis-matches due to similarities (sub column names)
|
||||||
|
.sort((a, b) => b.length - a.length)
|
||||||
|
}
|
||||||
|
|
||||||
|
run(key: string): {
|
||||||
|
numberPrefix?: string
|
||||||
|
relationshipPrefix?: string
|
||||||
|
column: string
|
||||||
|
} {
|
||||||
|
let { prefix, key: splitKey } = getKeyNumbering(key)
|
||||||
|
let relationship: string | undefined
|
||||||
|
for (let possibleRelationship of this.relationships) {
|
||||||
|
const withDot = `${possibleRelationship}.`
|
||||||
|
if (splitKey.startsWith(withDot)) {
|
||||||
|
const finalKeyParts = splitKey.split(withDot)
|
||||||
|
finalKeyParts.shift()
|
||||||
|
relationship = withDot
|
||||||
|
splitKey = finalKeyParts.join(".")
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
numberPrefix: prefix,
|
||||||
|
relationshipPrefix: relationship,
|
||||||
|
column: splitKey,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -122,6 +122,8 @@ export interface QueryJson {
|
||||||
table: Table
|
table: Table
|
||||||
tables?: Record<string, Table>
|
tables?: Record<string, Table>
|
||||||
renamed?: RenameColumn
|
renamed?: RenameColumn
|
||||||
|
// can specify something that columns could be prefixed with
|
||||||
|
columnPrefix?: string
|
||||||
}
|
}
|
||||||
extra?: {
|
extra?: {
|
||||||
idFilter?: SearchFilters
|
idFilter?: SearchFilters
|
||||||
|
|
Loading…
Reference in New Issue