From 1a8fd3843042acf1a979b85470408e16f90fd96a Mon Sep 17 00:00:00 2001 From: shale Date: Tue, 14 Jul 2015 10:56:52 -0700 Subject: [PATCH] [Search] Max results Changed the default number of results to be a max of 25, and added a parameter to allow the user to set this. (May be used in an advaned search later?) Because folders are filtered out, the number displayed is not necissarily exact. --- platform/features/search/src/SearchController.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/platform/features/search/src/SearchController.js b/platform/features/search/src/SearchController.js index b1988a1b18..d38062ebdc 100644 --- a/platform/features/search/src/SearchController.js +++ b/platform/features/search/src/SearchController.js @@ -77,9 +77,16 @@ define(function () { } // Use elasticsearch's search to search through all the objects - function searchElastic(inputID) { + function searchElastic(inputID, maxResults) { var searchTerm; + // Check to see if the user provided a maximum + // number of results to display + if (!maxResults) { + // Else, we provide a default value + maxResults = 25; + } + // Get the user input if (inputID) { searchTerm = document.getElementById(inputID).value; @@ -96,7 +103,8 @@ define(function () { // Get the data... return $http({ method: "GET", - url: ROOT + "/_search/?q=name:" + searchTerm + url: ROOT + "/_search/?q=name:" + searchTerm + + "&size=" + maxResults }).then(function (rawResults) { // ...then process the data var results = rawResults.data.hits.hits,