1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Handle longform types within Automations

This commit is contained in:
Peter Clement 2021-10-14 15:44:17 +01:00
parent 54fff6db18
commit fb335a27d2

View file

@ -1,6 +1,12 @@
<script>
import { tables } from "stores/backend"
import { Select, Toggle, DatePicker, Multiselect } from "@budibase/bbui"
import {
Select,
Toggle,
DatePicker,
Multiselect,
TextArea,
} from "@budibase/bbui"
import DrawerBindableInput from "../../common/bindings/DrawerBindableInput.svelte"
import AutomationBindingPanel from "../../common/bindings/ServerBindingPanel.svelte"
import { createEventDispatcher } from "svelte"
@ -43,6 +49,7 @@
function schemaHasOptions(schema) {
return !!schema.constraints?.inclusion?.length
}
$: console.log(schemaFields)
</script>
<Select
@ -52,7 +59,6 @@
getOptionLabel={table => table.name}
getOptionValue={table => table._id}
/>
{#if schemaFields.length}
<div class="schema-fields">
{#each schemaFields as [field, schema]}
@ -82,6 +88,8 @@
label={field}
options={schema.constraints.inclusion}
/>
{:else if schema.type === "longform"}
<TextArea label={field} bind:value={value[field]} />
{:else if schema.type === "link"}
<LinkedRowSelector bind:linkedRows={value[field]} {schema} />
{:else if schema.type === "string" || schema.type === "number"}