1
0
Fork 0
mirror of synced 2024-07-09 08:16:34 +12:00

Add data bindings for top level properties within JSON fields

This commit is contained in:
Andrew Kingston 2021-12-06 19:55:21 +00:00
parent 135fc61159
commit ca0abba428

View file

@ -213,6 +213,21 @@ const getProviderContextBindings = (asset, dataProviders) => {
schema = info.schema
table = info.table
// Check for any JSON fields so we can add any top level properties
let jsonAdditions = {}
Object.keys(schema).forEach(fieldKey => {
const fieldSchema = schema[fieldKey]
if (fieldSchema.type === "json") {
const jsonSchema = convertJSONSchemaToTableSchema(fieldSchema, true)
Object.keys(jsonSchema).forEach(jsonKey => {
jsonAdditions[`${fieldKey}.${jsonKey}`] = {
type: jsonSchema[jsonKey].type,
}
})
}
})
schema = { ...schema, ...jsonAdditions }
// For JSON arrays, use the array name as the readable prefix.
// Otherwise use the table name
if (datasource.type === "jsonarray") {