2020-08-04 12:10:02 +02:00
|
|
|
import fetchBindableProperties from "../src/builderStore/fetchBindableProperties"
|
2020-08-27 11:10:35 +02:00
|
|
|
|
2020-08-03 16:06:51 +02:00
|
|
|
describe("fetch bindable properties", () => {
|
|
|
|
|
|
|
|
it("should return bindable properties from screen components", () => {
|
2020-08-04 12:10:02 +02:00
|
|
|
const result = fetchBindableProperties({
|
2020-08-03 16:06:51 +02:00
|
|
|
componentInstanceId: "heading-id",
|
|
|
|
...testData()
|
|
|
|
})
|
2020-08-04 17:11:46 +02:00
|
|
|
const componentBinding = result.find(r => r.instance._id === "search-input-id" && r.type === "instance")
|
2020-08-03 16:06:51 +02:00
|
|
|
expect(componentBinding).toBeDefined()
|
|
|
|
expect(componentBinding.type).toBe("instance")
|
2020-08-06 22:27:26 +02:00
|
|
|
expect(componentBinding.runtimeBinding).toBe("search-input-id.value")
|
2020-08-03 16:06:51 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should not return bindable components when not in their context", () => {
|
2020-08-04 12:10:02 +02:00
|
|
|
const result = fetchBindableProperties({
|
|
|
|
componentInstanceId: "heading-id",
|
|
|
|
...testData()
|
|
|
|
})
|
|
|
|
const componentBinding = result.find(r => r.instance._id === "list-item-input-id")
|
|
|
|
expect(componentBinding).not.toBeDefined()
|
2020-08-03 16:06:51 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should return model schema, when inside a context", () => {
|
2020-08-04 17:11:46 +02:00
|
|
|
const result = fetchBindableProperties({
|
|
|
|
componentInstanceId: "list-item-input-id",
|
|
|
|
...testData()
|
|
|
|
})
|
|
|
|
const contextBindings = result.filter(r => r.instance._id === "list-id" && r.type==="context")
|
2020-09-11 10:29:23 +02:00
|
|
|
// 2 fields + _id + _rev
|
|
|
|
expect(contextBindings.length).toBe(4)
|
2020-08-04 17:11:46 +02:00
|
|
|
|
2020-08-06 22:27:26 +02:00
|
|
|
const namebinding = contextBindings.find(b => b.runtimeBinding === "data.name")
|
2020-08-04 17:11:46 +02:00
|
|
|
expect(namebinding).toBeDefined()
|
|
|
|
expect(namebinding.readableBinding).toBe("list-name.Test Model.name")
|
|
|
|
|
2020-08-06 22:27:26 +02:00
|
|
|
const descriptionbinding = contextBindings.find(b => b.runtimeBinding === "data.description")
|
2020-08-04 17:11:46 +02:00
|
|
|
expect(descriptionbinding).toBeDefined()
|
|
|
|
expect(descriptionbinding.readableBinding).toBe("list-name.Test Model.description")
|
2020-09-11 10:29:23 +02:00
|
|
|
|
|
|
|
const idbinding = contextBindings.find(b => b.runtimeBinding === "data._id")
|
|
|
|
expect(idbinding).toBeDefined()
|
|
|
|
expect(idbinding.readableBinding).toBe("list-name.Test Model._id")
|
2020-08-03 16:06:51 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should return model schema, for grantparent context", () => {
|
2020-08-04 17:11:46 +02:00
|
|
|
const result = fetchBindableProperties({
|
|
|
|
componentInstanceId: "child-list-item-input-id",
|
|
|
|
...testData()
|
|
|
|
})
|
|
|
|
const contextBindings = result.filter(r => r.type==="context")
|
2020-09-11 10:29:23 +02:00
|
|
|
// 2 fields + _id + _rev ... x 2 models
|
|
|
|
expect(contextBindings.length).toBe(8)
|
2020-08-04 17:11:46 +02:00
|
|
|
|
2020-08-06 22:27:26 +02:00
|
|
|
const namebinding_parent = contextBindings.find(b => b.runtimeBinding === "parent.data.name")
|
2020-08-04 17:11:46 +02:00
|
|
|
expect(namebinding_parent).toBeDefined()
|
|
|
|
expect(namebinding_parent.readableBinding).toBe("list-name.Test Model.name")
|
|
|
|
|
2020-08-06 22:27:26 +02:00
|
|
|
const descriptionbinding_parent = contextBindings.find(b => b.runtimeBinding === "parent.data.description")
|
2020-08-04 17:11:46 +02:00
|
|
|
expect(descriptionbinding_parent).toBeDefined()
|
|
|
|
expect(descriptionbinding_parent.readableBinding).toBe("list-name.Test Model.description")
|
|
|
|
|
2020-08-06 22:27:26 +02:00
|
|
|
const namebinding_own = contextBindings.find(b => b.runtimeBinding === "data.name")
|
2020-08-04 17:11:46 +02:00
|
|
|
expect(namebinding_own).toBeDefined()
|
|
|
|
expect(namebinding_own.readableBinding).toBe("child-list-name.Test Model.name")
|
|
|
|
|
2020-08-06 22:27:26 +02:00
|
|
|
const descriptionbinding_own = contextBindings.find(b => b.runtimeBinding === "data.description")
|
2020-08-04 17:11:46 +02:00
|
|
|
expect(descriptionbinding_own).toBeDefined()
|
|
|
|
expect(descriptionbinding_own.readableBinding).toBe("child-list-name.Test Model.description")
|
2020-08-03 16:06:51 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should return bindable component props, from components in same context", () => {
|
2020-08-04 17:11:46 +02:00
|
|
|
const result = fetchBindableProperties({
|
|
|
|
componentInstanceId: "list-item-heading-id",
|
|
|
|
...testData()
|
|
|
|
})
|
|
|
|
const componentBinding = result.find(r => r.instance._id === "list-item-input-id" && r.type === "instance")
|
|
|
|
expect(componentBinding).toBeDefined()
|
2020-08-06 22:27:26 +02:00
|
|
|
expect(componentBinding.runtimeBinding).toBe("list-item-input-id.value")
|
2020-08-03 16:06:51 +02:00
|
|
|
})
|
|
|
|
|
2020-08-04 17:11:46 +02:00
|
|
|
it("should not return components from child context", () => {
|
|
|
|
const result = fetchBindableProperties({
|
|
|
|
componentInstanceId: "list-item-heading-id",
|
|
|
|
...testData()
|
|
|
|
})
|
|
|
|
const componentBinding = result.find(r => r.instance._id === "child-list-item-input-id" && r.type === "instance")
|
|
|
|
expect(componentBinding).not.toBeDefined()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should return bindable component props, from components in same context (when nested context)", () => {
|
|
|
|
const result = fetchBindableProperties({
|
|
|
|
componentInstanceId: "child-list-item-heading-id",
|
|
|
|
...testData()
|
|
|
|
})
|
|
|
|
const componentBinding = result.find(r => r.instance._id === "child-list-item-input-id" && r.type === "instance")
|
|
|
|
expect(componentBinding).toBeDefined()
|
2020-08-04 17:31:31 +02:00
|
|
|
})
|
2020-08-03 16:06:51 +02:00
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
const testData = () => {
|
|
|
|
|
|
|
|
const screen = {
|
|
|
|
instanceName: "test screen",
|
|
|
|
name: "screen-id",
|
|
|
|
route: "/",
|
|
|
|
props: {
|
|
|
|
_id:"screent-root-id",
|
|
|
|
_component: "@budibase/standard-components/container",
|
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_id: "heading-id",
|
|
|
|
_instanceName: "list item heading",
|
|
|
|
_component: "@budibase/standard-components/heading",
|
|
|
|
text: "Screen Title"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: "search-input-id",
|
|
|
|
_instanceName: "Search Input",
|
|
|
|
_component: "@budibase/standard-components/input",
|
|
|
|
value: "search phrase"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: "list-id",
|
|
|
|
_component: "@budibase/standard-components/list",
|
|
|
|
_instanceName: "list-name",
|
2020-09-11 10:29:23 +02:00
|
|
|
model: { isModel: true, modelId: "test-model-id", label: "Test Model", name: "all_test-model-id" },
|
2020-08-03 16:06:51 +02:00
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_id: "list-item-heading-id",
|
|
|
|
_instanceName: "list item heading",
|
|
|
|
_component: "@budibase/standard-components/heading",
|
|
|
|
text: "hello"
|
2020-08-04 12:10:02 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: "list-item-input-id",
|
|
|
|
_instanceName: "List Item Input",
|
|
|
|
_component: "@budibase/standard-components/input",
|
|
|
|
value: "list item"
|
|
|
|
},
|
2020-08-04 17:11:46 +02:00
|
|
|
{
|
|
|
|
_id: "child-list-id",
|
|
|
|
_component: "@budibase/standard-components/list",
|
|
|
|
_instanceName: "child-list-name",
|
2020-09-11 10:29:23 +02:00
|
|
|
model: { isModel: true, modelId: "test-model-id", label: "Test Model", name: "all_test-model-id"},
|
2020-08-04 17:11:46 +02:00
|
|
|
_children: [
|
|
|
|
{
|
|
|
|
_id: "child-list-item-heading-id",
|
|
|
|
_instanceName: "child list item heading",
|
|
|
|
_component: "@budibase/standard-components/heading",
|
|
|
|
text: "hello"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: "child-list-item-input-id",
|
|
|
|
_instanceName: "Child List Item Input",
|
|
|
|
_component: "@budibase/standard-components/input",
|
|
|
|
value: "child list item"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2020-08-03 16:06:51 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const models = [{
|
2020-08-04 12:10:02 +02:00
|
|
|
_id: "test-model-id",
|
2020-08-03 16:06:51 +02:00
|
|
|
name: "Test Model",
|
|
|
|
schema: {
|
|
|
|
name: {
|
|
|
|
type: "string"
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
|
|
|
|
const components = {
|
|
|
|
"@budibase/standard-components/container" : {
|
|
|
|
props: {},
|
|
|
|
},
|
|
|
|
"@budibase/standard-components/list" : {
|
|
|
|
context: "model",
|
|
|
|
props: {
|
|
|
|
model: "string"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"@budibase/standard-components/input" : {
|
|
|
|
bindable: "value",
|
|
|
|
props: {
|
|
|
|
value: "string"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"@budibase/standard-components/heading" : {
|
|
|
|
props: {
|
|
|
|
text: "string"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return { screen, models, components }
|
|
|
|
|
|
|
|
}
|