mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-22 04:21:01 +00:00
49 lines
1.7 KiB
Vue
49 lines
1.7 KiB
Vue
<template>
|
|
<div class="context__form-container">
|
|
<FieldSelectThroughFieldSubForm
|
|
:fields="allFieldsInTable"
|
|
:database="database"
|
|
:default-values="defaultValues"
|
|
@input="selectedThroughField = $event"
|
|
></FieldSelectThroughFieldSubForm>
|
|
<FieldSelectTargetFieldSubForm
|
|
:database="database"
|
|
:table="table"
|
|
:through-field="selectedThroughField"
|
|
:default-values="defaultValues"
|
|
:label="$t('fieldLookupSubForm.selectTargetFieldLabel')"
|
|
@input="selectedTargetField = $event"
|
|
></FieldSelectTargetFieldSubForm>
|
|
<template v-if="selectedTargetField">
|
|
<FormulaTypeSubForms
|
|
ref="subForm"
|
|
:default-values="subFormDefaultValues"
|
|
:formula-type="targetFieldFormulaType"
|
|
:table="table"
|
|
:view="view"
|
|
:all-fields-in-table="allFieldsInTable"
|
|
:database="database"
|
|
>
|
|
</FormulaTypeSubForms>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import form from '@baserow/modules/core/mixins/form'
|
|
import fieldSubForm from '@baserow/modules/database/mixins/fieldSubForm'
|
|
import lookupFieldSubForm from '@baserow/modules/database/mixins/lookupFieldSubForm'
|
|
import FormulaTypeSubForms from '@baserow/modules/database/components/formula/FormulaTypeSubForms'
|
|
import FieldSelectThroughFieldSubForm from '@baserow/modules/database/components/field/FieldSelectThroughFieldSubForm'
|
|
import FieldSelectTargetFieldSubForm from '@baserow/modules/database/components/field/FieldSelectTargetFieldSubForm'
|
|
|
|
export default {
|
|
name: 'FieldLookupSubForm',
|
|
components: {
|
|
FieldSelectThroughFieldSubForm,
|
|
FieldSelectTargetFieldSubForm,
|
|
FormulaTypeSubForms,
|
|
},
|
|
mixins: [form, fieldSubForm, lookupFieldSubForm],
|
|
}
|
|
</script>
|