From 40868be7d4b9e1d9909a19dccc25ec49c1b5924b Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 11 Feb 2024 22:44:32 +0100 Subject: view: Implement GET handler for model.Recipes --- main.go | 4 ++++ view/html/footer.html | 5 +++++ view/html/head.html | 8 ++++++++ view/html/recipes.html | 40 ++++++++++++++++++++++++++++++++++++++++ view/recipes.go | 23 +++++++++++++++++++++++ view/templates.go | 15 +++++++++++++++ 6 files changed, 95 insertions(+) create mode 100644 view/html/footer.html create mode 100644 view/html/head.html create mode 100644 view/html/recipes.html create mode 100644 view/recipes.go create mode 100644 view/templates.go diff --git a/main.go b/main.go index 44e4172..cbf1593 100644 --- a/main.go +++ b/main.go @@ -10,6 +10,7 @@ import ( "syscall" "xengineering.eu/ceres/model" + "xengineering.eu/ceres/view" "github.com/gorilla/mux" ) @@ -21,6 +22,8 @@ func main() { model.InitDatabase() defer model.CloseDatabase() + view.Init() + var srv *http.Server = startServer("127.0.0.1:8080") go srv.ListenAndServe() defer stopServer(srv) @@ -40,6 +43,7 @@ func startServer(addr string) *http.Server { r.PathPrefix("/static/"). Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) + r.HandleFunc("/recipes", view.Recipes).Methods(`GET`) muxer := http.NewServeMux() muxer.Handle("/", r) diff --git a/view/html/footer.html b/view/html/footer.html new file mode 100644 index 0000000..5128b7f --- /dev/null +++ b/view/html/footer.html @@ -0,0 +1,5 @@ +{{define "footer"}} + +{{end}} diff --git a/view/html/head.html b/view/html/head.html new file mode 100644 index 0000000..91ae004 --- /dev/null +++ b/view/html/head.html @@ -0,0 +1,8 @@ +{{define "head"}} + + Recipes + + + + +{{end}} diff --git a/view/html/recipes.html b/view/html/recipes.html new file mode 100644 index 0000000..1b7b1c1 --- /dev/null +++ b/view/html/recipes.html @@ -0,0 +1,40 @@ +{{define "recipes"}} + + {{ template "head" }} +
+ +

Recipe overview

+
+ +
+

Here are the available recipes 😋🍳🍔🍕🥘

+ + +
+ {{ template "footer" }} + + + +{{end}} diff --git a/view/recipes.go b/view/recipes.go new file mode 100644 index 0000000..3a5fbf8 --- /dev/null +++ b/view/recipes.go @@ -0,0 +1,23 @@ +package view + +import ( + "net/http" + + "xengineering.eu/ceres/model" +) + +func Recipes(w http.ResponseWriter, r *http.Request) { + recipes := make(model.Recipes, 0) + + err := recipes.Read() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = html.ExecuteTemplate(w, "recipes", recipes) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } +} diff --git a/view/templates.go b/view/templates.go new file mode 100644 index 0000000..d08f95e --- /dev/null +++ b/view/templates.go @@ -0,0 +1,15 @@ +package view + +import ( + "embed" + "html/template" +) + +//go:embed html/*.html +var htmlFS embed.FS + +var html *template.Template + +func Init() { + html = template.Must(template.New("html").ParseFS(htmlFS, "html/*.html")) +} -- cgit v1.2.3-70-g09d2