Skip to content

Commit 95be140

Browse files
committed
update angular demo.
1 parent 8c88e7a commit 95be140

File tree

1 file changed

+23
-8
lines changed

1 file changed

+23
-8
lines changed

demos/angular-app/src/app/app.component.ts

+23-8
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,31 @@ import {
99
StepEditorContext,
1010
StepsConfiguration,
1111
ToolboxConfiguration,
12-
ValidatorConfiguration
12+
ValidatorConfiguration,
13+
BranchedStep
1314
} from 'sequential-workflow-designer';
1415

15-
function createStep(): Step {
16+
function createJob(): Step {
1617
return {
1718
id: Uid.next(),
1819
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+
}
2237
};
2338
}
2439

@@ -27,7 +42,7 @@ function createDefinition(): Definition {
2742
properties: {
2843
velocity: 0
2944
},
30-
sequence: [createStep()]
45+
sequence: [createJob(), createIf()]
3146
};
3247
}
3348

@@ -49,8 +64,8 @@ export class AppComponent implements OnInit {
4964
public readonly toolboxConfiguration: ToolboxConfiguration = {
5065
groups: [
5166
{
52-
name: 'Step',
53-
steps: [createStep()]
67+
name: 'Steps',
68+
steps: [createJob(), createIf()]
5469
}
5570
]
5671
};

0 commit comments

Comments
 (0)