budibase/packages/builder/src/components/userInterface/ComponentPropertiesPanel.sv...

201 lines
4.3 KiB
Svelte
Raw Normal View History

2020-01-21 15:50:35 +01:00
<script>
2020-02-03 10:50:30 +01:00
import PropsView from "./PropsView.svelte"
2020-02-26 10:43:38 +01:00
import StateBindingControl from "./StateBindingControl.svelte"
import { store } from "builderStore"
import IconButton from "components/common/IconButton.svelte"
2020-02-03 10:50:30 +01:00
import {
LayoutIcon,
PaintIcon,
TerminalIcon,
CircleIndicator,
EventsIcon,
} from "components/common/Icons/"
2020-02-03 10:50:30 +01:00
import CodeEditor from "./CodeEditor.svelte"
import LayoutEditor from "./LayoutEditor.svelte"
import EventsEditor from "./EventsEditor"
2020-05-04 17:07:04 +02:00
import panelStructure from "./temporaryPanelStructure.js"
import CategoryTab from "./CategoryTab.svelte"
import DesignView from "./DesignView.svelte"
let current_view = "design"
2020-02-03 10:50:30 +01:00
let codeEditor
2020-05-04 17:07:04 +02:00
let flattenedPanel = flattenComponents(panelStructure.categories)
let categories = [
{ name: "Design" },
{ name: "Settings" },
{ name: "Actions" },
]
let selectedCategory = categories[0]
2020-02-03 10:50:30 +01:00
$: components = $store.components
2020-05-04 17:07:04 +02:00
$: componentInstance = $store.currentComponentInfo //contains prop values of currently selected component
$: componentDefinition = $store.components.find(
c => c.name === componentInstance._component
)
$: panelDefinition = flattenedPanel.find(
//use for getting controls for each component property
c => c._component === componentInstance._component
)
// OLD PROPS =============================================
2020-02-26 10:43:38 +01:00
$: screen_props =
$store.currentFrontEndType === "page"
? getProps($store.currentPreviewItem, ["name", "favicon"])
: getProps($store.currentPreviewItem, ["name", "description", "route"])
2020-03-06 18:00:54 +01:00
2020-02-03 10:50:30 +01:00
const onPropChanged = store.setComponentProp
const onStyleChanged = store.setComponentStyle
2020-02-26 10:43:38 +01:00
2020-05-04 17:07:04 +02:00
//May be able to remove some of the nested components in PropsView, PropsControl and StateBindingControl tree
function walkProps(component, action) {
action(component)
if (component.children) {
for (let child of component.children) {
walkProps(child, action)
}
}
}
function flattenComponents(props) {
const components = []
props.forEach(comp =>
walkProps(comp, c => {
if ("_component" in c) {
components.push(c)
}
})
)
return components
}
2020-02-26 10:43:38 +01:00
function getProps(obj, keys) {
return keys.map((k, i) => [k, obj[k], obj.props._id + i])
}
2020-01-21 15:50:35 +01:00
</script>
<div class="root">
2020-05-04 17:07:04 +02:00
<CategoryTab
onClick={category => (selectedCategory = category)}
{categories}
{selectedCategory} />
2020-05-04 17:07:04 +02:00
<div class="component-props-container">
{#if current_view === 'design'}
<!-- <PropsView {component} {components} {onPropChanged} /> -->
<DesignView {panelDefinition} {componentInstance} {componentDefinition} />
{/if}
</div>
</div>
2020-01-21 15:50:35 +01:00
<style>
2020-02-26 10:43:38 +01:00
.detail-prop {
height: 40px;
margin-bottom: 15px;
display: grid;
grid-template-rows: 1fr;
grid-template-columns: 70px 1fr;
grid-gap: 10px;
}
.detail-prop label {
word-wrap: break-word;
font-size: 13px;
2020-02-26 10:43:38 +01:00
font-weight: 700;
color: #163057;
opacity: 0.6;
padding-top: 13px;
2020-02-26 10:43:38 +01:00
margin-bottom: 0;
}
input {
height: 30px;
padding-left: 8px;
padding-right: 8px;
border: 1px solid #dbdbdb;
border-radius: 2px;
opacity: 0.5;
}
input:focus {
outline: 0;
background-color: #fff;
color: #666;
border-color: #1e87f0;
}
2020-02-03 10:50:30 +01:00
.root {
2020-01-21 15:50:35 +01:00
height: 100%;
display: flex;
flex-direction: column;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
.title > div:nth-child(1) {
2020-01-21 15:50:35 +01:00
grid-column-start: name;
color: var(--secondary100);
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
.title > div:nth-child(2) {
2020-01-21 15:50:35 +01:00
grid-column-start: actions;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
.component-props-container {
margin-top: 10px;
2020-01-21 15:50:35 +01:00
flex: 1 1 auto;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
ul {
2020-01-21 15:50:35 +01:00
list-style: none;
display: flex;
2020-03-24 11:56:48 +01:00
justify-content: space-between;
2020-01-21 15:50:35 +01:00
padding: 0;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
li {
2020-01-21 15:50:35 +01:00
background: none;
2020-03-24 11:56:48 +01:00
border-radius: 3px;
2020-01-22 12:30:19 +01:00
width: 48px;
height: 48px;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
li button {
2020-03-24 11:56:48 +01:00
width: 48px;
height: 48px;
2020-01-21 15:50:35 +01:00
background: none;
border: none;
2020-03-24 11:56:48 +01:00
border-radius: 3px;
padding: 7px;
2020-01-21 15:50:35 +01:00
outline: none;
cursor: pointer;
position: relative;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-03-24 11:56:48 +01:00
li:nth-last-child(1) {
margin-right: 0px;
background: none;
border-radius: 3px;
width: 48px;
height: 48px;
}
2020-02-03 10:50:30 +01:00
.selected {
2020-01-21 15:50:35 +01:00
color: var(--button-text);
2020-03-24 11:56:48 +01:00
background: #f9f9f9 !important;
width: 48px;
height: 48px;
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
2020-02-03 10:50:30 +01:00
.button-indicator {
position: absolute;
top: 8px;
right: 10px;
color: var(--button-text);
2020-02-03 10:50:30 +01:00
}
2020-01-21 15:50:35 +01:00
</style>