2021-11-02 09:45:27 +01:00
|
|
|
<script>
|
|
|
|
import { getContext } from "svelte"
|
|
|
|
import { generate } from "shortid"
|
2022-08-23 16:53:28 +02:00
|
|
|
import { builderStore } from "../stores/builder.js"
|
2021-11-02 09:45:27 +01:00
|
|
|
import Component from "components/Component.svelte"
|
|
|
|
|
|
|
|
export let type
|
|
|
|
export let props
|
|
|
|
export let styles
|
2021-11-08 15:35:58 +01:00
|
|
|
export let context
|
2022-06-30 20:31:25 +02:00
|
|
|
export let order = 0
|
2022-08-24 09:37:53 +02:00
|
|
|
export let containsSlot = false
|
2021-11-02 09:58:50 +01:00
|
|
|
|
|
|
|
// ID is only exposed as a prop so that it can be bound to from parent
|
|
|
|
// block components
|
2021-11-02 09:45:27 +01:00
|
|
|
export let id
|
|
|
|
|
2022-06-30 20:31:25 +02:00
|
|
|
const component = getContext("component")
|
2021-11-02 09:45:27 +01:00
|
|
|
const block = getContext("block")
|
|
|
|
const rand = generate()
|
|
|
|
|
2021-11-02 09:58:50 +01:00
|
|
|
// 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
|
2021-11-08 15:35:58 +01:00
|
|
|
$: id = `${block.id}-${context ?? rand}`
|
2021-11-02 13:58:38 +01:00
|
|
|
$: instance = {
|
|
|
|
_component: `@budibase/standard-components/${type}`,
|
|
|
|
_id: id,
|
2022-08-23 16:53:28 +02:00
|
|
|
_instanceName: type[0].toUpperCase() + type.slice(1),
|
2022-08-24 10:05:08 +02:00
|
|
|
_styles: styles,
|
2022-08-24 09:37:53 +02:00
|
|
|
_containsSlot: containsSlot,
|
2021-11-02 13:58:38 +01:00
|
|
|
...props,
|
2021-11-02 09:45:27 +01:00
|
|
|
}
|
2022-08-23 16:53:28 +02:00
|
|
|
|
|
|
|
// Register this block component if we're inside the builder so it can be
|
|
|
|
// ejected later
|
|
|
|
$: {
|
|
|
|
if ($builderStore.inBuilder) {
|
2022-08-23 20:37:38 +02:00
|
|
|
block.registerComponent(id, order ?? 0, $component?.id, instance)
|
2022-08-23 16:53:28 +02:00
|
|
|
}
|
|
|
|
}
|
2021-11-02 09:45:27 +01:00
|
|
|
</script>
|
|
|
|
|
2021-11-12 16:19:25 +01:00
|
|
|
<Component {instance} isBlock>
|
2021-11-02 09:45:27 +01:00
|
|
|
<slot />
|
|
|
|
</Component>
|