1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

account for blocks within export button action

This commit is contained in:
Peter Clement 2022-03-08 13:31:14 +00:00
parent 8b9991be24
commit 7d9bed3a3f

View file

@ -5,9 +5,23 @@
import { onMount } from "svelte"
export let parameters
$: components = findAllMatchingComponents($currentAsset?.props, component =>
$: tables = findAllMatchingComponents($currentAsset?.props, component =>
component._component.endsWith("table")
)
).map(table => ({
label: table._instanceName,
value: table._id,
}))
$: tableBlocks = findAllMatchingComponents($currentAsset?.props, component =>
component._component.endsWith("tableblock")
).map(block => ({
label: block._instanceName,
value: `${block._id}-table`,
}))
$: componentOptions = tables.concat(tableBlocks)
const FORMATS = [
{
label: "CSV",
@ -38,9 +52,7 @@
<Label small>Table</Label>
<Select
bind:value={parameters.tableComponentId}
options={components}
getOptionLabel={option => option._instanceName}
getOptionValue={option => option._id}
options={componentOptions}
/>
<Label small>Export as</Label>