2020-06-03 00:26:06 +02:00
|
|
|
<script>
|
2021-01-21 11:42:14 +01:00
|
|
|
import { getContext } from "svelte"
|
2020-08-26 18:03:30 +02:00
|
|
|
import { isEmpty } from "lodash/fp"
|
2020-11-18 20:18:18 +01:00
|
|
|
|
2021-02-01 19:51:22 +01:00
|
|
|
const { API, styleable, Provider, builderStore } = getContext("sdk")
|
2020-11-24 12:02:10 +01:00
|
|
|
const component = getContext("component")
|
2020-06-03 00:26:06 +02:00
|
|
|
|
2020-08-26 18:03:30 +02:00
|
|
|
export let datasource = []
|
2020-06-03 00:26:06 +02:00
|
|
|
|
2020-11-18 12:24:01 +01:00
|
|
|
let rows = []
|
2021-01-26 10:48:41 +01:00
|
|
|
let loaded = false
|
2020-06-03 00:26:06 +02:00
|
|
|
|
2021-01-21 11:42:14 +01:00
|
|
|
$: fetchData(datasource)
|
2021-01-11 21:17:56 +01:00
|
|
|
|
2021-01-21 11:42:14 +01:00
|
|
|
async function fetchData(datasource) {
|
2020-08-26 18:03:30 +02:00
|
|
|
if (!isEmpty(datasource)) {
|
2021-01-21 11:42:14 +01:00
|
|
|
rows = await API.fetchDatasource(datasource)
|
2020-06-03 00:26:06 +02:00
|
|
|
}
|
2021-01-26 10:48:41 +01:00
|
|
|
loaded = true
|
2021-01-21 11:42:14 +01:00
|
|
|
}
|
2020-06-03 00:26:06 +02:00
|
|
|
</script>
|
|
|
|
|
2020-11-24 12:02:10 +01:00
|
|
|
<div use:styleable={$component.styles}>
|
2021-01-19 15:11:21 +01:00
|
|
|
{#if rows.length > 0}
|
2021-01-26 10:48:41 +01:00
|
|
|
{#if $component.children === 0 && $builderStore.inBuilder}
|
|
|
|
<p>Add some components too</p>
|
|
|
|
{:else}
|
|
|
|
{#each rows as row}
|
2021-02-01 19:51:22 +01:00
|
|
|
<Provider data={row}>
|
2021-01-19 15:21:23 +01:00
|
|
|
<slot />
|
2021-02-01 19:51:22 +01:00
|
|
|
</Provider>
|
2021-01-26 10:48:41 +01:00
|
|
|
{/each}
|
|
|
|
{/if}
|
|
|
|
{:else if loaded && $builderStore.inBuilder}
|
2021-01-19 15:11:21 +01:00
|
|
|
<p>Feed me some data</p>
|
|
|
|
{/if}
|
2020-11-18 12:24:01 +01:00
|
|
|
</div>
|
2021-01-19 15:11:21 +01:00
|
|
|
|
|
|
|
<style>
|
|
|
|
p {
|
|
|
|
display: grid;
|
|
|
|
place-items: center;
|
|
|
|
background: #f5f5f5;
|
|
|
|
border: #ccc 1px solid;
|
|
|
|
padding: var(--spacing-m);
|
|
|
|
}
|
2021-01-22 11:49:03 +01:00
|
|
|
</style>
|