mirror of https://github.com/Budibase/budibase.git
5 changed files with 183 additions and 104 deletions
@ -0,0 +1,133 @@ |
|||
<script> |
|||
import { Icon, Divider, Tabs, Tab, TextArea, Label } from "@budibase/bbui" |
|||
import FlowItemHeader from "./FlowChart/FlowItemHeader.svelte" |
|||
|
|||
export let automation |
|||
export let testResults |
|||
export let width = "400px" |
|||
|
|||
let showParameters |
|||
let blocks |
|||
|
|||
function prepTestResults(results) { |
|||
return results.steps.filter(x => x.stepId !== "LOOP" || []) |
|||
} |
|||
|
|||
$: filteredResults = prepTestResults(testResults) |
|||
|
|||
$: { |
|||
blocks = [] |
|||
if (automation) { |
|||
if (automation.definition.trigger) { |
|||
blocks.push(automation.definition.trigger) |
|||
} |
|||
blocks = blocks |
|||
.concat(automation.definition.steps || []) |
|||
.filter(x => x.stepId !== "LOOP") |
|||
} else if (filteredResults) { |
|||
blocks = filteredResults || [] |
|||
// make sure there is an ID for each block being displayed |
|||
let count = 0 |
|||
for (let block of blocks) { |
|||
block.id = count++ |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<div class="container"> |
|||
{#each blocks as block, idx} |
|||
<div class="block" style={width ? `width: ${width}` : ""}> |
|||
{#if block.stepId !== "LOOP"} |
|||
<FlowItemHeader |
|||
showTestStatus={true} |
|||
bind:showParameters |
|||
{block} |
|||
isTrigger={idx === 0} |
|||
testResult={filteredResults?.[idx]} |
|||
/> |
|||
{#if showParameters && showParameters[block.id]} |
|||
<Divider noMargin /> |
|||
{#if filteredResults?.[idx]?.outputs.iterations} |
|||
<div style="display: flex; padding: 10px 10px 0px 12px;"> |
|||
<Icon name="Reuse" /> |
|||
<div style="margin-left: 10px;"> |
|||
<Label> |
|||
This loop ran {filteredResults?.[idx]?.outputs.iterations} times.</Label |
|||
> |
|||
</div> |
|||
</div> |
|||
{/if} |
|||
|
|||
<div class="tabs"> |
|||
<Tabs quiet noPadding selected="Input"> |
|||
<Tab title="Input"> |
|||
<div style="padding: 10px 10px 10px 10px;"> |
|||
<TextArea |
|||
minHeight="80px" |
|||
disabled |
|||
value={JSON.stringify( |
|||
filteredResults?.[idx]?.inputs, |
|||
null, |
|||
2 |
|||
)} |
|||
/> |
|||
</div></Tab |
|||
> |
|||
<Tab title="Output"> |
|||
<div style="padding: 10px 10px 10px 10px;"> |
|||
<TextArea |
|||
minHeight="100px" |
|||
disabled |
|||
value={JSON.stringify( |
|||
filteredResults?.[idx]?.outputs, |
|||
null, |
|||
2 |
|||
)} |
|||
/> |
|||
</div> |
|||
</Tab> |
|||
</Tabs> |
|||
</div> |
|||
{/if} |
|||
{/if} |
|||
</div> |
|||
{#if blocks.length - 1 !== idx} |
|||
<div class="separator" /> |
|||
{/if} |
|||
{/each} |
|||
</div> |
|||
|
|||
<style> |
|||
.container { |
|||
padding: 0 30px 0 30px; |
|||
} |
|||
|
|||
.tabs { |
|||
display: flex; |
|||
flex-direction: column; |
|||
justify-content: flex-start; |
|||
align-items: stretch; |
|||
position: relative; |
|||
flex: 1 1 auto; |
|||
} |
|||
|
|||
.block { |
|||
display: inline-block; |
|||
width: 400px; |
|||
font-size: 16px; |
|||
background-color: var(--background); |
|||
border: 1px solid var(--spectrum-global-color-gray-300); |
|||
border-radius: 4px 4px 4px 4px; |
|||
} |
|||
|
|||
.separator { |
|||
width: 1px; |
|||
height: 40px; |
|||
border-left: 1px dashed var(--grey-4); |
|||
color: var(--grey-4); |
|||
/* center horizontally */ |
|||
text-align: center; |
|||
margin-left: 50%; |
|||
} |
|||
</style> |
|||
Loading…
Reference in new issue