2021-03-16 14:54:34 +01:00
|
|
|
<script>
|
|
|
|
import { getContext } from "svelte"
|
2021-05-13 13:26:18 +02:00
|
|
|
import { ProgressCircle, Pagination } from "@budibase/bbui"
|
2021-03-16 14:54:34 +01:00
|
|
|
|
|
|
|
export let dataSource
|
|
|
|
export let filter
|
|
|
|
export let sortColumn
|
|
|
|
export let sortOrder
|
2021-05-13 13:26:18 +02:00
|
|
|
export let limit
|
|
|
|
export let paginate
|
2021-03-16 14:54:34 +01:00
|
|
|
|
|
|
|
const { API, styleable, Provider, ActionTypes } = getContext("sdk")
|
|
|
|
const component = getContext("component")
|
|
|
|
|
|
|
|
// Loading flag every time data is being fetched
|
|
|
|
let loading = false
|
|
|
|
|
|
|
|
// Loading flag for the initial load
|
|
|
|
let loaded = false
|
2021-05-13 14:11:45 +02:00
|
|
|
let schemaLoaded = false
|
2021-03-16 14:54:34 +01:00
|
|
|
|
2021-04-30 17:29:53 +02:00
|
|
|
// Provider state
|
|
|
|
let rows = []
|
2021-05-11 12:24:16 +02:00
|
|
|
let allRows = []
|
2021-03-18 16:53:25 +01:00
|
|
|
let schema = {}
|
2021-04-30 17:29:53 +02:00
|
|
|
let bookmarks = [null]
|
|
|
|
let pageNumber = 0
|
2021-03-18 16:53:25 +01:00
|
|
|
|
2021-05-11 12:24:16 +02:00
|
|
|
$: internalTable = dataSource?.type === "table"
|
2021-05-11 20:07:52 +02:00
|
|
|
$: query = internalTable ? buildLuceneQuery(filter) : null
|
2021-04-30 17:29:53 +02:00
|
|
|
$: hasNextPage = bookmarks[pageNumber + 1] != null
|
|
|
|
$: hasPrevPage = pageNumber > 0
|
2021-03-18 16:53:25 +01:00
|
|
|
$: getSchema(dataSource)
|
2021-05-11 12:24:16 +02:00
|
|
|
$: sortType = getSortType(schema, sortColumn)
|
|
|
|
$: {
|
2021-05-13 14:11:45 +02:00
|
|
|
// Wait until schema loads before loading data, so that we can determine
|
|
|
|
// the correct sort type first time
|
|
|
|
if (schemaLoaded) {
|
|
|
|
fetchData(
|
|
|
|
dataSource,
|
|
|
|
query,
|
|
|
|
limit,
|
|
|
|
sortColumn,
|
|
|
|
sortOrder,
|
|
|
|
sortType,
|
|
|
|
paginate
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$: {
|
|
|
|
// Sort and limit rows in memory when we aren't searching internal tables
|
2021-05-11 12:24:16 +02:00
|
|
|
if (internalTable) {
|
|
|
|
rows = allRows
|
|
|
|
} else {
|
2021-05-11 20:07:52 +02:00
|
|
|
const sortedRows = sortRows(allRows, sortColumn, sortOrder)
|
|
|
|
rows = limitRows(sortedRows, limit)
|
2021-05-11 12:24:16 +02:00
|
|
|
}
|
|
|
|
}
|
2021-03-16 14:54:34 +01:00
|
|
|
$: actions = [
|
|
|
|
{
|
|
|
|
type: ActionTypes.RefreshDatasource,
|
|
|
|
callback: () => fetchData(dataSource),
|
|
|
|
metadata: { dataSource },
|
|
|
|
},
|
|
|
|
]
|
2021-05-13 13:30:45 +02:00
|
|
|
$: dataContext = { rows, schema, rowsLength: rows.length }
|
2021-03-16 14:54:34 +01:00
|
|
|
|
2021-05-11 12:24:16 +02:00
|
|
|
const getSortType = (schema, sortColumn) => {
|
|
|
|
if (!schema || !sortColumn || !schema[sortColumn]) {
|
|
|
|
return "string"
|
|
|
|
}
|
|
|
|
const type = schema?.[sortColumn]?.type
|
|
|
|
return type === "number" ? "number" : "string"
|
|
|
|
}
|
|
|
|
|
|
|
|
const buildLuceneQuery = filter => {
|
2021-04-30 17:29:53 +02:00
|
|
|
let query = {
|
|
|
|
string: {},
|
|
|
|
fuzzy: {},
|
|
|
|
range: {},
|
|
|
|
equal: {},
|
|
|
|
notEqual: {},
|
|
|
|
empty: {},
|
|
|
|
notEmpty: {},
|
|
|
|
}
|
|
|
|
if (Array.isArray(filter)) {
|
2021-05-11 19:33:25 +02:00
|
|
|
filter.forEach(({ operator, field, type, value }) => {
|
|
|
|
if (operator.startsWith("range")) {
|
|
|
|
if (!query.range[field]) {
|
|
|
|
query.range[field] = {
|
|
|
|
low: type === "number" ? Number.MIN_SAFE_INTEGER : "0000",
|
|
|
|
high: type === "number" ? Number.MAX_SAFE_INTEGER : "9999",
|
|
|
|
}
|
2021-04-30 17:29:53 +02:00
|
|
|
}
|
2021-05-11 19:33:25 +02:00
|
|
|
if (operator === "rangeLow") {
|
|
|
|
query.range[field].low = value
|
|
|
|
} else if (operator === "rangeHigh") {
|
|
|
|
query.range[field].high = value
|
2021-04-30 17:29:53 +02:00
|
|
|
}
|
2021-05-11 19:33:25 +02:00
|
|
|
} else if (query[operator]) {
|
|
|
|
query[operator][field] = value
|
2021-04-30 17:29:53 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return query
|
|
|
|
}
|
|
|
|
|
2021-05-11 12:24:16 +02:00
|
|
|
const fetchData = async (
|
|
|
|
dataSource,
|
|
|
|
query,
|
|
|
|
limit,
|
|
|
|
sortColumn,
|
|
|
|
sortOrder,
|
2021-05-13 13:26:18 +02:00
|
|
|
sortType,
|
|
|
|
paginate
|
2021-05-11 12:24:16 +02:00
|
|
|
) => {
|
2021-03-16 14:54:34 +01:00
|
|
|
loading = true
|
2021-04-30 17:29:53 +02:00
|
|
|
if (dataSource?.type === "table") {
|
|
|
|
const res = await API.searchTable({
|
|
|
|
tableId: dataSource.tableId,
|
|
|
|
query,
|
|
|
|
limit,
|
|
|
|
sort: sortColumn,
|
|
|
|
sortOrder: sortOrder?.toLowerCase() ?? "ascending",
|
2021-05-11 12:24:16 +02:00
|
|
|
sortType,
|
2021-05-13 13:26:18 +02:00
|
|
|
paginate,
|
2021-04-30 17:29:53 +02:00
|
|
|
})
|
|
|
|
pageNumber = 0
|
2021-05-11 12:24:16 +02:00
|
|
|
allRows = res.rows
|
2021-05-13 13:26:18 +02:00
|
|
|
if (res.hasNextPage) {
|
2021-04-30 17:29:53 +02:00
|
|
|
bookmarks = [null, res.bookmark]
|
|
|
|
} else {
|
|
|
|
bookmarks = [null]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const rows = await API.fetchDatasource(dataSource)
|
2021-05-11 12:24:16 +02:00
|
|
|
allRows = inMemoryFilterRows(rows, filter)
|
2021-04-30 17:29:53 +02:00
|
|
|
}
|
2021-03-16 14:54:34 +01:00
|
|
|
loading = false
|
2021-03-16 20:11:00 +01:00
|
|
|
loaded = true
|
2021-03-16 14:54:34 +01:00
|
|
|
}
|
|
|
|
|
2021-04-30 17:29:53 +02:00
|
|
|
const inMemoryFilterRows = (rows, filter) => {
|
2021-03-16 14:54:34 +01:00
|
|
|
let filteredData = [...rows]
|
2021-05-11 12:24:16 +02:00
|
|
|
Object.entries(filter || {}).forEach(([field, value]) => {
|
2021-03-16 14:54:34 +01:00
|
|
|
if (value != null && value !== "") {
|
2021-05-11 12:24:16 +02:00
|
|
|
filteredData = filteredData.filter(row => {
|
2021-03-16 14:54:34 +01:00
|
|
|
return row[field] === value
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return filteredData
|
|
|
|
}
|
|
|
|
|
|
|
|
const sortRows = (rows, sortColumn, sortOrder) => {
|
|
|
|
if (!sortColumn || !sortOrder) {
|
|
|
|
return rows
|
|
|
|
}
|
|
|
|
return rows.slice().sort((a, b) => {
|
|
|
|
const colA = a[sortColumn]
|
|
|
|
const colB = b[sortColumn]
|
2021-03-16 20:11:00 +01:00
|
|
|
if (sortOrder === "Descending") {
|
2021-03-16 14:54:34 +01:00
|
|
|
return colA > colB ? -1 : 1
|
|
|
|
} else {
|
|
|
|
return colA > colB ? 1 : -1
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const limitRows = (rows, limit) => {
|
|
|
|
const numLimit = parseFloat(limit)
|
|
|
|
if (isNaN(numLimit)) {
|
|
|
|
return rows
|
|
|
|
}
|
|
|
|
return rows.slice(0, numLimit)
|
|
|
|
}
|
2021-03-18 16:53:25 +01:00
|
|
|
|
2021-05-11 12:24:16 +02:00
|
|
|
const getSchema = async dataSource => {
|
2021-03-18 16:53:25 +01:00
|
|
|
if (dataSource?.schema) {
|
|
|
|
schema = dataSource.schema
|
|
|
|
} else if (dataSource?.tableId) {
|
|
|
|
const definition = await API.fetchTableDefinition(dataSource.tableId)
|
|
|
|
schema = definition?.schema ?? {}
|
|
|
|
} else {
|
|
|
|
schema = {}
|
|
|
|
}
|
2021-03-25 09:14:53 +01:00
|
|
|
|
2021-05-04 12:04:42 +02:00
|
|
|
// Ensure there are "name" properties for all fields and that field schema
|
|
|
|
// are objects
|
|
|
|
let fixedSchema = {}
|
|
|
|
Object.entries(schema || {}).forEach(([fieldName, fieldSchema]) => {
|
|
|
|
if (typeof fieldSchema === "string") {
|
|
|
|
fixedSchema[fieldName] = {
|
|
|
|
type: fieldSchema,
|
|
|
|
name: fieldName,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fixedSchema[fieldName] = {
|
|
|
|
...fieldSchema,
|
|
|
|
name: fieldName,
|
|
|
|
}
|
2021-03-25 09:14:53 +01:00
|
|
|
}
|
|
|
|
})
|
2021-05-04 12:04:42 +02:00
|
|
|
schema = fixedSchema
|
2021-05-13 14:11:45 +02:00
|
|
|
schemaLoaded = true
|
2021-03-18 16:53:25 +01:00
|
|
|
}
|
2021-04-30 17:29:53 +02:00
|
|
|
|
|
|
|
const nextPage = async () => {
|
2021-05-11 20:07:52 +02:00
|
|
|
if (!hasNextPage || !internalTable) {
|
2021-04-30 17:29:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
const res = await API.searchTable({
|
|
|
|
tableId: dataSource?.tableId,
|
|
|
|
query,
|
|
|
|
bookmark: bookmarks[pageNumber + 1],
|
|
|
|
limit,
|
|
|
|
sort: sortColumn,
|
|
|
|
sortOrder: sortOrder?.toLowerCase() ?? "ascending",
|
2021-05-11 12:24:16 +02:00
|
|
|
sortType,
|
2021-05-13 13:26:18 +02:00
|
|
|
paginate: true,
|
2021-04-30 17:29:53 +02:00
|
|
|
})
|
|
|
|
pageNumber++
|
2021-05-11 12:24:16 +02:00
|
|
|
allRows = res.rows
|
2021-05-13 13:26:18 +02:00
|
|
|
if (res.hasNextPage) {
|
2021-04-30 17:29:53 +02:00
|
|
|
bookmarks[pageNumber + 1] = res.bookmark
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const prevPage = async () => {
|
2021-05-11 20:07:52 +02:00
|
|
|
if (!hasPrevPage || !internalTable) {
|
2021-04-30 17:29:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
const res = await API.searchTable({
|
|
|
|
tableId: dataSource?.tableId,
|
|
|
|
query,
|
|
|
|
bookmark: bookmarks[pageNumber - 1],
|
|
|
|
limit,
|
|
|
|
sort: sortColumn,
|
|
|
|
sortOrder: sortOrder?.toLowerCase() ?? "ascending",
|
2021-05-11 12:24:16 +02:00
|
|
|
sortType,
|
2021-05-13 13:26:18 +02:00
|
|
|
paginate: true,
|
2021-04-30 17:29:53 +02:00
|
|
|
})
|
|
|
|
pageNumber--
|
2021-05-11 12:24:16 +02:00
|
|
|
allRows = res.rows
|
2021-04-30 17:29:53 +02:00
|
|
|
}
|
2021-03-16 14:54:34 +01:00
|
|
|
</script>
|
|
|
|
|
2021-05-13 13:26:18 +02:00
|
|
|
<div use:styleable={$component.styles} class="container">
|
2021-04-29 10:41:49 +02:00
|
|
|
<Provider {actions} data={dataContext}>
|
2021-05-13 17:33:19 +02:00
|
|
|
{#if !loaded}
|
2021-05-13 13:26:18 +02:00
|
|
|
<div class="loading">
|
|
|
|
<ProgressCircle />
|
|
|
|
</div>
|
|
|
|
{:else}
|
|
|
|
<slot />
|
2021-05-14 14:29:37 +02:00
|
|
|
{#if paginate && internalTable}
|
2021-05-13 13:26:18 +02:00
|
|
|
<div class="pagination">
|
|
|
|
<Pagination
|
|
|
|
page={pageNumber + 1}
|
|
|
|
{hasPrevPage}
|
|
|
|
{hasNextPage}
|
|
|
|
goToPrevPage={prevPage}
|
|
|
|
goToNextPage={nextPage}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{/if}
|
2021-04-29 10:41:49 +02:00
|
|
|
</Provider>
|
|
|
|
</div>
|
2021-05-13 13:26:18 +02:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
.loading {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
.pagination {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: var(--spacing-xl);
|
|
|
|
}
|
|
|
|
</style>
|