1
0
Fork 0
mirror of synced 2024-09-06 04:31:18 +12:00
budibase/packages/standard-components/src/DataTable.svelte
2020-07-02 21:22:21 +01:00

106 lines
2 KiB
Svelte

<script>
import { onMount } from "svelte"
export let _bb
export let onLoad
export let model
let headers = []
let store = _bb.store
const shouldDisplayField = name => {
if (name.startsWith("_")) return false
// always 'record'
if (name === "type") return false
// tables are always tied to a single modelId, this is irrelevant
if (name === "modelId") return false
return true
}
async function fetchData() {
const FETCH_RECORDS_URL = `/api/views/all_${model}`
const response = await _bb.api.get(FETCH_RECORDS_URL)
if (response.status === 200) {
const json = await response.json()
store.update(state => {
state[model] = json
return state
})
headers = Object.keys(json[0]).filter(shouldDisplayField)
} else {
throw new Error("Failed to fetch records.", response)
}
}
$: data = $store[model] || []
$: if (model) fetchData()
onMount(async () => {
await fetchData()
})
</script>
<table class="uk-table">
<thead>
<tr>
{#each headers as header}
<th>{header}</th>
{/each}
</tr>
</thead>
<tbody>
{#each data as row}
<tr>
{#each headers as header}
{#if row[header]}
<td>{row[header]}</td>
{/if}
{/each}
</tr>
{/each}
</tbody>
</table>
<style>
table {
border: 1px solid #ccc;
background: #fff;
border-radius: 3px;
border-collapse: collapse;
}
thead {
background: #393c44;
border: 1px solid #ccc;
height: 40px;
text-align: left;
margin-right: 60px;
}
thead th {
color: #ffffff;
text-transform: capitalize;
font-weight: 500;
font-size: 14px;
text-rendering: optimizeLegibility;
justify-content: left;
padding: 16px 20px 16px 8px;
margin-right: 20px;
}
tbody tr {
border-bottom: 1px solid #ccc;
transition: 0.3s background-color;
color: #393c44;
font-size: 14px;
height: 40px;
}
tbody tr:hover {
background: var(--grey-1);
}
</style>