1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

Ensure that the correct form step is always visible in builder preview

This commit is contained in:
Andrew Kingston 2021-08-19 14:53:13 +01:00
parent a4d23aa578
commit a5778f9dbc
3 changed files with 53 additions and 1 deletions

View file

@ -28,6 +28,26 @@ const findComponentById = (component, componentId) => {
return null return null
} }
const findComponentIdPath = (component, componentId, path = []) => {
if (!component || !componentId) {
return null
}
path = [...path, component._id]
if (component._id === componentId) {
return path
}
if (!component._children?.length) {
return null
}
for (let child of component._children) {
const result = findComponentIdPath(child, componentId, path)
if (result) {
return result
}
}
return null
}
const createBuilderStore = () => { const createBuilderStore = () => {
const initialState = { const initialState = {
inBuilder: false, inBuilder: false,
@ -37,6 +57,7 @@ const createBuilderStore = () => {
selectedComponentId: null, selectedComponentId: null,
previewId: null, previewId: null,
previewType: null, previewType: null,
selectedPath: [],
} }
const writableStore = writable(initialState) const writableStore = writable(initialState)
const derivedStore = derived(writableStore, $state => { const derivedStore = derived(writableStore, $state => {
@ -47,10 +68,15 @@ const createBuilderStore = () => {
const prefix = "@budibase/standard-components/" const prefix = "@budibase/standard-components/"
const type = component?._component?.replace(prefix, "") const type = component?._component?.replace(prefix, "")
const definition = type ? Manifest[type] : null const definition = type ? Manifest[type] : null
// Derive the selected component path
const path = findComponentIdPath(asset.props, selectedComponentId) || []
return { return {
...$state, ...$state,
selectedComponent: component, selectedComponent: component,
selectedComponentDefinition: definition, selectedComponentDefinition: definition,
selectedComponentPath: path,
} }
}) })
@ -67,6 +93,14 @@ const createBuilderStore = () => {
notifyLoaded: () => { notifyLoaded: () => {
dispatchEvent("preview-loaded") dispatchEvent("preview-loaded")
}, },
setSelectedPath: path => {
console.log("set to ")
console.log(path)
writableStore.update(state => {
state.selectedPath = path
return state
})
},
} }
return { return {
...writableStore, ...writableStore,

View file

@ -4,7 +4,7 @@
export let step export let step
const { styleable } = getContext("sdk") const { styleable, builderStore } = getContext("sdk")
const component = getContext("component") const component = getContext("component")
const formContext = getContext("form") const formContext = getContext("form")
@ -13,6 +13,19 @@
$: formState = formContext?.formState $: formState = formContext?.formState
$: currentStep = $formState?.currentStep $: currentStep = $formState?.currentStep
// If in the builder preview, show this step if it is selected
$: {
if (step && formContext && $builderStore.inBuilder) {
console.log($builderStore.selectedPath)
console.log($component.id)
if ($builderStore.selectedComponentPath?.includes($component.id)) {
console.log("selecting " + step)
formContext.formApi.setStep(step)
}
}
}
</script> </script>
{#if !formContext} {#if !formContext}

View file

@ -146,6 +146,11 @@
prevStep: () => { prevStep: () => {
currentStep.update(step => Math.max(1, step - 1)) currentStep.update(step => Math.max(1, step - 1))
}, },
setStep: step => {
if (step) {
currentStep.set(step)
}
},
} }
// Creates an API for a specific field // Creates an API for a specific field