From b994b2a862315970053808d246c0c47f492ae6b3 Mon Sep 17 00:00:00 2001 From: shale Date: Mon, 13 Jul 2015 16:57:27 -0700 Subject: [PATCH] [Search] Style --- .../features/search/src/SearchController.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/platform/features/search/src/SearchController.js b/platform/features/search/src/SearchController.js index ccb9553af1..a54b9b37a8 100644 --- a/platform/features/search/src/SearchController.js +++ b/platform/features/search/src/SearchController.js @@ -76,6 +76,7 @@ define(function () { function search2() { var term = document.getElementById("searchinput").value; + // Get the data... $http({ method: "GET", url: ROOT + "/_search", @@ -87,17 +88,21 @@ define(function () { } } }).then(function (raw) { - var id; - var output = raw.data.hits.hits; - var outputLength = output.length; + // ...then process the data + var output = raw.data.hits.hits, + outputLength = output.length, + id, + i; + console.log('raw', raw); console.log('output, pre', output); - var i; - for (i = 0; i < output.length; i++) { + for (i = 0; i < outputLength; i++) { + // Get the object's ID output[i] = output[i][ID]; console.log('output [', i, ']', output[i]); + // Get the object itself from its ID objectService.getObjects([ output[i] ]).then(function (obj) { output[i] = obj; // Manually get the member name to get to the actual object @@ -112,8 +117,8 @@ define(function () { } console.log('output, post', output); + // Don't need to return, just set scope's version $scope.results = output; - //return output; }); }