1
0
Fork 0
mirror of synced 2024-09-14 00:08:25 +12:00
budibase/packages/standard-components/src/forms/RelationshipField.svelte
2021-08-17 15:13:57 +02:00

92 lines
2.1 KiB
Svelte

<script>
import { CoreSelect, CoreMultiselect } from "@budibase/bbui"
import { getContext } from "svelte"
import Field from "./Field.svelte"
const { API } = getContext("sdk")
export let field
export let label
export let placeholder
export let disabled = false
export let validation
export let autocomplete = false
let fieldState
let fieldApi
let fieldSchema
let options = []
let tableDefinition
$: multiselect = fieldSchema?.relationshipType !== "one-to-many"
$: linkedTableId = fieldSchema?.tableId
$: fetchRows(linkedTableId)
$: fetchTable(linkedTableId)
$: singleValue = flatten($fieldState?.value)?.[0]
$: multiValue = flatten($fieldState?.value) ?? []
$: component = multiselect ? CoreMultiselect : CoreSelect
const fetchTable = async id => {
if (id) {
const result = await API.fetchTableDefinition(id)
if (!result.error) {
tableDefinition = result
}
}
}
const fetchRows = async id => {
if (id) {
const rows = await API.fetchTableData(id)
options = rows && !rows.error ? rows : []
}
}
const flatten = values => {
if (!values) {
return []
}
return values.map(value => (typeof value === "object" ? value._id : value))
}
const getDisplayName = row => {
return row?.[tableDefinition?.primaryDisplay || "_id"] || "-"
}
const singleHandler = e => {
fieldApi.setValue(e.detail == null ? [] : [e.detail])
}
const multiHandler = e => {
fieldApi.setValue(e.detail)
}
</script>
<Field
{label}
{field}
{disabled}
{validation}
type="link"
bind:fieldState
bind:fieldApi
bind:fieldSchema
defaultValue={[]}
>
{#if fieldState}
<svelte:component
this={component}
{options}
{autocomplete}
value={multiselect ? multiValue : singleValue}
on:change={multiselect ? multiHandler : singleHandler}
id={$fieldState.fieldId}
disabled={$fieldState.disabled}
error={$fieldState.error}
getOptionLabel={getDisplayName}
getOptionValue={option => option._id}
{placeholder}
/>
{/if}
</Field>