1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

allow user to add automation block between existing blocks

This commit is contained in:
Peter Clement 2021-10-06 15:09:51 +01:00
parent 5229954b22
commit e7d30a968a
4 changed files with 36 additions and 15 deletions

View file

@ -17,7 +17,7 @@ export default class Automation {
this.automation.testData = data this.automation.testData = data
} }
addBlock(block) { addBlock(block, idx) {
// Make sure to add trigger if doesn't exist // Make sure to add trigger if doesn't exist
if (!this.hasTrigger() && block.type === "TRIGGER") { if (!this.hasTrigger() && block.type === "TRIGGER") {
const trigger = { id: generate(), ...block } const trigger = { id: generate(), ...block }
@ -26,10 +26,7 @@ export default class Automation {
} }
const newBlock = { id: generate(), ...block } const newBlock = { id: generate(), ...block }
this.automation.definition.steps = [ this.automation.definition.steps.splice(idx, 0, newBlock)
...this.automation.definition.steps,
newBlock,
]
return newBlock return newBlock
} }

View file

@ -104,9 +104,12 @@ const automationActions = store => ({
return state return state
}) })
}, },
addBlockToAutomation: block => { addBlockToAutomation: (block, blockIdx) => {
store.update(state => { store.update(state => {
const newBlock = state.selectedAutomation.addBlock(cloneDeep(block)) const newBlock = state.selectedAutomation.addBlock(
cloneDeep(block),
blockIdx
)
state.selectedBlock = newBlock state.selectedBlock = newBlock
return state return state
}) })

View file

@ -1,10 +1,9 @@
<script> <script>
import { ModalContent, Layout, Detail, Body, Icon } from "@budibase/bbui" import { ModalContent, Layout, Detail, Body, Icon } from "@budibase/bbui"
import { automationStore } from "builderStore" import { automationStore } from "builderStore"
import { database } from "stores/backend"
import { externalActions } from "./ExternalActions" import { externalActions } from "./ExternalActions"
$: instanceId = $database._id
export let blockIdx
let selectedAction let selectedAction
let actionVal let actionVal
let actions = Object.entries($automationStore.blockDefinitions.ACTION) let actions = Object.entries($automationStore.blockDefinitions.ACTION)
@ -39,7 +38,8 @@
) )
automationStore.actions.addBlockToAutomation(newBlock) automationStore.actions.addBlockToAutomation(newBlock)
await automationStore.actions.save( await automationStore.actions.save(
$automationStore.selectedAutomation?.automation $automationStore.selectedAutomation?.automation,
blockIdx
) )
} }
</script> </script>

View file

@ -14,7 +14,6 @@
import CreateWebhookModal from "components/automation/Shared/CreateWebhookModal.svelte" import CreateWebhookModal from "components/automation/Shared/CreateWebhookModal.svelte"
import ResultsModal from "./ResultsModal.svelte" import ResultsModal from "./ResultsModal.svelte"
import ActionModal from "./ActionModal.svelte" import ActionModal from "./ActionModal.svelte"
import { database } from "stores/backend"
import { externalActions } from "./ExternalActions" import { externalActions } from "./ExternalActions"
export let onSelect export let onSelect
@ -29,7 +28,6 @@
$: testResult = $automationStore.selectedAutomation.testResults?.steps.filter( $: testResult = $automationStore.selectedAutomation.testResults?.steps.filter(
step => step.stepId === block.stepId step => step.stepId === block.stepId
) )
$: instanceId = $database._id
$: isTrigger = block.type === "TRIGGER" $: isTrigger = block.type === "TRIGGER"
@ -40,6 +38,10 @@
$: blockIdx = steps.findIndex(step => step.id === block.id) $: blockIdx = steps.findIndex(step => step.id === block.id)
$: lastStep = !isTrigger && blockIdx + 1 === steps.length $: lastStep = !isTrigger && blockIdx + 1 === steps.length
$: totalBlocks =
$automationStore.selectedAutomation?.automation?.definition?.steps.length +
1
// Logic for hiding / showing the add button.first we check if it has a child // Logic for hiding / showing the add button.first we check if it has a child
// then we check to see whether its inputs have been commpleted // then we check to see whether its inputs have been commpleted
$: disableAddButton = isTrigger $: disableAddButton = isTrigger
@ -167,13 +169,24 @@
</Modal> </Modal>
<Modal bind:this={actionModal} width="30%"> <Modal bind:this={actionModal} width="30%">
<ActionModal bind:blockComplete /> <ActionModal {blockIdx} bind:blockComplete />
</Modal> </Modal>
<Modal bind:this={webhookModal} width="30%"> <Modal bind:this={webhookModal} width="30%">
<CreateWebhookModal /> <CreateWebhookModal />
</Modal> </Modal>
</div> </div>
<div class="separator" />
<Icon
on:click={() => actionModal.show()}
disabled={!hasCompletedInputs}
hoverable
name="AddCircle"
size="S"
/>
{#if isTrigger ? totalBlocks > 1 : blockIdx !== totalBlocks - 2}
<div class="separator" />
{/if}
<style> <style>
.center-items { .center-items {
@ -191,8 +204,7 @@
.block { .block {
width: 360px; width: 360px;
font-size: 16px; font-size: 16px;
background-color: var(--spectrum-alias-background-color-secondary); background-color: var(--background);
color: var(--grey-9);
border: 1px solid var(--spectrum-global-color-gray-300); border: 1px solid var(--spectrum-global-color-gray-300);
border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px;
} }
@ -200,4 +212,13 @@
.blockSection { .blockSection {
padding: var(--spacing-xl); padding: var(--spacing-xl);
} }
.separator {
width: 1px;
height: 25px;
border-left: 1px dashed var(--grey-4);
color: var(--grey-4);
/* center horizontally */
align-self: center;
}
</style> </style>