Add templ package to handle rendering of templates

This commit is contained in:
Maximilian Friedersdorff 2025-01-28 21:27:18 +00:00
parent e6b5ea3921
commit e7e420cd47
6 changed files with 25 additions and 14 deletions

View file

@ -1,3 +1,4 @@
extension = "md" extension = "md"
notesdir = "saved_notes" notesdir = "saved_notes"
templatesdir = "templates" templatesdir = "templates"
basetemplate = "base.tmpl.html"

View file

@ -11,6 +11,7 @@ type Config struct {
Extension string Extension string
NotesDir string NotesDir string
TemplatesDir string TemplatesDir string
BaseTemplate string
} }
var Conf Config var Conf Config

View file

@ -1,7 +1,6 @@
package views package views
import ( import (
"html/template"
"log" "log"
"net/http" "net/http"
"os" "os"
@ -11,6 +10,7 @@ import (
urls "gitea.gwairfelin.com/max/gispatcho" urls "gitea.gwairfelin.com/max/gispatcho"
"gitea.gwairfelin.com/max/gonotes/internal/conf" "gitea.gwairfelin.com/max/gonotes/internal/conf"
"gitea.gwairfelin.com/max/gonotes/internal/notes" "gitea.gwairfelin.com/max/gonotes/internal/notes"
"gitea.gwairfelin.com/max/gonotes/internal/templ"
) )
var myurls urls.URLs var myurls urls.URLs
@ -39,7 +39,7 @@ func view(w http.ResponseWriter, r *http.Request) {
context := map[string]any{"note": note, "urlEdit": urlEdit} context := map[string]any{"note": note, "urlEdit": urlEdit}
note.Render() note.Render()
err = renderTemplate(w, "view.html", context) err = templ.RenderTemplate(w, "view.tmpl.html", context)
if err != nil { if err != nil {
log.Print(err.Error()) log.Print(err.Error())
http.Error(w, "Couldn't load template", http.StatusInternalServerError) http.Error(w, "Couldn't load template", http.StatusInternalServerError)
@ -56,7 +56,7 @@ func edit(w http.ResponseWriter, r *http.Request) {
urlSave := myurls.Reverse("save", urls.Repl{"note": title}) urlSave := myurls.Reverse("save", urls.Repl{"note": title})
context := map[string]any{"note": note, "urlSave": urlSave} context := map[string]any{"note": note, "urlSave": urlSave}
err = renderTemplate(w, "edit.html", context) err = templ.RenderTemplate(w, "edit.tmpl.html", context)
if err != nil { if err != nil {
log.Print(err.Error()) log.Print(err.Error())
http.Error(w, "Couldn't load template", http.StatusInternalServerError) http.Error(w, "Couldn't load template", http.StatusInternalServerError)
@ -89,20 +89,10 @@ func list(w http.ResponseWriter, r *http.Request) {
} }
} }
err = renderTemplate(w, "list.tmpl.html", map[string]any{"titles": titles}) err = templ.RenderTemplate(w, "list.tmpl.html", map[string]any{"titles": titles})
if err != nil { if err != nil {
log.Print(err.Error()) log.Print(err.Error())
http.Error(w, "Internal Server Error", http.StatusInternalServerError) http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return return
} }
} }
func renderTemplate(w http.ResponseWriter, tmpl string, context any) error {
files := []string{
filepath.Join(conf.Conf.TemplatesDir, "base.tmpl.html"),
filepath.Join(conf.Conf.TemplatesDir, tmpl),
}
t, err := template.ParseFiles(files...)
t.ExecuteTemplate(w, "base", context)
return err
}

19
internal/templ/templ.go Normal file
View file

@ -0,0 +1,19 @@
package templ
import (
"html/template"
"net/http"
"path/filepath"
"gitea.gwairfelin.com/max/gonotes/internal/conf"
)
func RenderTemplate(w http.ResponseWriter, tmpl string, context any) error {
files := []string{
filepath.Join(conf.Conf.TemplatesDir, conf.Conf.BaseTemplate),
filepath.Join(conf.Conf.TemplatesDir, tmpl),
}
t, err := template.ParseFiles(files...)
t.ExecuteTemplate(w, "base", context)
return err
}