feat: Add Category autocomplete with config in settings

This commit is contained in:
Hussain Nagaria
2021-04-26 11:15:20 +05:30
committed by marination
parent 8e55c95ecc
commit f3421554ad
5 changed files with 90 additions and 19 deletions

View File

@@ -12,7 +12,19 @@
{% block page_content %}
<input type="text" name="query" id="search-box">
<ul id="results">
</ul>
<!-- Search Results -->
<h2>Products</h2>
<ul id="results">Start typing...</ul>
{% set show_categories = frappe.db.get_single_value('E Commerce Settings', 'show_categories_in_search_autocomplete') %}
{% if show_categories %}
<div id="categories">
<h2>Categories</h2>
<ul id="category-suggestions">
</ul>
</div>
{% endif %}
{% endblock %}

View File

@@ -1,10 +1,10 @@
console.log("search.js reloaded");
console.log("search.js loaded");
const search_box = document.getElementById("search-box");
const searchBox = document.getElementById("search-box");
const results = document.getElementById("results");
const categoryList = document.getElementById("category-suggestions");
function populateResults(data) {
console.log(data);
html = ""
for (let res of data.message) {
html += `<li>
@@ -12,11 +12,24 @@ function populateResults(data) {
<a href="/${res.route}">${res.web_item_name}</a>
</li>`
}
console.log(html);
results.innerHTML = html;
}
search_box.addEventListener("input", (e) => {
function populateCategoriesList(data) {
if (data.length === 0) {
categoryList.innerText = "No matches";
return;
}
html = ""
for (let category of data.message) {
html += `<li>${category}</li>`
}
categoryList.innerHTML = html;
}
searchBox.addEventListener("input", (e) => {
frappe.call({
method: "erpnext.templates.pages.product_search.search",
args: {
@@ -25,5 +38,19 @@ search_box.addEventListener("input", (e) => {
callback: (data) => {
populateResults(data);
}
})
});
});
// If there is a suggestion list node
if (categoryList) {
frappe.call({
method: "erpnext.templates.pages.product_search.get_category_suggestions",
args: {
query: e.target.value
},
callback: (data) => {
populateCategoriesList(data);
}
});
}
});