diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-08-02 14:53:59 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-08-02 14:53:59 +0200 |
commit | 83ce0764646950d44355e5cb484e008913abeb5f (patch) | |
tree | 29001a610cfebb49ab4c95cfbd3dc7e8b1ecf44b /ui-react/src/components/dialogs/OpenLoop | |
parent | 3bc0477c8286f8d684aa3b4985202e10bdc1e80a (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')
-rw-r--r-- | ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js | 10 |
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 0bf71580..fbfc727e 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() { |