1
0
Fork 0
mirror of synced 2024-09-21 11:53:49 +12:00

few bug fixes

This commit is contained in:
Michael Shanks 2019-10-10 10:41:31 +01:00
parent 1716b0ca5b
commit aee554383c
14 changed files with 1205 additions and 1394 deletions

View file

@ -4,7 +4,7 @@ import {
import { import {
filter, cloneDeep, sortBy, filter, cloneDeep, sortBy,
map, last, keys, concat, map, last, keys, concat,
find, isEmpty, reduce find, isEmpty, reduce, values
} from "lodash/fp"; } from "lodash/fp";
import { import {
pipe, getNode, validate, pipe, getNode, validate,
@ -120,7 +120,7 @@ const initialise = (store, initial) => async () => {
initial.hasAppPackage = true; initial.hasAppPackage = true;
initial.hierarchy = pkg.appDefinition.hierarchy; initial.hierarchy = pkg.appDefinition.hierarchy;
initial.accessLevels = pkg.accessLevels; initial.accessLevels = pkg.accessLevels;
initial.derivedComponents = pkg.derivedComponents; initial.derivedComponents = values(pkg.derivedComponents);
initial.generators = generatorsArray(pkg.rootComponents.generators); initial.generators = generatorsArray(pkg.rootComponents.generators);
initial.allComponents = combineComponents( initial.allComponents = combineComponents(
pkg.derivedComponents, pkg.rootComponents.components); pkg.derivedComponents, pkg.rootComponents.components);
@ -453,7 +453,7 @@ const saveDerivedComponent = store => (derivedComponent) => {
s.allComponents = components; s.allComponents = components;
s.derivedComponents = derivedComponents; s.derivedComponents = derivedComponents;
s.currentFrontEndItem = derivedComponent; s.currentFrontEndItem = derivedComponent;
s.currentComponentInfo = getNewComponentInfo( s.currentComponentInfo = getComponentInfo(
s.allComponents, derivedComponent.name); s.allComponents, derivedComponent.name);
s.currentComponentIsNew = false; s.currentComponentIsNew = false;
@ -480,6 +480,7 @@ const createDerivedComponent = store => componentName => {
const createGeneratedComponents = store => components => { const createGeneratedComponents = store => components => {
store.update(s => { store.update(s => {
s.allComponents = [...s.allComponents, ...components]; s.allComponents = [...s.allComponents, ...components];
s.derivedComponents = [...s.derivedComponents, ...components];
const doCreate = async () => { const doCreate = async () => {
for(let c of components) { for(let c of components) {

View file

@ -3,7 +3,7 @@ import {
last last
} from "lodash/fp"; } from "lodash/fp";
import IconButton from "../common/IconButton.svelte"; import IconButton from "../common/IconButton.svelte";
import ComponentSearch from "./ComponentSearch.svelte"; import ComponentSelector from "./ComponentSelector.svelte";
import Button from "../common/Button.svelte"; import Button from "../common/Button.svelte";
import ButtonGroup from "../common/ButtonGroup.svelte"; import ButtonGroup from "../common/ButtonGroup.svelte";
import UIkit from "uikit"; import UIkit from "uikit";
@ -89,11 +89,12 @@ const confirmClearComponent = () => {
</div> </div>
<div bind:this={modalElement} uk-modal> <div bind:this={modalElement} uk-modal>
<div class="uk-modal-dialog"> <div class="uk-modal-dialog" uk-overflow-auto>
{#if modalAction === CHOOSE_COMPONENT} {#if modalAction === CHOOSE_COMPONENT}
<div class="uk-modal-body"> <div class="uk-modal-body">
<ComponentSearch onComponentChosen={componentChosen} /> <ComponentSelector onComponentChosen={componentChosen}
allowGenerators={false} />
</div> </div>
{:else if modalAction === CLEAR_COMPONENT} {:else if modalAction === CLEAR_COMPONENT}
<div class="uk-modal-body"> <div class="uk-modal-body">

View file

@ -11,6 +11,7 @@ import { pipe } from "../common/core";
export let onComponentChosen; export let onComponentChosen;
export let onGeneratorChosen; export let onGeneratorChosen;
export let allowGenerators;
let derivedComponents=[]; let derivedComponents=[];
let componentLibraries=[]; let componentLibraries=[];
@ -77,6 +78,7 @@ store.subscribe(s => {
<div class="library-container"> <div class="library-container">
{#if allowGenerators}
<div class="inner-header"> <div class="inner-header">
Generators Generators
</div> </div>
@ -94,6 +96,7 @@ store.subscribe(s => {
</div> </div>
{/each} {/each}
{/if}
<div class="inner-header"> <div class="inner-header">
Components Components

View file

@ -58,6 +58,7 @@ const onGeneratorChosen = (g) => {
const onConfirmGenerate = (components) => { const onConfirmGenerate = (components) => {
store.createGeneratedComponents(components); store.createGeneratedComponents(components);
UIkit.modal(generatorOptionsModal).hide();
generator = null; generator = null;
} }
@ -72,7 +73,8 @@ const onConfirmGenerate = (components) => {
<div class="uk-modal-body"> <div class="uk-modal-body">
<ComponentSelector onComponentChosen={onComponentChosen} <ComponentSelector onComponentChosen={onComponentChosen}
onGeneratorChosen={onGeneratorChosen} /> onGeneratorChosen={onGeneratorChosen}
allowGenerators={true} />
</div> </div>
</div> </div>
</div> </div>

View file

@ -0,0 +1,16 @@
{
"name": "Yeo button",
"description": "aye so it it",
"inherits": "@budibase/standard-components/button",
"props": {
"background": "red",
"hoverBackground": "blue",
"color": "white",
"border": "solid 5px green",
"hoverBorder": "solid 10px yellow",
"hoverColor": "purple"
},
"tags": [
"button"
]
}

View file

@ -3,9 +3,6 @@
"description": "Header 1", "description": "Header 1",
"inherits": "@budibase/standard-components/text", "inherits": "@budibase/standard-components/text",
"props": { "props": {
"font": "29pt" "font": "20pt"
}, }
"tags": [
""
]
} }

View file

@ -1,13 +0,0 @@
{
"name": "common/Prim Button",
"description": "a styled button",
"inherits": "@budibase/standard-components/button",
"props": {
"padding": "5px 7px",
"border": "1px solid #EEE",
"color": "#5F6368",
"background": "##f2f2f2",
"hoverColor": "black",
"hoverBackground": "#cccccc"
}
}

View file

@ -1,13 +0,0 @@
{
"name": "common/Primary Button",
"description": "a styled button",
"inherits": "@budibase/standard-components/button",
"props": {
"padding": "5px 7px",
"border": "1px solid #EEE",
"color": "#5F6368",
"background": "##f2f2f2",
"hoverColor": "black",
"hoverBackground": "#cccccc"
}
}

View file

@ -1,13 +0,0 @@
{
"name": "common/Secondary Button",
"description": "a styled button",
"inherits": "@budibase/standard-components/button",
"props": {
"padding": "5px 7px",
"border": "1px solid #EEE",
"color": "#5F6368",
"background": "##f2f2f2",
"hoverColor": "black",
"hoverBackground": "#cccccc"
}
}

View file

@ -21,11 +21,8 @@
"_component": "@budibase/standard-components/textbox", "_component": "@budibase/standard-components/textbox",
"value": { "value": {
"##bbstate": "currentcustomer.name", "##bbstate": "currentcustomer.name",
"##bbstatefallback": "mike",
"##bbsource": "store" "##bbsource": "store"
}, }
"hideValue": false,
"className": "default"
} }
} }
] ]
@ -76,8 +73,5 @@
} }
} }
] ]
}, }
"tags": [
""
]
} }

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -23,22 +23,38 @@ let customHoverColorClass;
let customHoverBorderClass; let customHoverBorderClass;
let customHoverBackClass; let customHoverBackClass;
let customClasses = "";
const createClasses = (classes) => {
let all = "";
for(let cls in classes) {
if(classes[cls]) {
all = all + " " + cls;
}
}
return all;
}
$:{ $:{
if(_bb && contentComponentContainer && contentComponent._component) if(_bb && contentComponentContainer && contentComponent._component)
_bb.initialiseComponent(contentComponent, contentComponentContainer); _bb.initialiseComponent(contentComponent, contentComponentContainer);
cssVariables = { cssVariables = {
hoverColor, hoverBorder, hoverColor, hoverBorder,
hoverBackground hoverBackground,
background, color, border,
}; };
buttonStyles = buildStyle({ buttonStyles = buildStyle({
background, color, border, padding padding
}) });
customClasses = createClasses({
hoverColor, hoverBorder, hoverBackground,
background, border, color
});
customHoverColorClass = hoverColor ? "customHoverColor" : "";
customHoverBorderClass = hoverBorder ? "customHoverBorder" : "";
customHoverBackClass = hoverBackground ? "customHoverBack" : "";
} }
@ -52,7 +68,7 @@ const clickHandler = () => {
<button use:cssVars={cssVariables} <button use:cssVars={cssVariables}
class="{className} {customHoverColorClass} {customHoverBorderClass} {customHoverBackClass}" class="{className} {customClasses}"
disabled={disabled || false} disabled={disabled || false}
on:click={clickHandler} on:click={clickHandler}
style={buttonStyles}> style={buttonStyles}>
@ -90,15 +106,29 @@ const clickHandler = () => {
border-color: #666; border-color: #666;
} }
.customHoverBorder:hover { .border {
border: var(--border);
}
.color {
color: var(--color);
}
.background {
background: var(--background);
}
.hoverBorder:hover {
border: var(--hoverBorder); border: var(--hoverBorder);
} }
.customHoverColor:hover { .hoverColor:hover {
color: var(--hoverColor); color: var(--hoverColor);
} }
.customHoverBack:hover { .hoverBack:hover {
background: var(--hoverBackground); background: var(--hoverBackground);
} }
</style> </style>