1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

few bugfixes

This commit is contained in:
Martin McKeaveney 2021-02-06 18:22:58 +00:00
parent d9378f1eed
commit 94f1a14445
8 changed files with 883 additions and 50 deletions

View file

@ -63,7 +63,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@budibase/bbui": "^1.58.0", "@budibase/bbui": "^1.58.1",
"@budibase/client": "^0.7.5", "@budibase/client": "^0.7.5",
"@budibase/colorpicker": "1.0.1", "@budibase/colorpicker": "1.0.1",
"@budibase/string-templates": "^0.7.5", "@budibase/string-templates": "^0.7.5",

View file

@ -13,6 +13,7 @@
import { createEventDispatcher } from "svelte" import { createEventDispatcher } from "svelte"
import { isValid } from "@budibase/string-templates" import { isValid } from "@budibase/string-templates"
import { handlebarsCompletions } from "constants/completions" import { handlebarsCompletions } from "constants/completions"
import { readableToRuntimeBinding } from "builderStore/dataBinding"
const dispatch = createEventDispatcher() const dispatch = createEventDispatcher()
@ -45,7 +46,8 @@
} }
function checkValid() { function checkValid() {
validity = isValid(value) const runtimeValue = readableToRuntimeBinding(bindings, valueToParse)
validity = isValid(runtimeValue)
} }
</script> </script>

View file

@ -16,7 +16,7 @@
...property, ...property,
category: property.type === "instance" ? "Component" : "Table", category: property.type === "instance" ? "Component" : "Table",
label: property.readableBinding, label: property.readableBinding,
path: property.readableBinding, path: property.runtimeBinding,
})) }))
$: query = $: query =

View file

@ -22,7 +22,12 @@
</script> </script>
<div> <div>
<Multiselect align="right" extraThin secondary value={boundValue} on:change={setValue}> <Multiselect
align="right"
extraThin
secondary
value={boundValue}
on:change={setValue}>
{#each options as option} {#each options as option}
<option value={option}>{option}</option> <option value={option}>{option}</option>
{/each} {/each}

View file

@ -53,7 +53,7 @@
} }
} }
// The "safe" value is the value with eny bindings made readable // The "safe" value is the value with any bindings made readable
// If there is no value set, any default value is used // If there is no value set, any default value is used
const getSafeValue = (value, defaultValue, bindableProperties) => { const getSafeValue = (value, defaultValue, bindableProperties) => {
const enriched = runtimeToReadableBinding(bindableProperties, value) const enriched = runtimeToReadableBinding(bindableProperties, value)

View file

@ -32,13 +32,13 @@
<Spacer medium /> <Spacer medium />
<div class="card-footer"> <div class="card-footer">
<TextButton text medium blue href="/_builder/{_id}"> <TextButton text medium blue href="/_builder/{_id}">
Open {name} Open
{name}
</TextButton> </TextButton>
{#if appExportLoading} {#if appExportLoading}
<Spinner size="10" /> <Spinner size="10" />
{:else} {:else}<i class="ri-folder-download-line" on:click={exportApp} />{/if}
<i class="ri-folder-download-line" on:click={exportApp} />
{/if}
</div> </div>
</div> </div>

File diff suppressed because it is too large Load diff

View file

@ -51,7 +51,10 @@ const navigationHandler = action => {
const queryExecutionHandler = async (action, context) => { const queryExecutionHandler = async (action, context) => {
const { datasourceId, queryId, queryParams } = action.parameters const { datasourceId, queryId, queryParams } = action.parameters
const enrichedQueryParameters = enrichDataBindings(queryParams || {}, context) const enrichedQueryParameters = await enrichDataBindings(
queryParams || {},
context
)
await executeQuery({ await executeQuery({
datasourceId, datasourceId,
queryId, queryId,