Comment some parts of blocks implementation for clarity
This commit is contained in:
parent
4cbe82c1db
commit
ee7ab70f4d
|
@ -4,6 +4,9 @@
|
||||||
const component = getContext("component")
|
const component = getContext("component")
|
||||||
const { styleable } = getContext("sdk")
|
const { styleable } = getContext("sdk")
|
||||||
|
|
||||||
|
// We need to set a block context to know we're inside a block, but also
|
||||||
|
// to be able to reference the actual component ID of the block from
|
||||||
|
// any depth
|
||||||
setContext("block", {
|
setContext("block", {
|
||||||
id: $component.id,
|
id: $component.id,
|
||||||
})
|
})
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
export let type
|
export let type
|
||||||
export let props
|
export let props
|
||||||
export let styles
|
export let styles
|
||||||
|
|
||||||
|
// ID is only exposed as a prop so that it can be bound to from parent
|
||||||
|
// block components
|
||||||
export let id
|
export let id
|
||||||
|
|
||||||
const block = getContext("block")
|
const block = getContext("block")
|
||||||
|
@ -14,6 +17,8 @@
|
||||||
$: id = block.id + rand
|
$: id = block.id + rand
|
||||||
$: instance = createInstance(type, props, id)
|
$: instance = createInstance(type, props, id)
|
||||||
|
|
||||||
|
// Create a fake component instance so that we can use the core Component
|
||||||
|
// to render this part of the block, taking advantage of binding enrichment
|
||||||
const createInstance = (type, props, id) => {
|
const createInstance = (type, props, id) => {
|
||||||
return {
|
return {
|
||||||
_component: `@budibase/standard-components/${type}`,
|
_component: `@budibase/standard-components/${type}`,
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
$: enrichedFilter = enrichFilter(filter, searchColumns, formId)
|
$: enrichedFilter = enrichFilter(filter, searchColumns, formId)
|
||||||
|
|
||||||
|
// Enrich the default filter with the specified search fields
|
||||||
const enrichFilter = (filter, searchColumns, formId) => {
|
const enrichFilter = (filter, searchColumns, formId) => {
|
||||||
let enrichedFilter = [...(filter || [])]
|
let enrichedFilter = [...(filter || [])]
|
||||||
searchColumns?.forEach(column => {
|
searchColumns?.forEach(column => {
|
||||||
|
|
Loading…
Reference in New Issue