1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Merge branch 'master' of github.com:Budibase/budibase

This commit is contained in:
Michael Shanks 2020-02-25 09:11:25 +00:00
commit 3becfc72af
4 changed files with 35 additions and 26 deletions

View file

@ -758,6 +758,8 @@ const addChildComponent = store => (componentToAdd, presetName) => {
state.currentFrontEndType === "page"
? _savePage(state)
: _saveScreenApi(state.currentPreviewItem, state)
state.currentComponentInfo = newComponent.props
return state
})
@ -782,24 +784,24 @@ const addTemplatedComponent = store => props => {
}
const selectComponent = store => component => {
store.update(s => {
store.update(state => {
const componentDef = component._component.startsWith("##")
? component
: s.components.find(c => c.name === component._component)
s.currentComponentInfo = makePropsSafe(componentDef, component)
return s
: state.components.find(c => c.name === component._component)
state.currentComponentInfo = makePropsSafe(componentDef, component)
return state
})
}
const setComponentProp = store => (name, value) => {
store.update(s => {
const current_component = s.currentComponentInfo
s.currentComponentInfo[name] = value
store.update(state => {
const current_component = state.currentComponentInfo
state.currentComponentInfo[name] = value
_saveCurrentPreviewItem(s)
_saveCurrentPreviewItem(state)
s.currentComponentInfo = current_component
return s
state.currentComponentInfo = current_component
return state
})
}

View file

@ -8,6 +8,9 @@
import ConfirmDialog from "../common/ConfirmDialog.svelte"
import { getRecordNodes, getIndexNodes, getIndexSchema, pipe } from "../common/core"
export let toggleTab
let componentLibraries = []
let current_view = "text"
let selectedComponent = null
@ -49,6 +52,7 @@
} else {
store.addChildComponent(component.name)
}
toggleTab();
}
const onTemplateChosen = template => {

View file

@ -3,11 +3,16 @@
import ComponentPropertiesPanel from "./ComponentPropertiesPanel.svelte"
import ComponentSelectionList from "./ComponentSelectionList.svelte"
let selected = "properties"
const PROPERTIES_TAB = "properties";
const COMPONENT_SELECTION_TAB = "components";
let selected = PROPERTIES_TAB
const isSelected = tab => selected === tab
const selectTab = tab => (selected = tab)
const toggleTab = () => selected = selected === PROPERTIES_TAB ? COMPONENT_SELECTION_TAB : PROPERTIES_TAB;
</script>
<div class="root">
@ -15,26 +20,26 @@
<div class="switcher">
<button
class:selected={selected === 'properties'}
on:click={() => selectTab('properties')}>
class:selected={selected === PROPERTIES_TAB}
on:click={() => selectTab(PROPERTIES_TAB)}>
Properties
</button>
<button
class:selected={selected === 'components'}
on:click={() => selectTab('components')}>
class:selected={selected === COMPONENT_SELECTION_TAB}
on:click={() => selectTab(COMPONENT_SELECTION_TAB)}>
Components
</button>
</div>
<div class="panel">
{#if selected === 'properties'}
<ComponentPropertiesPanel />
{#if selected === PROPERTIES_TAB}
<ComponentPropertiesPanel {toggleTab} />
{/if}
{#if selected === 'components'}
<ComponentSelectionList />
{#if selected === COMPONENT_SELECTION_TAB}
<ComponentSelectionList {toggleTab} />
{/if}
</div>

View file

@ -44,19 +44,17 @@
component.component.name === $store.currentPreviewItem.name
const confirmDeleteComponent = async component => {
console.log(component)
componentToDelete = component
// await tick()
confirmDeleteDialog.show()
}
</script>
<div
class="budibase__nav-item"
class:selected={$store.currentComponentInfo._id === _layout.component.props._id}
on:click|stopPropagation={() => store.setScreenType('page')}>
<div class="component">
<div>
<div
class="budibase__nav-item"
class:selected={$store.currentComponentInfo._id === _layout.component.props._id}
on:click|stopPropagation={() => store.setScreenType('page')}>
<span
class="icon"
class:rotate={$store.currentPreviewItem.name !== _layout.title}>