feat: make list of source links dynamic
Alan Pearce alan@alanpearce.eu
Thu, 20 Mar 2025 13:20:16 +0100
2 files changed, 39 insertions(+), 5 deletions(-)
M internal/components/search.go → internal/components/search.go
@@ -5,6 +5,7 @@ "time" g "go.alanpearce.eu/gomponents" . "go.alanpearce.eu/gomponents/html" + "go.alanpearce.eu/searchix/internal/config" ) func SearchForm(tdata TemplateData, r ResultData) g.Node { @@ -35,11 +36,9 @@ return Page( tdata, P( g.Text("Search Nix packages and options from "), - A(Href("https://nixos.org"), g.Text("NixOS")), - g.Text(", "), - A(Href("https://github.com/LnL7/nix-darwin"), g.Text("nix-darwin")), - g.Text(" and "), - A(Href("https://github.com/nix-community/home-manager"), g.Text("home-manager")), + MapCommaList(tdata.Sources, func(source *config.Source) g.Node { + return A(Href(source.Repo.String()), g.Text(source.Name)) + }), ), g.If(Indexing.InProgress, P(Class("notice"), @@ -96,3 +95,23 @@ ), ), ) } + +func MapCommaList[T any](items []T, fn func(T) g.Node) g.Node { + out := make([]g.Node, (len(items) * 2)) + j := 0 + last := len(items) - 2 + for i := range items { + out[j] = fn(items[i]) + j++ + if i <= last { + if i == last { + out[j] = g.Text(" and ") + } else { + out[j] = g.Text(", ") + } + } + j++ + } + + return g.Group(out) +}
M internal/config/repository.go → internal/config/repository.go
@@ -2,6 +2,7 @@ package config import ( "fmt" + "net/url" "strings" "gitlab.com/tozd/go/errors" @@ -19,6 +20,20 @@ Type RepoType `toml:"" default:"github" comment:"Currently only 'github' is supported."` Owner string Repo string Revision string `toml:"-"` +} + +func (r *Repository) String() string { + switch r.Type { + case GitHub: + u, err := url.JoinPath("https://github.com/", r.Owner, r.Repo) + if err != nil { + panic(err) + } + + return u + default: + panic("need repository string implementation for type " + r.Type.String()) + } } func (f RepoType) String() string {