1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

updates grid componenet to use model schema insteady of first row keys of datasource

This commit is contained in:
kevmodrome 2020-09-28 09:15:43 +02:00
parent 8d5685c5e4
commit 564192a525
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38

View file

@ -16,13 +16,12 @@
onMount(async () => {
console.log(datasource)
const jsonModel = await _bb.api.get(`/api/models/${datasource.modelId}`)
const model = await jsonModel.json()
console.log(model)
const { schema } = await jsonModel.json()
if (!isEmpty(datasource)) {
data = await fetchData(datasource)
if (data) {
// Construct column definitions
columnDefs = Object.keys(data[0]).map(key => {
columnDefs = Object.keys(schema).map(key => {
return {
headerName: key.charAt(0).toUpperCase() + key.slice(1), // Capitalise first letter
field: key,