Implement updating of individual component props

This commit is contained in:
pngwn 2020-01-24 11:32:13 +00:00
parent 05a32f25f0
commit d78f8013b5
14 changed files with 385 additions and 254 deletions

View File

@ -17,7 +17,7 @@ import api from "./api";
import { isRootComponent, getExactComponent } from "../userInterface/pagesParsing/searchComponents"; import { isRootComponent, getExactComponent } from "../userInterface/pagesParsing/searchComponents";
import { rename } from "../userInterface/pagesParsing/renameScreen"; import { rename } from "../userInterface/pagesParsing/renameScreen";
import { import {
getNewComponentInfo, getScreenInfo getNewComponentInfo, getScreenInfo, getComponentInfo
} from "../userInterface/pagesParsing/createProps"; } from "../userInterface/pagesParsing/createProps";
import { import {
loadLibs, loadLibUrls, loadGeneratorLibs loadLibs, loadLibUrls, loadGeneratorLibs
@ -91,6 +91,9 @@ export const getStore = () => {
store.showSettings = showSettings(store); store.showSettings = showSettings(store);
store.useAnalytics = useAnalytics(store); store.useAnalytics = useAnalytics(store);
store.createGeneratedComponents = createGeneratedComponents(store); store.createGeneratedComponents = createGeneratedComponents(store);
store.addChildComponent = addChildComponent(store);
store.selectComponent = selectComponent(store);
store.saveComponent = saveComponent(store);
return store; return store;
} }
@ -689,3 +692,44 @@ const setCurrentPage = store => pageName => {
return s; return s;
}) })
} }
const addChildComponent = store => component => {
store.update(s => {
const newComponent = getNewComponentInfo(
s.components, component);
const children = s.currentFrontEndItem.props._children;
const component_definition = {
...newComponent.fullProps,
_component: component,
name: component,
description: '',
location: (s.currentFrontEndItem.location ? s.currentFrontEndItem.location : [])
.concat(children && children.length || 0)
}
s.currentFrontEndItem.props._children =
children ?
children.concat(component_definition) :
[component_definition];
return s;
})
}
const selectComponent = store => component => {
store.update(s => {
s.currentComponentInfo = getComponentInfo(s.components, component);
return s;
})
}
const saveComponent = store => component => {
store.update(s => {
s.currentComponentInfo = getComponentInfo(s.components, component);
console.log(s.currentFrontEndItem, s.screens)
return _saveScreen(store, s, s.currentFrontEndItem);
})
}

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="currentColor" d="M4.828 21l-.02.02-.021-.02H2.992A.993.993 0 0 1 2 20.007V3.993A1 1 0 0 1 2.992 3h18.016c.548 0 .992.445.992.993v16.014a1 1 0 0 1-.992.993H4.828zM20 15V5H4v14L14 9l6 6zm0 2.828l-6-6L6.828 19H20v-1.172zM8 11a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/>
</svg>

After

Width:  |  Height:  |  Size: 400 B

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="currentColor" d="M5 5v14h14V5H5zM4 3h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm5.869 12l-.82 2H6.833L11 7h2l4.167 10H14.95l-.82-2H9.87zm.82-2h2.622L12 9.8 10.689 13z"/>
</svg>

After

Width:  |  Height:  |  Size: 339 B

View File

@ -1,3 +1,5 @@
export { default as LayoutIcon } from './Layout.svelte'; export { default as LayoutIcon } from './Layout.svelte';
export { default as PaintIcon } from './Paint.svelte'; export { default as PaintIcon } from './Paint.svelte';
export { default as TerminalIcon } from './Terminal.svelte'; export { default as TerminalIcon } from './Terminal.svelte';
export { default as InputIcon } from './Input.svelte';
export { default as ImageIcon } from './Image.svelte';

View File

