Skip to content

Commit 56cd994

Browse files
committed
simple flow example.
1 parent 6e645d6 commit 56cd994

File tree

3 files changed

+139
-0
lines changed

3 files changed

+139
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Features:
1616

1717
## 👀 Examples
1818

19+
* [📐 Simple Flow](https://b4rtaz.github.io/sequential-workflow-designer/examples/simple-flow.html)
1920
* [❎ Fullscreen](https://b4rtaz.github.io/sequential-workflow-designer/examples/fullscreen.html)
2021
* [🌅 Image Filter](https://b4rtaz.github.io/sequential-workflow-designer/examples/image-filter.html)
2122
* [⛅ Light Dark](https://b4rtaz.github.io/sequential-workflow-designer/examples/light-dark.html)

examples/assets/simple-flow.js

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
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);

examples/simple-flow.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>📐 Simple Flow - Sequential Workflow Designer</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
7+
8+
<style>
9+
body {font: 14px/1.3em 'Open Sans', Arial, Verdana, Serif;}
10+
html, body {width: 100vw; height: 100vh; margin: 0; padding: 0; overflow: hidden; background: #FFF;}
11+
body {display: flex; flex-direction: column;}
12+
#result {background: silver; padding: 10px;}
13+
#designer {flex: 1;}
14+
15+
.sqd-step-editor {padding: 10px;}
16+
.sqd-smart-editor label {display: block; padding: 10px 0;}
17+
</style>
18+
</head>
19+
<body>
20+
<div id="result">
21+
<button id="run">Run</button>
22+
</div>
23+
24+
<div id="designer"></div>
25+
26+
<script src="./assets/lib.js"></script>
27+
<script src="./assets/simple-flow.js"></script>
28+
</body>
29+
</html>

0 commit comments

Comments
 (0)