feat: dynamically link to sources
Alan Pearce alan@alanpearce.eu
Thu, 09 May 2024 19:36:03 +0200
2 files changed, 5 insertions(+), 3 deletions(-)
M frontend/templates/index.gotmpl → frontend/templates/index.gotmpl
@@ -11,9 +11,9 @@ <body> <header> <nav> <h1><a href="/">Searchix</a></h1> - <a href="/options/nixos/search">NixOS</a> - <a href="/options/darwin/search">Darwin</a> - <a href="/options/home-manager/search">Home Manager</a> + {{- range $key, $value := .Sources }} + <a href="/options/{{ $key }}/search">{{ $value.Name }}</a> + {{- end }} </nav> </header> <main>
M internal/server/server.go → internal/server/server.go
@@ -63,6 +63,7 @@ const jsSnippet = template.HTML(livereload.JsSnippet) // #nosec G203 type TemplateData struct { LiveReload template.HTML + Sources map[string]*importer.Source Source importer.Source Query string Results bool @@ -125,6 +126,7 @@ top := http.NewServeMux() mux := http.NewServeMux() indexData := TemplateData{ LiveReload: jsSnippet, + Sources: config.Sources, } mux.HandleFunc("/{$}", func(w http.ResponseWriter, _ *http.Request) { err := templates["index"].ExecuteTemplate(w, "index.gotmpl", indexData)