1
0
Fork 0
mirror of synced 2024-06-27 18:40:42 +12:00

Provide schema from data providers

This commit is contained in:
Andrew Kingston 2021-03-18 15:53:25 +00:00
parent 788817d249
commit dc1f420163

View file

@ -17,10 +17,13 @@
let loaded = false
let allRows = []
let schema = {}
$: fetchData(dataSource)
$: filteredRows = filterRows(allRows, filter)
$: sortedRows = sortRows(filteredRows, sortColumn, sortOrder)
$: rows = limitRows(sortedRows, limit)
$: getSchema(dataSource)
$: actions = [
{
type: ActionTypes.RefreshDatasource,
@ -30,6 +33,7 @@
]
$: dataContext = {
rows,
schema,
rowsLength: rows.length,
loading,
loaded,
@ -79,6 +83,17 @@
}
return rows.slice(0, numLimit)
}
const getSchema = async dataSource => {
if (dataSource?.schema) {
schema = dataSource.schema
} else if (dataSource?.tableId) {
const definition = await API.fetchTableDefinition(dataSource.tableId)
schema = definition?.schema ?? {}
} else {
schema = {}
}
}
</script>
<Provider {actions} data={dataContext}>