current state

This commit is contained in:
2023-05-04 20:21:10 +02:00
parent d1d717a988
commit 95ec75b8d7
20 changed files with 255 additions and 137 deletions

View File

@ -1,11 +1,24 @@
document.getElementById("SearchBox").addEventListener("keyup", handleSearchChange);
const autocompleteBox = document.getElementById("autocomplete-items");
autocompleteBox.style.display = "none";
function handleSearchChange(e) {
console.log(e.target.value);
// Check if known prefix is used (either > or #)
if(e.target.value != "" ) {
autocompleteBox.style.display = "block";
autocompleteBox.innerHTML = "Search results will show up here soon <br> Trust me <br> Results";
} else {
autocompleteBox.style.display = "none";
}
if (e.target.value[0] == ">") {
// Search for commands
autocompleteBox.innerHTML = "Start typing to search for commands <br> >goto items";
if(e.target.value == ">goto items") {
autocompleteBox.innerHTML = "<a href='/allItems'>Goto Items</a>";
}
} else if (e.target.value[0] == "#") {
// Search for SKU
autocompleteBox.innerHTML = "Start typing to search for items by SKU";
} else {
// Search for name
}