mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Search form can perform a request on the database
This commit is contained in:
parent
b24f8d6828
commit
0effce56c2
@ -26,15 +26,6 @@ ComunicWeb.components.searchForm = {
|
|||||||
var searchBoxContainer = createElem("div", searchBoxCore);
|
var searchBoxContainer = createElem("div", searchBoxCore);
|
||||||
searchBoxContainer.className = "searchBoxResultsContainer";
|
searchBoxContainer.className = "searchBoxResultsContainer";
|
||||||
|
|
||||||
//Create menu list
|
|
||||||
var menuList = createElem("ul", searchBoxContainer);
|
|
||||||
menuList.className = "menu";
|
|
||||||
|
|
||||||
//Enable slimscroll
|
|
||||||
/*$(menuList).slimScroll({
|
|
||||||
height: '200px',
|
|
||||||
}));*/
|
|
||||||
|
|
||||||
//Create footer
|
//Create footer
|
||||||
var searchFooter = createElem("li", searchResultBox);
|
var searchFooter = createElem("li", searchResultBox);
|
||||||
searchFooter.className = "footer";
|
searchFooter.className = "footer";
|
||||||
@ -77,5 +68,25 @@ ComunicWeb.components.searchForm = {
|
|||||||
|
|
||||||
//Change "see more result" value
|
//Change "see more result" value
|
||||||
footerLink.setAttribute("data-searchValue", textInput.value);
|
footerLink.setAttribute("data-searchValue", textInput.value);
|
||||||
|
|
||||||
|
//Perform a request on the server
|
||||||
|
apiURI = "search/request";
|
||||||
|
params = {
|
||||||
|
query: textInput.value,
|
||||||
|
};
|
||||||
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(){
|
||||||
|
//Remove any remainging element in searchResultBox
|
||||||
|
console.log("result");
|
||||||
|
//Create menu list
|
||||||
|
var menuList = createElem("ul", searchBoxContainer);
|
||||||
|
menuList.className = "menu";
|
||||||
|
|
||||||
|
//Enable slimscroll
|
||||||
|
/*$(menuList).slimScroll({
|
||||||
|
height: '200px',
|
||||||
|
}));*/
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user