Edited unnecessary fields and $scopes.

Signed-off-by: Ken Fukuyama <kenfdev@gmail.com>
This commit is contained in:
Ken Fukuyama
2018-03-04 22:04:10 +09:00
committed by Alex Ellis
parent b9d705ebd4
commit 02642ffb3f

View File

@ -36,24 +36,23 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$timeout', '$md
} }
$scope.invocation.request = ""; $scope.invocation.request = "";
$scope.isFunctionReady = "Querying"; var fetchFunctionsDelay = 3500;
$scope.fetchFunctionsDelay = 3500; var queryFunctionDelay = 2500;
$scope.queryFunctionDelay = 2500;
$scope.fetchFunctionsInterval = setInterval(function() { var fetchFunctionsInterval = setInterval(function() {
refreshData(); refreshData();
}, $scope.fetchFunctionsDelay); }, fetchFunctionsDelay);
$scope.queryFunctionInterval = setInterval(function() { var queryFunctionInterval = setInterval(function() {
if($scope.selectedFunction && $scope.selectedFunction.name) { if($scope.selectedFunction && $scope.selectedFunction.name) {
refreshFunction($scope.selectedFunction); refreshFunction($scope.selectedFunction);
} }
}, $scope.queryFunctionDelay); }, queryFunctionDelay);
var refreshFunction = function(functionInstance) { var refreshFunction = function(functionInstance) {
$http.get("../system/function/" + functionInstance.name) $http.get("../system/function/" + functionInstance.name)
.then(function(response) { .then(function(response) {
functionInstance.ready = (response.data && response.data.availableReplicas && response.data.availableReplicas >0); functionInstance.ready = (response.data && response.data.availableReplicas && response.data.availableReplicas > 0);
}) })
.catch(function(err) { .catch(function(err) {
console.error(err); console.error(err);