1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Replace bindings to link fields with new count runtime property

This commit is contained in:
Andrew Kingston 2020-10-12 14:14:50 +01:00
parent 42019dd546
commit 448b0ca2ae

View file

@ -95,15 +95,23 @@ const contextToBindables = (models, walkResult) => context => {
return []
}
const newBindable = ([key, fieldSchema]) => ({
type: "context",
fieldSchema,
instance: context.instance,
// how the binding expression persists, and is used in the app at runtime
runtimeBinding: `${contextParentPath}data.${key}`,
// how the binding exressions looks to the user of the builder
readableBinding: `${context.instance._instanceName}.${model.name}.${key}`,
})
const newBindable = ([key, fieldSchema]) => {
// Replace link bindings with a new property representing the count
let runtimeBoundKey = key
if (fieldSchema.type === "link") {
runtimeBoundKey = `${key}_count`
}
return {
type: "context",
fieldSchema,
instance: context.instance,
// how the binding expression persists, and is used in the app at runtime
runtimeBinding: `${contextParentPath}data.${runtimeBoundKey}`,
// how the binding expressions looks to the user of the builder
readableBinding: `${context.instance._instanceName}.${model.name}.${key}`,
}
}
return (
Object.entries(schema)