all repos — searchix @ 6ea953b1c9f9c352a9619e42a6f0ce80d183d7f8

Search engine for NixOS, nix-darwin, home-manager and NUR users

feat(ui): enable resetting form by clicking current source link
Alan Pearce alan@alanpearce.eu
Fri, 17 May 2024 23:10:04 +0200
commit

6ea953b1c9f9c352a9619e42a6f0ce80d183d7f8

parent

934a0693213df901078cd1bc75a5b7e1b5c87555

2 files changed, 14 insertions(+), 2 deletions(-)

jump to
M frontend/static/search.jsfrontend/static/search.js
@@ -100,7 +100,7 @@ queryInput.addEventListener("input", function (ev) {   for (const el of nav.children) {
     if (el.nodeName === "A") {
       const url = new URL(el.href);
-      if (ev.target.value) {
+      if (ev.target.value && !el.classList.contains("current")) {
         url.searchParams.set("query", ev.target.value);
       } else {
         url.searchParams.delete("query");
@@ -125,6 +125,16 @@ } if (pagination !== null) {
   addPaginationEventListeners(pagination);
 }
+
+document.querySelector("a.current").addEventListener("click", function (ev) {
+  search.reset();
+  state.input = null;
+  range.deleteContents();
+  state.fragment = "";
+  history.pushState(state, null, ev.target.href);
+  ev.preventDefault();
+  queryInput.value = "";
+});
 
 if (state.opened.length > 0) {
   state.opened.forEach((id) =>
M frontend/templates/index.gotmplfrontend/templates/index.gotmpl
@@ -25,7 +25,9 @@ <h1><a href="/">Searchix</a></h1>         {{- range $key, $value := .Sources }}
           <a
             {{ if eq $.Source.Name $value.Name }}class="current"{{ end }}
-            href="/{{ .Importer }}/{{ $key }}/search{{ and $.Query (printf "?query=%s" $.Query) }}"
+            href="/{{ .Importer }}/{{ $key }}/search{{ if and (ne $.Source.Name $value.Name) $.Query }}
+              {{- printf "?query=%s" $.Query -}}
+            {{ end }}"
           >
             {{- $value.Name -}}
           </a>