File tree 1 file changed +23
-8
lines changed
demos/angular-app/src/app
1 file changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,31 @@ import {
9
9
StepEditorContext ,
10
10
StepsConfiguration ,
11
11
ToolboxConfiguration ,
12
- ValidatorConfiguration
12
+ ValidatorConfiguration ,
13
+ BranchedStep
13
14
} from 'sequential-workflow-designer' ;
14
15
15
- function createStep ( ) : Step {
16
+ function createJob ( ) : Step {
16
17
return {
17
18
id : Uid . next ( ) ,
18
19
componentType : 'task' ,
19
- name : 'Step' ,
20
- properties : { velocity : 0 } ,
21
- type : 'task'
20
+ name : 'Job' ,
21
+ type : 'job' ,
22
+ properties : { velocity : 0 }
23
+ } ;
24
+ }
25
+
26
+ function createIf ( ) : BranchedStep {
27
+ return {
28
+ id : Uid . next ( ) ,
29
+ componentType : 'switch' ,
30
+ name : 'If' ,
31
+ type : 'if' ,
32
+ properties : { velocity : 10 } ,
33
+ branches : {
34
+ true : [ ] ,
35
+ false : [ ]
36
+ }
22
37
} ;
23
38
}
24
39
@@ -27,7 +42,7 @@ function createDefinition(): Definition {
27
42
properties : {
28
43
velocity : 0
29
44
} ,
30
- sequence : [ createStep ( ) ]
45
+ sequence : [ createJob ( ) , createIf ( ) ]
31
46
} ;
32
47
}
33
48
@@ -49,8 +64,8 @@ export class AppComponent implements OnInit {
49
64
public readonly toolboxConfiguration : ToolboxConfiguration = {
50
65
groups : [
51
66
{
52
- name : 'Step ' ,
53
- steps : [ createStep ( ) ]
67
+ name : 'Steps ' ,
68
+ steps : [ createJob ( ) , createIf ( ) ]
54
69
}
55
70
]
56
71
} ;
You can’t perform that action at this time.
0 commit comments