2021-01-14 16:39:50 +01:00
|
|
|
import { get } from "svelte/store"
|
|
|
|
import { backendUiStore, store } from "builderStore"
|
|
|
|
import { findAllMatchingComponents, findComponentPath } from "./storeUtils"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all bindable data context fields and instance fields.
|
|
|
|
*/
|
|
|
|
export const getBindableProperties = (rootComponent, componentId) => {
|
|
|
|
const bindableContexts = getBindableContexts(rootComponent, componentId)
|
|
|
|
const bindableComponents = getBindableComponents(rootComponent)
|
|
|
|
return [...bindableContexts, ...bindableComponents]
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all bindable data contexts. These are fields of schemas of data contexts
|
|
|
|
* provided by data provider components, such as lists or row detail components.
|
|
|
|
*/
|
|
|
|
export const getBindableContexts = (rootComponent, componentId) => {
|
|
|
|
if (!rootComponent || !componentId) {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the component tree leading up to this component
|
|
|
|
const path = findComponentPath(rootComponent, componentId)
|
|
|
|
path.pop()
|
|
|
|
|
|
|
|
// Extract any components which provide data contexts
|
|
|
|
const dataProviders = path.filter(component => {
|
|
|
|
const def = store.actions.components.getDefinition(component._component)
|
|
|
|
return def?.dataProvider
|
|
|
|
})
|
|
|
|
|
|
|
|
let contexts = []
|
|
|
|
dataProviders.forEach(provider => {
|
|
|
|
if (!provider.datasource) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const { schema, table } = getSchemaForDatasource(provider.datasource)
|
|
|
|
Object.entries(schema).forEach(([key, schema]) => {
|
|
|
|
// Replace certain bindings with a new property to help display components
|
|
|
|
let runtimeBoundKey = key
|
|
|
|
if (schema.type === "link") {
|
|
|
|
runtimeBoundKey = `${key}_count`
|
|
|
|
} else if (schema.type === "attachment") {
|
|
|
|
runtimeBoundKey = `${key}_first`
|
|
|
|
}
|
|
|
|
|
|
|
|
contexts.push({
|
|
|
|
type: "context",
|
|
|
|
runtimeBinding: `${provider._id}.${runtimeBoundKey}`,
|
|
|
|
readableBinding: `${provider._instanceName}.${table.name}.${key}`,
|
|
|
|
fieldSchema: schema,
|
|
|
|
providerId: provider._id,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
return contexts
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all bindable components. These are form components which allow their
|
|
|
|
* values to be bound to.
|
|
|
|
*/
|
|
|
|
export const getBindableComponents = rootComponent => {
|
|
|
|
if (!rootComponent) {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
const componentSelector = component => {
|
|
|
|
const type = component._component
|
|
|
|
const definition = store.actions.components.getDefinition(type)
|
2021-01-15 12:02:00 +01:00
|
|
|
return definition?.bindable
|
2021-01-14 16:39:50 +01:00
|
|
|
}
|
|
|
|
const components = findAllMatchingComponents(rootComponent, componentSelector)
|
2021-01-15 11:59:22 +01:00
|
|
|
return components.map(component => {
|
|
|
|
return {
|
|
|
|
type: "instance",
|
|
|
|
providerId: component._id,
|
|
|
|
runtimeBinding: `${component._id}`,
|
|
|
|
readableBinding: `${component._instanceName}`,
|
|
|
|
}
|
|
|
|
})
|
2021-01-14 16:39:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a schema for a datasource object.
|
|
|
|
*/
|
|
|
|
const getSchemaForDatasource = datasource => {
|
|
|
|
const tables = get(backendUiStore).tables
|
|
|
|
const { type } = datasource
|
|
|
|
const table = tables.find(table => table._id === datasource.tableId)
|
|
|
|
let schema = {}
|
|
|
|
if (table) {
|
|
|
|
if (type === "table") {
|
|
|
|
schema = table.schema ?? {}
|
|
|
|
} else if (type === "view") {
|
|
|
|
schema = table.views?.[datasource.name]?.schema ?? {}
|
|
|
|
} else if (type === "link") {
|
|
|
|
schema = table.schema ?? {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return { schema, table }
|
|
|
|
}
|