Display function creation error in UI

Signed-off-by: Alex Young <alex@heuris.io>
This commit is contained in:
Alex Young 2017-09-20 20:47:24 +01:00 committed by Alex Ellis
parent e69e8eaa3b
commit eed9641254
5 changed files with 61 additions and 57 deletions

View File

@ -3,11 +3,7 @@
<head> <head>
<link href="https://fonts.googleapis.com/css?family=Rationale|Roboto+Mono|Roboto:300,400,400i,500,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Rationale|Roboto+Mono|Roboto:300,400,400i,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.0/angular-material.min.css"> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.0/angular-material.min.css">
<!-- Angular Material CSS now available via Google CDN; version 1.0.7 used here -->
<link rel="stylesheet" href="style/angular-material.min.css">
<link rel="stylesheet" href="style/bootstrap.css"> <link rel="stylesheet" href="style/bootstrap.css">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png"> <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png"> <link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">

View File

@ -26,7 +26,9 @@
<input name="network" ng-model="item.network" required md-maxlength="200" minlength="4"> <input name="network" ng-model="item.network" required md-maxlength="200" minlength="4">
</md-input-container> </md-input-container>
</div> </div>
<div class="validation-error" layout-gt-xs="row" layout-align="start end">
<span ng-show="validationError">{{ validationError }}</span>
</div>
</form> </form>
</md-dialog-content> </md-dialog-content>
<md-dialog-actions> <md-dialog-actions>

View File

@ -31,12 +31,12 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md
refreshData(); refreshData();
}, 1000); }, 1000);
$scope.showPostInvokedToast = function(val) { var showPostInvokedToast = function(message, duration) {
$mdToast.show( $mdToast.show(
$mdToast.simple() $mdToast.simple()
.textContent(val) .textContent(message)
.position("top right") .position("top right")
.hideDelay(500) .hideDelay(duration || 500)
); );
}; };
@ -56,17 +56,16 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md
.then(function(response) { .then(function(response) {
if($scope.invocation && $scope.invocation.contentType == "json") { if($scope.invocation && $scope.invocation.contentType == "json") {
$scope.invocationResponse = JSON.stringify(response.data, -1, " "); $scope.invocationResponse = JSON.stringify(response.data, -1, " ");
} else { } else {
$scope.invocationResponse = response.data; $scope.invocationResponse = response.data;
} }
$scope.invocationStatus = response.status; $scope.invocationStatus = response.status;
$scope.showPostInvokedToast("Success"); showPostInvokedToast("Success");
}).catch(function(error1) { }).catch(function(error1) {
$scope.invocationResponse = error1.statusText + "\n" + error1.data; $scope.invocationResponse = error1.statusText + "\n" + error1.data;
$scope.invocationStatus = error1.status; $scope.invocationStatus = error1.status;
$scope.showPostInvokedToast("Error"); showPostInvokedToast("Error");
}); });
}; };
@ -135,19 +134,21 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md
data: $scope.item, data: $scope.item,
method: "POST", method: "POST",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
responseType: "json" responseType: "text"
}; };
$http(options) $http(options)
.then(function(response) { .then(function(response) {
$scope.invocationResponse = response.data; item.image = "";
$scope.invocationStatus = response.status; item.service = "";
}).catch(function(error1) { item.envProcess = "";
$scope.invocationResponse = error1; item.network = "";
$scope.invocationStatus = null; $scope.validationError = "";
});
console.log($scope.item);
$scope.closeDialog(); $scope.closeDialog();
showPostInvokedToast("Function created");
}).catch(function(error1) {
$scope.validationError = error1.data;
});
}; };
}; };
@ -178,12 +179,12 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md
return $http(options); return $http(options);
}).then(function(){ }).then(function(){
$scope.showPostInvokedToast("Success"); showPostInvokedToast("Success");
}).catch(function(err) { }).catch(function(err) {
if (err) { if (err) {
// show error toast only if there actually is an err. // show error toast only if there actually is an err.
// because hitting 'Cancel' also rejects the promise. // because hitting 'Cancel' also rejects the promise.
$scope.showPostInvokedToast("Error"); showPostInvokedToast("Error");
} }
}); });
}; };

View File

@ -49,3 +49,8 @@ md-input-container .md-errors-spacer {
.monospace { .monospace {
font-family: 'Roboto Mono', monospace; font-family: 'Roboto Mono', monospace;
} }
.validation-error {
color: red;
height: 52px;
}