display search result when coming from the auto complete quick search box

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1297059 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-03-05 13:55:44 +00:00
parent 60638fb8bb
commit 3e691d1682
2 changed files with 30 additions and 11 deletions

View File

@ -213,21 +213,35 @@ $(function() {
source: function(request, response){
$.get("restServices/archivaServices/searchService/quickSearch?queryString="+encodeURIComponent(request.term),
function(data) {
var res = $.map(data,function(item){
return item.artifactId;
});
var res = mapArtifacts(data);
var uniqId = [];
var uniqArtifactIds=[];
for (var i= 0;i<res.length;i++){
if ( $.inArray(res[i],uniqId)<0){
uniqId.push(res[i]);
if ( $.inArray(res[i].artifactId,uniqId)<0){
uniqId.push(res[i].artifactId);
uniqArtifactIds.push(res[i]);
}
}
response(uniqId);
response(uniqArtifactIds);
}
);
},
select: function( event, ui ) {
$.log("select artifactId:"+ui.item.artifactId);
displaySearch(function(){
var searchViewModel = new SearchViewModel();
var searchRequest = new SearchRequest();
searchRequest.artifactId(ui.item.artifactId);
searchViewModel.searchRequest(searchRequest);
searchViewModel.externalAdvancedSearch();
});
}
});
}).data( "autocomplete" )._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a>" + item.artifactId + "</a>" )
.appendTo( ul );
};;
}

View File

@ -747,10 +747,14 @@ $(function() {
customShowError("#main-content #search-basic-form", null, null, []);
}
self.search("restServices/archivaServices/searchService/quickSearchWithRepositories");
}
/**
* use from autocomplete search
*/
this.externalAdvancedSearch=function(){
this.search("restServices/archivaServices/searchService/searchArtifacts");
}
advancedSearch=function(){
self.search("restServices/archivaServices/searchService/searchArtifacts");
}
@ -828,7 +832,7 @@ $(function() {
}
displaySearch=function(){
displaySearch=function(successCallbackFn){
clearUserMessages();
var mainContent=$("#main-content");
mainContent.html(mediumSpinnerImg());
@ -843,6 +847,7 @@ $(function() {
searchViewModel.observableRepoIds(repos);
ko.applyBindings(searchViewModel,mainContent.find("#search-artifacts-div").get(0));
mainContent.find("#search-basic-repostories-select" ).chosen();
if (successCallbackFn) successCallbackFn();
}
});