From f70f65f7466a480a45a8260b35887cb7ed36b466 Mon Sep 17 00:00:00 2001 From: Ole Mathias Heggem Date: Sat, 25 Mar 2017 15:04:04 +0100 Subject: Added a basic search results page and search on tags --- web/js/nms-info-box.js | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'web/js/nms-info-box.js') diff --git a/web/js/nms-info-box.js b/web/js/nms-info-box.js index 2cc6fc4..6e3f31c 100644 --- a/web/js/nms-info-box.js +++ b/web/js/nms-info-box.js @@ -76,6 +76,16 @@ var nmsInfoBox = nmsInfoBox || { } } }, + { + 'id': 'searchResults', + 'title': 'Search Results', + 'views': { + 'initial': { + 'name': 'Search Results', + 'panels': ['searchResults'] + } + } + }, { 'id': 'inventoryListing', 'title': 'Inventory listing', @@ -723,6 +733,46 @@ var searchHelpPanel = function() { }; nmsInfoBox.addPanelType("searchHelp",searchHelpPanel); + +/* + * Panel type: Search Results + * + * Show the search results + * + */ +var searchResultsPanel = function() { + var searchPage = 0; + nmsInfoPanel.call(this,"searchResults"); + this.refresh = function(reason) { + var collator = new Intl.Collator(undefined, {numeric: true, sensitivity: 'base'}); + var switches = nmsSearch.matches.sort(collator.compare); + if(switches.length <= 0) { + var x = document.createElement("div"); + var c = document.createElement("p"); + c.innerText = "No results :("; + x.appendChild(c); + this._render(x) + } + + else { + var table = document.createElement('table'); + table.className = "table table-condensed"; + table.id = "searchResults-table" + for (var sw in switches) { + var row = table.insertRow(sw); + var cell1 = row.insertCell(0); + var cell2 = row.insertCell(1); + var cell3 = row.insertCell(2); + cell1.innerHTML = ""+switches[sw]+ ''; + cell2.innerHTML = nmsData.switches["switches"][switches[sw]].distro_name; + cell3.innerHTML = handlers[0].getInfo(switches[sw]).why; + } + this._render(table); + } + }; +}; +nmsInfoBox.addPanelType("searchResults",searchResultsPanel); + /* * Panel type: Add switch * -- cgit v1.2.3 From 10f6ab7d5b9f5c9abcdfcd66104b24c3ff47133c Mon Sep 17 00:00:00 2001 From: Ole Mathias Heggem Date: Thu, 20 Apr 2017 03:50:48 +0200 Subject: No search-box at zero results, the search button change color on 0 (white) , 1 (green) and multiple (blue) hits --- web/js/nms-info-box.js | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) (limited to 'web/js/nms-info-box.js') diff --git a/web/js/nms-info-box.js b/web/js/nms-info-box.js index cd84ec0..66b81b9 100644 --- a/web/js/nms-info-box.js +++ b/web/js/nms-info-box.js @@ -746,30 +746,20 @@ var searchResultsPanel = function() { this.refresh = function(reason) { var collator = new Intl.Collator(undefined, {numeric: true, sensitivity: 'base'}); var switches = nmsSearch.matches.sort(collator.compare); - if(switches.length <= 0) { - var x = document.createElement("div"); - var c = document.createElement("p"); - c.innerText = "No results :("; - x.appendChild(c); - this._render(x) + var table = document.createElement('table'); + table.className = "table table-condensed"; + table.id = "searchResults-table" + for (var sw in switches) { + var row = table.insertRow(sw); + var cell1 = row.insertCell(0); + var cell2 = row.insertCell(1); + var cell3 = row.insertCell(2); + cell1.innerHTML = ""+switches[sw]+ ''; + cell2.innerHTML = nmsData.switches["switches"][switches[sw]].distro_name; + cell3.innerHTML = handlers[0].getInfo(switches[sw]).why; + } + this._render(table); } - - else { - var table = document.createElement('table'); - table.className = "table table-condensed"; - table.id = "searchResults-table" - for (var sw in switches) { - var row = table.insertRow(sw); - var cell1 = row.insertCell(0); - var cell2 = row.insertCell(1); - var cell3 = row.insertCell(2); - cell1.innerHTML = ""+switches[sw]+ ''; - cell2.innerHTML = nmsData.switches["switches"][switches[sw]].distro_name; - cell3.innerHTML = handlers[0].getInfo(switches[sw]).why; - } - this._render(table); - } - }; }; nmsInfoBox.addPanelType("searchResults",searchResultsPanel); -- cgit v1.2.3