fetch the table which contains info about the primaryDisplay
This commit is contained in:
parent
b0f33de743
commit
8cd921f834
|
@ -17,6 +17,7 @@
|
||||||
let table
|
let table
|
||||||
|
|
||||||
$: fetchSchema(dataSource)
|
$: fetchSchema(dataSource)
|
||||||
|
$: fetchTable(dataSource)
|
||||||
|
|
||||||
// Returns the closes data context which isn't a built in context
|
// Returns the closes data context which isn't a built in context
|
||||||
const getInitialValues = (type, dataSource, context) => {
|
const getInitialValues = (type, dataSource, context) => {
|
||||||
|
@ -74,6 +75,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const fetchTable = async dataSource => {
|
||||||
|
if (dataSource?.tableId) {
|
||||||
|
try {
|
||||||
|
table = await API.fetchTableDefinition(dataSource.tableId)
|
||||||
|
} catch (error) {
|
||||||
|
table = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$: initialValues = getInitialValues(actionType, dataSource, $context)
|
$: initialValues = getInitialValues(actionType, dataSource, $context)
|
||||||
$: resetKey = Helpers.hashString(
|
$: resetKey = Helpers.hashString(
|
||||||
JSON.stringify(initialValues) + JSON.stringify(schema)
|
JSON.stringify(initialValues) + JSON.stringify(schema)
|
||||||
|
|
Loading…
Reference in New Issue