fix: unbork search shortcut

This commit is contained in:
Jacky Zhao 2024-01-13 13:56:03 -08:00
parent e70312320f
commit a40dbd55a4

View file

@ -110,7 +110,6 @@ document.addEventListener("nav", async (e: unknown) => {
} }
function shortcutHandler(e: HTMLElementEventMap["keydown"]) { function shortcutHandler(e: HTMLElementEventMap["keydown"]) {
if (!container?.classList.contains("active")) return
if (e.key === "k" && (e.ctrlKey || e.metaKey) && !e.shiftKey) { if (e.key === "k" && (e.ctrlKey || e.metaKey) && !e.shiftKey) {
e.preventDefault() e.preventDefault()
const searchBarOpen = container?.classList.contains("active") const searchBarOpen = container?.classList.contains("active")
@ -123,7 +122,10 @@ document.addEventListener("nav", async (e: unknown) => {
// add "#" prefix for tag search // add "#" prefix for tag search
if (searchBar) searchBar.value = "#" if (searchBar) searchBar.value = "#"
} else if (e.key === "Enter") { }
if (!container?.classList.contains("active")) return
else if (e.key === "Enter") {
// If result has focus, navigate to that one, otherwise pick first result // If result has focus, navigate to that one, otherwise pick first result
if (results?.contains(document.activeElement)) { if (results?.contains(document.activeElement)) {
const active = document.activeElement as HTMLInputElement const active = document.activeElement as HTMLInputElement