forked from tsai/budibase
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.9 KiB
73 lines
1.9 KiB
<script>
|
|
import { ModalContent, Tabs, Tab, TextArea, Label } from "@budibase/bbui"
|
|
import { automationStore } from "builderStore"
|
|
import AutomationBlockSetup from "../../SetupPanel/AutomationBlockSetup.svelte"
|
|
import { cloneDeep } from "lodash/fp"
|
|
|
|
let failedParse = null
|
|
|
|
// clone the trigger so we're not mutating the reference
|
|
let trigger = cloneDeep(
|
|
$automationStore.selectedAutomation.automation.definition.trigger
|
|
)
|
|
|
|
if (!$automationStore.selectedAutomation.automation.testData) {
|
|
$automationStore.selectedAutomation.automation.testData = {}
|
|
}
|
|
|
|
// get the outputs so we can define the fields
|
|
let schemaProperties = Object.entries(
|
|
trigger.schema?.outputs?.properties || {}
|
|
)
|
|
|
|
// check to see if there is existing test data in the store
|
|
$: testData = Object.keys(
|
|
$automationStore.selectedAutomation?.automation?.testData
|
|
).length
|
|
? $automationStore.selectedAutomation.automation.testData
|
|
: {}
|
|
|
|
function parseTestJSON(e) {
|
|
try {
|
|
const obj = JSON.parse(e.detail)
|
|
failedParse = null
|
|
automationStore.actions.addTestDataToAutomation(obj)
|
|
} catch (e) {
|
|
failedParse = "Invalid JSON"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<ModalContent
|
|
title="Add test data"
|
|
confirmText="Save"
|
|
showConfirmButton={true}
|
|
onConfirm={() => {
|
|
automationStore.actions.trigger(
|
|
$automationStore.selectedAutomation,
|
|
testData
|
|
)
|
|
}}
|
|
cancelText="Cancel"
|
|
>
|
|
<Tabs selected="Form" quiet
|
|
><Tab icon="Form" title="Form"
|
|
><AutomationBlockSetup
|
|
{testData}
|
|
{schemaProperties}
|
|
block={trigger}
|
|
/></Tab
|
|
>
|
|
<Tab icon="FileJson" title="JSON">
|
|
<Label>JSON</Label><TextArea
|
|
value={JSON.stringify(
|
|
$automationStore.selectedAutomation.automation.testData,
|
|
null,
|
|
2
|
|
)}
|
|
error={failedParse}
|
|
on:change={e => parseTestJSON(e)}
|
|
/>
|
|
</Tab>
|
|
</Tabs>
|
|
</ModalContent>
|
|
|