All checks were successful
Deploy to K8s / deploy (push) Successful in 9s
Replace bare <a href=/qr> Pay buttons with <button data-*> elements that open an in-page #qrModal (matching Python's showPayQR UX), driven by a new payment-qr.js vanilla-JS IIFE module. Remove the now-dead qrHref / qrHrefAll template helpers from render.go. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
92 lines
2.2 KiB
Go
92 lines
2.2 KiB
Go
package web
|
|
|
|
import (
|
|
"fmt"
|
|
"fuj-management/go/internal/web/api"
|
|
"html/template"
|
|
"log/slog"
|
|
"net/http"
|
|
)
|
|
|
|
// PageData is the view model passed to every HTML template.
|
|
type PageData struct {
|
|
Active string
|
|
Build BuildInfo
|
|
}
|
|
|
|
// AdultsPageData is the view model for the /adults HTML page.
|
|
type AdultsPageData struct {
|
|
PageData
|
|
Data api.AdultsResponse
|
|
Error string
|
|
}
|
|
|
|
// JuniorsPageData is the view model for the /juniors HTML page.
|
|
type JuniorsPageData struct {
|
|
PageData
|
|
Data api.JuniorsResponse
|
|
Error string
|
|
}
|
|
|
|
// PaymentsPageData is the view model for the /payments HTML page.
|
|
type PaymentsPageData struct {
|
|
PageData
|
|
Data api.PaymentsResponse
|
|
Error string
|
|
}
|
|
|
|
// SyncPageData is the view model for the /sync-bank HTML page.
|
|
type SyncPageData struct {
|
|
PageData
|
|
Output string
|
|
Success bool
|
|
}
|
|
|
|
// FlushPageData is the view model for the /flush-cache HTML page.
|
|
type FlushPageData struct {
|
|
PageData
|
|
Flushed bool
|
|
Deleted int
|
|
}
|
|
|
|
// Renderer parses and executes HTML templates from the embedded FS.
|
|
type Renderer struct {
|
|
tmpls map[string]*template.Template
|
|
}
|
|
|
|
var pageNames = []string{"adults", "juniors", "payments", "sync", "flush_cache"}
|
|
|
|
var tmplFuncs = template.FuncMap{}
|
|
|
|
// NewRenderer parses all templates from the embedded FS.
|
|
// A parse failure should be treated as a startup-time fatal error.
|
|
func NewRenderer() (*Renderer, error) {
|
|
tmpls := make(map[string]*template.Template, len(pageNames))
|
|
for _, name := range pageNames {
|
|
t, err := template.New("").Funcs(tmplFuncs).ParseFS(templateFS,
|
|
"templates/base.tmpl",
|
|
"templates/partials/nav.tmpl",
|
|
"templates/partials/footer.tmpl",
|
|
"templates/"+name+".tmpl",
|
|
)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parse template %q: %w", name, err)
|
|
}
|
|
tmpls[name] = t
|
|
}
|
|
return &Renderer{tmpls: tmpls}, nil
|
|
}
|
|
|
|
// Render executes the named template with data, writing to w.
|
|
func (r *Renderer) Render(w http.ResponseWriter, name string, data any) {
|
|
t, ok := r.tmpls[name]
|
|
if !ok {
|
|
http.Error(w, "template not found: "+name, http.StatusInternalServerError)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
|
if err := t.ExecuteTemplate(w, "base", data); err != nil {
|
|
slog.Error("render template", "name", name, "err", err)
|
|
}
|
|
}
|