@ -0,0 +1,24 @@
<script>
import { last } from "lodash/fp";
import { pipe } from "../common/core";
export let components = [];
export let onSelect = () => {};
const capitalise = s => s.substring(0,1).toUpperCase() + s.substring(1);
const get_name = s => last(s.split('/'));
const get_capitalised_name = name => pipe(name, [get_name,capitalise]);
</script>
{#each components as component}
<ul>
<li on:click|stopPropagation={() => onSelect(component)}>
{get_capitalised_name(component.name)}
{#if component._children}
<svelte:self components={component._children}/>
{/if}
</li>
</ul>
{/each}

View File

@ -43,7 +43,7 @@ $: shortName = last(name.split("/"));
store.subscribe(s => { store.subscribe(s => {
if(ignoreStore) return; if(ignoreStore) return;
component = s.currentFrontEndItem; component = s.currentComponentInfo.component;
if(!component) return; if(!component) return;
originalName = component.name; originalName = component.name;
name = component.name; name = component.name;
@ -68,7 +68,7 @@ const save = () => {
map(s => s.trim()) map(s => s.trim())
]); ]);
store.saveScreen(component); store.saveComponent(component);
ignoreStore = false; ignoreStore = false;
// now do the rename // now do the rename
@ -92,14 +92,15 @@ const onPropsValidate = result => {
const updateComponent = doChange => { const updateComponent = doChange => {
const newComponent = cloneDeep(component); const newComponent = cloneDeep(component);
doChange(newComponent);
component = newComponent; component = doChange(newComponent);
console.log(component, $store.screens[0].props._children[1])
componentInfo = getScreenInfo(components, newComponent); componentInfo = getScreenInfo(components, newComponent);
} }
const onPropsChanged = newProps => { const onPropsChanged = newProps => {
updateComponent(newComponent => updateComponent(newComponent =>
assign(newComponent.props, newProps)); assign(newComponent, newProps))
save(); save();
} }

View File

@ -1,4 +1,5 @@
<script> <script>
import ComponentHierarchyChildren from './ComponentHierarchyChildren.svelte';
import { import {
last, last,
@ -22,6 +23,7 @@ export let thisLevel = "";
let pathPartsThisLevel; let pathPartsThisLevel;
let componentsThisLevel; let componentsThisLevel;
let _components;
let subfolders; let subfolders;
let expandedFolders = []; let expandedFolders = [];
@ -52,7 +54,7 @@ const isOnNextLevel = (c) =>
normalizedName(c.name).split("/").length === pathPartsThisLevel + 1 normalizedName(c.name).split("/").length === pathPartsThisLevel + 1
const lastPartOfName = (c) => const lastPartOfName = (c) =>
last(c.name.split("/")) last(c.name ? c.name.split("/") : c._component.split("/"))
const subFolder = (c) => { const subFolder = (c) => {
const cname = normalizedName(c.name); const cname = normalizedName(c.name);
@ -102,27 +104,27 @@ $: {
? 1 ? 1
: normalizedName(thisLevel).split("/").length + 1; : normalizedName(thisLevel).split("/").length + 1;
componentsThisLevel = _components =
pipe(components, [ pipe(components, [
filter(isOnThisLevel), // filter(isOnThisLevel),
map(c => ({component: c, title:lastPartOfName(c)})), map(c => ({component: c, title:lastPartOfName(c)})),
sortBy("title") sortBy("title")
]); ]);
subfolders = // subfolders =
pipe(components, [ // pipe(components, [
filter(notOnThisLevel), // filter(notOnThisLevel),
sortBy("name"), // sortBy("name"),
map(subFolder), // map(subFolder),
uniqWith((f1,f2) => f1.path === f2.path) // uniqWith((f1,f2) => f1.path === f2.path)
]); // ]);
} }
</script> </script>
<div class="root"> <div class="root">
{#each subfolders as folder} <!-- {#each subfolders as folder}
<div class="hierarchy-item folder" <div class="hierarchy-item folder"
on:click|stopPropagation={() => expandFolder(folder)}> on:click|stopPropagation={() => expandFolder(folder)}>
<span>{@html getIcon(folder.isExpanded ? "chevron-down" : "chevron-right", "16")}</span> <span>{@html getIcon(folder.isExpanded ? "chevron-down" : "chevron-right", "16")}</span>
@ -132,14 +134,18 @@ $: {
thisLevel={folder.path} /> thisLevel={folder.path} />
{/if} {/if}
</div> </div>
{/each} {/each} -->
{#each componentsThisLevel as component} {#each _components as component}
<div class="hierarchy-item component" class:selected={isComponentSelected($store.currentFrontEndType, $store.currentFrontEndItem, component.component)} <div class="hierarchy-item component"
class:selected={isComponentSelected($store.currentFrontEndType, $store.currentFrontEndItem, component.component)}
on:click|stopPropagation={() => store.setCurrentScreen(component.component.name)}> on:click|stopPropagation={() => store.setCurrentScreen(component.component.name)}>
<!-- <span>{@html getIcon("circle", "7")}</span> -->
<span class="title">{component.title}</span> <span class="title">{component.title}</span>
</div> </div>
{#if component.component.props && component.component.props._children}
<ComponentHierarchyChildren components={component.component.props._children} onSelect={store.selectComponent}/>
{/if}
{/each} {/each}
</div> </div>

View File

@ -8,6 +8,7 @@ import {
groupBy, keys, find, sortBy groupBy, keys, find, sortBy
} from "lodash/fp"; } from "lodash/fp";
import { pipe } from "../common/core"; import { pipe } from "../common/core";
import { ImageIcon, InputIcon, LayoutIcon } from '../common/Icons/';
let componentLibraries=[]; let componentLibraries=[];
@ -29,9 +30,7 @@ const addRootComponent = (c, all) => {
}; };
const onComponentChosen = (component) => { const onComponentChosen = store.addChildComponent;
};
store.subscribe(s => { store.subscribe(s => {
@ -46,6 +45,8 @@ store.subscribe(s => {
componentLibraries = newComponentLibraries; componentLibraries = newComponentLibraries;
}); });
let current_view = 'text';
</script> </script>
<div class="root"> <div class="root">
@ -55,22 +56,34 @@ store.subscribe(s => {
</div> </div>
<div class="library-container"> <div class="library-container">
<ul>
<li>
<button class:selected={current_view === 'text'} on:click={() => current_view = 'text'}>
<InputIcon />
</button>
</li>
<li>
<button class:selected={current_view === 'layout'} on:click={() => current_view = 'layout'}>
<LayoutIcon />
</button>
</li>
<li>
<button class:selected={current_view === 'media'} on:click={() => current_view = 'media'}>
<ImageIcon />
</button>
</li>
</ul>
{#each lib.components.filter(_ => true) as component}
<div class="inner-header">
Components
</div>
{#each lib.components as component}
<div class="component" <div class="component"
on:click={() => onComponentChosen(component)}> on:click={() => onComponentChosen(component.name)}>
<div class="name"> <div class="name">
{splitName(component.name).componentName} {splitName(component.name).componentName}
</div> </div>
<div class="description"> <!-- <div class="description">
{component.description} {component.description}
</div> </div> -->
</div> </div>
{/each} {/each}
@ -113,8 +126,16 @@ store.subscribe(s => {
} }
.component { .component {
padding: 2px 0px; padding: 0 15px;
cursor: pointer; cursor: pointer;
border: 1px solid #ccc;
border-radius: 2px;
margin: 10px 0;
height: 40px;
box-sizing: border-box;
color: #163057;
display: flex;
align-items: center;
} }
.component:hover { .component:hover {
@ -122,8 +143,11 @@ store.subscribe(s => {
} }
.component > .name { .component > .name {
color: var(--secondary100); color: #163057;
display: inline-block; display: inline-block;
font-size: 12px;
font-weight: bold;
opacity: 0.6;
} }
.component > .description { .component > .description {
@ -133,6 +157,34 @@ store.subscribe(s => {
margin-left: 10px; margin-left: 10px;
} }
ul {
list-style: none;
display: flex;
padding: 0;
}
li {
margin-right: 20px;
background: none;
border-radius: 5px;
width: 48px;
height: 48px;
}
li button {
width: 100%;
height: 100%;
background: none;
border: none;
border-radius: 5px;
padding: 12px;
outline: none;
cursor: pointer;
}
.selected {
color: var(--button-text);
background: var(--background-button)!important;
}
</style> </style>

View File

@ -29,7 +29,6 @@ let name="";
let saveAttempted=false; let saveAttempted=false;
store.subscribe(s => { store.subscribe(s => {
console.log(s)
layoutComponents = pipe(s.components, [ layoutComponents = pipe(s.components, [
filter(c => c.container), filter(c => c.container),
map(c => ({name:c.name, ...splitName(c.name)})) map(c => ({name:c.name, ...splitName(c.name)}))

View File

@ -25,7 +25,6 @@ let props = {};
let propsDefinitions = []; let propsDefinitions = [];
let isInstance = false; let isInstance = false;
$: { $: {
if(componentInfo) if(componentInfo)
{ {
@ -46,7 +45,7 @@ $: {
let setProp = (name, value) => { let setProp = (name, value) => {
const newProps = cloneDeep(props); const newProps = cloneDeep(props);
let finalProps = isInstance ? newProps : cloneDeep(componentInfo.component.props); let finalProps = isInstance ? newProps : cloneDeep(componentInfo.component.props ? componentInfo.component.props : componentInfo.component);
if(!isInstance) { if(!isInstance) {
const nowSet = []; const nowSet = [];
@ -98,9 +97,6 @@ const fieldHasError = (propName) =>
</form> </form>
</div> </div>

View File

@ -48,7 +48,7 @@ export const getComponentInfo = (components, comp) => {
component = targetComponent; component = targetComponent;
} else { } else {
subComponent = targetComponent; subComponent = targetComponent;
component = find(c => c.name === subComponent.props._component)( component = find(c => c.name === (subComponent.props ? subComponent.props._component : subComponent._component))(
components); components);
} }

View File

@ -19,7 +19,8 @@ const makeError = (errors, propName, stack) => (message) =>
errors.push({ errors.push({
stack, stack,
propName, propName,
error:message}); error: message
});
export const recursivelyValidate = (rootProps, getComponent, stack = []) => { export const recursivelyValidate = (rootProps, getComponent, stack = []) => {
@ -77,9 +78,9 @@ export const validateProps = (componentDefinition, props, stack=[], isFinal=true
for (let propDefName in props) { for (let propDefName in props) {
if(propDefName === "_component") continue; const ignore = ['_component', "_children", '_layout', 'name', 'description', 'location'];
if(propDefName === "_children") continue;
if(propDefName === "_layout") continue; if (ignore.includes(propDefName)) continue;
const propDef = expandPropDef(propsDefinition[propDefName]); const propDef = expandPropDef(propsDefinition[propDefName]);
@ -140,4 +141,3 @@ export const validateComponentDefinition = (componentDefinition) => {
return errors; return errors;
} }

View File

@ -8,7 +8,7 @@ export let _bb;
let rootDiv; let rootDiv;
$:{ $:{
if(_bb && rootDiv && _children && _children.length) if(_bb && rootDiv && _children && _children.length)
_bb.hydrateChildren(_children, theButton); _bb.hydrateChildren(_children, rootDiv);
} }
@ -16,4 +16,3 @@ $:{
<div class="{className}" bind:this={rootDiv}> <div class="{className}" bind:this={rootDiv}>
</div> </div>