aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2019-08-02 14:53:59 +0200
committersebdet <sebastien.determe@intl.att.com>2019-08-02 14:53:59 +0200
commit83ce0764646950d44355e5cb484e008913abeb5f (patch)
tree29001a610cfebb49ab4c95cfbd3dc7e8b1ecf44b /ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js
parent3bc0477c8286f8d684aa3b4985202e10bdc1e80a (diff)
Add saving + rework
Rework of the async calls to the backend + add saving of the properties to backend + rework of the loop loading Issue-ID: CLAMP-447 Change-Id: I126c88b3532613e6d4702e63c39a2735b98d132c Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js')
-rw-r--r--ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js
index 0bf71580a..fbfc727eb 100644
--- a/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js
+++ b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js
@@ -44,7 +44,6 @@ export default class OpenLoopModal extends React.Component {
this.getLoopNames = this.getLoopNames.bind(this);
this.handleOpen = this.handleOpen.bind(this);
- this.getModel = this.getModel.bind(this);
this.handleClose = this.handleClose.bind(this);
this.handleDropdownListChange = this.handleDropdownListChange.bind(this);
this.state = {
@@ -74,18 +73,11 @@ export default class OpenLoopModal extends React.Component {
});
}
- getModel() {
- LoopService.getLoop(this.state.chosenLoopName).then(loop => {
- console.debug("Settingloop cache with json");
- this.props.updateLoopCacheFunction(loop);
- });
- }
-
handleOpen() {
console.info("Loop " + this.state.chosenLoopName + " is chosen");
this.setState({ show: false });
this.props.history.push('/');
- this.getModel();
+ this.props.loadLoopFunction(this.state.chosenLoopName);
}
render() {