Default datasource behaviour with order of preference: DefaultDB, Internal then External
This commit is contained in:
parent
53c1f63965
commit
c41a0f8d78
|
@ -481,6 +481,40 @@ export const getFrontendStore = () => {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const dataSourceField = definition.settings.find(
|
||||||
|
setting => setting.type == "dataSource"
|
||||||
|
)
|
||||||
|
|
||||||
|
let defaultDatasource
|
||||||
|
if (dataSourceField) {
|
||||||
|
const _tables = get(tables)
|
||||||
|
const filteredTables = _tables.list.filter(
|
||||||
|
table => table._id != "ta_users"
|
||||||
|
)
|
||||||
|
|
||||||
|
const internalTable = filteredTables.find(
|
||||||
|
table =>
|
||||||
|
table.sourceId === "bb_internal" && table.type == "internal"
|
||||||
|
)
|
||||||
|
|
||||||
|
const defaultSourceTable = filteredTables.find(
|
||||||
|
table =>
|
||||||
|
table.sourceId !== "bb_internal" && table.type == "internal"
|
||||||
|
)
|
||||||
|
|
||||||
|
const defaultExternalTable = filteredTables.find(
|
||||||
|
table => table.type == "external"
|
||||||
|
)
|
||||||
|
|
||||||
|
if (defaultSourceTable) {
|
||||||
|
defaultDatasource = defaultSourceTable
|
||||||
|
} else if (internalTable) {
|
||||||
|
defaultDatasource = internalTable
|
||||||
|
} else if (defaultExternalTable) {
|
||||||
|
defaultDatasource = defaultExternalTable
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Generate default props
|
// Generate default props
|
||||||
const settings = getComponentSettings(componentName)
|
const settings = getComponentSettings(componentName)
|
||||||
let props = { ...presetProps }
|
let props = { ...presetProps }
|
||||||
|
@ -490,6 +524,15 @@ export const getFrontendStore = () => {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Set a default datasource
|
||||||
|
if (dataSourceField && defaultDatasource) {
|
||||||
|
props["dataSource"] = {
|
||||||
|
label: defaultDatasource.name,
|
||||||
|
tableId: defaultDatasource._id,
|
||||||
|
type: "table",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Add any extra properties the component needs
|
// Add any extra properties the component needs
|
||||||
let extras = {}
|
let extras = {}
|
||||||
if (definition.hasChildren) {
|
if (definition.hasChildren) {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import { store, automationStore } from "builderStore"
|
import { store, automationStore } from "builderStore"
|
||||||
import { roles, flags } from "stores/backend"
|
import { roles, flags } from "stores/backend"
|
||||||
import { apps } from "stores/portal"
|
|
||||||
import {
|
import {
|
||||||
ActionMenu,
|
ActionMenu,
|
||||||
MenuItem,
|
MenuItem,
|
||||||
|
@ -63,9 +62,6 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
$: isPublished =
|
|
||||||
$apps.find(app => app.devId === application)?.status === "published"
|
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
if (!hasSynced && application) {
|
if (!hasSynced && application) {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -93,6 +93,7 @@ export function createDatasourcesStore() {
|
||||||
return { list: sources, selected: null }
|
return { list: sources, selected: null }
|
||||||
})
|
})
|
||||||
await queries.fetch()
|
await queries.fetch()
|
||||||
|
await tables.fetch()
|
||||||
},
|
},
|
||||||
removeSchemaError: () => {
|
removeSchemaError: () => {
|
||||||
update(state => {
|
update(state => {
|
||||||
|
|
Loading…
Reference in New Issue