|
| 1 | +/* global document, sequentialWorkflowDesigner, prompt, alert */ |
| 2 | + |
| 3 | +const configuration = { |
| 4 | + toolbox: { |
| 5 | + isHidden: false, |
| 6 | + groups: [ |
| 7 | + { |
| 8 | + name: 'Steps', |
| 9 | + steps: [ |
| 10 | + { |
| 11 | + componentType: 'task', |
| 12 | + type: 'readUserInput', |
| 13 | + name: 'Read User Input', |
| 14 | + properties: { |
| 15 | + question: 'Ask me' |
| 16 | + } |
| 17 | + }, |
| 18 | + { |
| 19 | + componentType: 'task', |
| 20 | + type: 'sendEmail', |
| 21 | + name: 'Send E-mail', |
| 22 | + properties: { |
| 23 | + ifReqisterEquals: '1', |
| 24 | + email: 'x@example.com' |
| 25 | + } |
| 26 | + } |
| 27 | + ] |
| 28 | + } |
| 29 | + ] |
| 30 | + }, |
| 31 | + |
| 32 | + steps: { |
| 33 | + iconUrlProvider: () => { |
| 34 | + return `./assets/icon-task.svg` |
| 35 | + }, |
| 36 | + |
| 37 | + validator: () => true |
| 38 | + }, |
| 39 | + |
| 40 | + editors: { |
| 41 | + globalEditorProvider: () => { |
| 42 | + const editor = document.createElement('div'); |
| 43 | + editor.innerText = 'Select a step.'; |
| 44 | + return editor; |
| 45 | + }, |
| 46 | + stepEditorProvider: (step) => { |
| 47 | + const editor = document.createElement('div'); |
| 48 | + |
| 49 | + if (step.type === 'readUserInput') { |
| 50 | + const label = document.createElement('label'); |
| 51 | + label.innerText = 'Question'; |
| 52 | + const input = document.createElement('input'); |
| 53 | + input.setAttribute('type', 'text'); |
| 54 | + input.value = step.properties['question']; |
| 55 | + input.addEventListener('input', () => { |
| 56 | + step.properties['question'] = input.value; |
| 57 | + }); |
| 58 | + |
| 59 | + editor.appendChild(label); |
| 60 | + editor.appendChild(input); |
| 61 | + } |
| 62 | + else if (step.type === 'sendEmail') { |
| 63 | + const propNames = ['ifReqisterEquals', 'email']; |
| 64 | + for (let propName of propNames) { |
| 65 | + const label = document.createElement('label'); |
| 66 | + label.innerText = propName; |
| 67 | + const input = document.createElement('input'); |
| 68 | + input.setAttribute('type', 'text'); |
| 69 | + input.value = step.properties[propName]; |
| 70 | + input.addEventListener('input', () => { |
| 71 | + step.properties[propName] = input.value; |
| 72 | + }); |
| 73 | + |
| 74 | + editor.appendChild(label); |
| 75 | + editor.appendChild(input); |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + return editor; |
| 80 | + } |
| 81 | + } |
| 82 | +}; |
| 83 | + |
| 84 | +const startDefinition = { |
| 85 | + properties: {}, |
| 86 | + sequence: [] |
| 87 | +}; |
| 88 | + |
| 89 | +const placeholder = document.getElementById('designer'); |
| 90 | +const designer = sequentialWorkflowDesigner.create(placeholder, startDefinition, configuration); |
| 91 | + |
| 92 | +function runWorkflow() { |
| 93 | + const definition = designer.getDefinition(); |
| 94 | + |
| 95 | + let register = null; |
| 96 | + |
| 97 | + for (let step of definition.sequence) { |
| 98 | + if (step.type === 'readUserInput') { |
| 99 | + register = prompt(step.properties['question']); |
| 100 | + } |
| 101 | + else if (step.type === 'sendEmail') { |
| 102 | + if (step.properties['ifReqisterEquals'] === register) { |
| 103 | + alert(`E-mail sent to ${step.properties['email']}`); |
| 104 | + } |
| 105 | + } |
| 106 | + } |
| 107 | +} |
| 108 | + |
| 109 | +document.getElementById('run').addEventListener('click', runWorkflow); |
0 commit comments