111 lines
2.7 KiB
JavaScript
111 lines
2.7 KiB
JavaScript
export default function createNavigationHook({ getContainer, inputId, onSelect }) {
|
|
return {
|
|
mounted() {
|
|
this.selectedIndex = -1;
|
|
|
|
this.keydownHandler = (event) => {
|
|
const container = getContainer(this);
|
|
if (!container) return;
|
|
|
|
switch (event.key) {
|
|
case "ArrowDown":
|
|
event.preventDefault();
|
|
this.navigateDown();
|
|
break;
|
|
case "ArrowUp":
|
|
event.preventDefault();
|
|
this.navigateUp();
|
|
break;
|
|
case "Enter":
|
|
if (this.selectedIndex >= 0) {
|
|
event.preventDefault();
|
|
this.selectCurrentResult();
|
|
}
|
|
break;
|
|
}
|
|
};
|
|
|
|
document.addEventListener("keydown", this.keydownHandler);
|
|
},
|
|
|
|
updated() {
|
|
this.selectedIndex = -1;
|
|
this.updateSelection();
|
|
},
|
|
|
|
destroyed() {
|
|
if (this.keydownHandler) {
|
|
document.removeEventListener("keydown", this.keydownHandler);
|
|
}
|
|
},
|
|
|
|
navigateDown() {
|
|
const results = this.getResultElements();
|
|
if (results.length === 0) return;
|
|
|
|
if (this.selectedIndex < results.length - 1) {
|
|
this.selectedIndex++;
|
|
} else {
|
|
this.selectedIndex = -1;
|
|
}
|
|
|
|
this.updateSelection();
|
|
},
|
|
|
|
navigateUp() {
|
|
const results = this.getResultElements();
|
|
if (results.length === 0) return;
|
|
|
|
if (this.selectedIndex > -1) {
|
|
this.selectedIndex--;
|
|
} else {
|
|
this.selectedIndex = results.length - 1;
|
|
}
|
|
|
|
this.updateSelection();
|
|
},
|
|
|
|
selectCurrentResult() {
|
|
const results = this.getResultElements();
|
|
|
|
if (this.selectedIndex >= 0 && this.selectedIndex < results.length) {
|
|
results[this.selectedIndex].click();
|
|
|
|
if (onSelect) {
|
|
onSelect(this);
|
|
}
|
|
}
|
|
},
|
|
|
|
updateSelection() {
|
|
const results = this.getResultElements();
|
|
|
|
results.forEach((result) => {
|
|
result.removeAttribute("aria-selected");
|
|
});
|
|
|
|
if (this.selectedIndex === -1) {
|
|
const searchInput = document.getElementById(inputId);
|
|
if (searchInput) {
|
|
searchInput.focus();
|
|
}
|
|
} else if (this.selectedIndex >= 0 && this.selectedIndex < results.length) {
|
|
const selectedResult = results[this.selectedIndex];
|
|
selectedResult.setAttribute("aria-selected", "true");
|
|
|
|
selectedResult.scrollIntoView({
|
|
block: "nearest",
|
|
behavior: "smooth"
|
|
});
|
|
}
|
|
},
|
|
|
|
getResultElements() {
|
|
const container = getContainer(this);
|
|
if (!container) return [];
|
|
|
|
return Array.from(container.querySelectorAll('[role="option"]'));
|
|
}
|
|
};
|
|
}
|