Fixed callback order for checking if data exists

This commit is contained in:
Joel Collins 2020-04-24 17:29:34 +01:00
parent 9822965335
commit 095e09698d

View file

@ -78,10 +78,6 @@ export default {
.then(response => { .then(response => {
this.settings = this.settings =
response.data.extensions["org.openflexure.camera_stage_mapping"]; response.data.extensions["org.openflexure.camera_stage_mapping"];
// Check if existing calibration data is available
if ("get_calibration" in this.recalibrationLinks) {
this.checkCalibrationData();
}
}) })
.catch(error => { .catch(error => {
this.modalError(error); // Let mixin handle error this.modalError(error); // Let mixin handle error
@ -89,7 +85,8 @@ export default {
}); });
}, },
checkCalibrationData: function() { updateCalibrationDataAvailability: function() {
if ("get_calibration" in this.recalibrationLinks) {
axios axios
.get(this.recalibrationLinks.get_calibration.href) .get(this.recalibrationLinks.get_calibration.href)
.then(response => { .then(response => {
@ -104,6 +101,7 @@ export default {
.catch(error => { .catch(error => {
this.modalError(error); // Let mixin handle error this.modalError(error); // Let mixin handle error
}); });
}
}, },
getCalibrationData: function() { getCalibrationData: function() {
@ -137,6 +135,8 @@ export default {
if (foundExtension) { if (foundExtension) {
// Get plugin action link // Get plugin action link
this.recalibrationLinks = foundExtension.links; this.recalibrationLinks = foundExtension.links;
// Update whether calibration data is available
this.updateCalibrationDataAvailability();
} else { } else {
this.recalibrationLinks = {}; this.recalibrationLinks = {};
} }