Refresh function image during ui update loop

**What**
- Update the function image value during the `refreshData`

Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
This commit is contained in:
Lucas Roesler 2018-12-08 17:02:35 +01:00 committed by Alex Ellis
parent 0ae105164f
commit cb367096ae

View File

@ -180,17 +180,20 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$interval', '$f
});
};
var refreshData = function() {
var refreshData = function () {
var previous = $scope.functions;
var cl = function(previousItems) {
$http.get("../system/functions").then(function(response) {
if (response && response.data) {
var cl = function (previousItems) {
$http.get("../system/functions").then(function (response) {
if (response == null || response.data == null) {
return
}
if (previousItems.length != response.data.length) {
$scope.functions = response.data;
// update the selected function object because the newly fetched object from the API becomes a different object
var filteredSelectedFunction = $filter('filter')($scope.functions, {name: $scope.selectedFunction.name}, true);
var filteredSelectedFunction = $filter('filter')($scope.functions, { name: $scope.selectedFunction.name }, true);
if (filteredSelectedFunction && filteredSelectedFunction.length > 0) {
$scope.selectedFunction = filteredSelectedFunction[0];
} else {
@ -200,13 +203,13 @@ app.controller("home", ['$scope', '$log', '$http', '$location', '$interval', '$f
for (var i = 0; i < $scope.functions.length; i++) {
for (var j = 0; j < response.data.length; j++) {
if ($scope.functions[i].name == response.data[j].name) {
$scope.functions[i].image = response.data[j].image;
$scope.functions[i].replicas = response.data[j].replicas;
$scope.functions[i].invocationCount = response.data[j].invocationCount;
}
}
}
}
}
});
};
cl(previous);