Skip to content

Commit fc49f51

Browse files
committed
Workflow state and context enhancements
1 parent 77514c6 commit fc49f51

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/widgets/ReactApp/App.jsx

+11-5
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,13 @@ class App extends PureComponent {
8989
const initialState = this.getInitialState();
9090
this.setState({ ...initialState });
9191
},
92-
'workflow:state': (workflowState) => {
93-
if (this.state.workflowState !== workflowState) {
94-
this.setState({ workflowState: workflowState });
95-
}
92+
'workflow:state': (state, context) => {
93+
this.setState({
94+
workflow: {
95+
state: state,
96+
context: context
97+
}
98+
});
9699
},
97100
'controller:state': (controllerType, controllerState) => {
98101
this.setState(state => ({
@@ -220,7 +223,10 @@ class App extends PureComponent {
220223
type: controller.type,
221224
state: controller.state
222225
},
223-
workflowState: controller.workflowState,
226+
workflow: {
227+
state: controller.workflow.state,
228+
context: controller.workflow.context
229+
},
224230
machinePosition: { // Machine position
225231
x: '0.000',
226232
y: '0.000',

0 commit comments

Comments
 (0)