From 9422e8194245c9cdbfa09b38c20173964349e2a2 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 24 Oct 2024 17:24:00 +0200 Subject: view: Order ingredient summary by ingredient name This makes it easier to write a shopping list for the required ingredients. --- model/ingredient.go | 16 ++++++++++++++++ view/html/recipe-confirm-deletion.html | 4 ++-- view/html/recipe-edit.html | 22 +++++++++++----------- view/html/recipe.html | 28 +++++++++++----------------- view/recipe.go | 34 ++++++++++++++++++++++++++++------ 5 files changed, 68 insertions(+), 36 deletions(-) diff --git a/model/ingredient.go b/model/ingredient.go index 9922060..e4570ff 100644 --- a/model/ingredient.go +++ b/model/ingredient.go @@ -45,6 +45,22 @@ func (i *Ingredient) Validate() error { return nil } +func (i Ingredient) String() string { + str := "" + + if i.Amount != "" { + str += i.Amount + " " + } + + if i.Unit != "" { + str += i.Unit + " " + } + + str += i.Type + + return str +} + func (i *Ingredient) Create(tx *sql.Tx) error { if i.Id != "" { return fmt.Errorf("Cannot create ingredient if ID is given") diff --git a/view/html/recipe-confirm-deletion.html b/view/html/recipe-confirm-deletion.html index 2bc9429..0e51681 100644 --- a/view/html/recipe-confirm-deletion.html +++ b/view/html/recipe-confirm-deletion.html @@ -9,8 +9,8 @@

Do you really want to delete this recipe?

- - + +
{{ template "footer" }} diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index cd3ba86..9a18e75 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -8,24 +8,24 @@

Recipe editor

-
- - - + + + + -

-

-

-

+

+

+

+

-
{{range .Steps}} +
{{range .Recipe.Steps}} {{template "recipe-step" .}}{{end}}
- {{if eq .Id ""}} + {{if eq .Recipe.Id ""}} {{else}} - {{end}} + {{end}}
{{ template "footer" }} diff --git a/view/html/recipe.html b/view/html/recipe.html index 7abcad4..cf30d06 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -1,30 +1,24 @@ {{define "recipe"}} -{{- $hasIngredients := false -}} -{{- range .Steps -}} - {{- if gt (len .Ingredients) 0 -}} - {{- $hasIngredients = true -}} - {{- end -}} -{{- end -}} {{ template "head" }}
{{ template "nav" }} -

{{.Title}}

+

{{.Recipe.Title}}

- - -

{{ if ne .Notes "" }} -

{{.Notes}}

{{end}}{{ if ne .Portions "" }} -

Portions: {{.Portions}}

{{end}}{{ if ne .Url "" }} -

Original recipe: link

{{end}} - {{if $hasIngredients}}

Ingredient summary:

- {{end}}{{range .Steps}} + + +

{{ if ne .Recipe.Notes "" }} +

{{.Recipe.Notes}}

{{end}}{{ if ne .Recipe.Portions "" }} +

Portions: {{.Recipe.Portions}}

{{end}}{{ if ne .Recipe.Url "" }} +

Original recipe: link

{{end}}{{if .HasIngredients}} +

Ingredient summary:

+ {{end}}{{range .Recipe.Steps}}

{{.Text}}

{{range $i, $el := .Ingredients}}{{if $i}}, {{end}}{{if ne $el.Amount ""}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}{{end}}

diff --git a/view/recipe.go b/view/recipe.go index 889f6ec..d274f85 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -2,6 +2,7 @@ package view import ( "net/http" + "sort" "xengineering.eu/ceres/model" ) @@ -9,16 +10,35 @@ import ( func RecipeRead(db *model.DB) http.Handler { return http.HandlerFunc( func(w http.ResponseWriter, r *http.Request) { - recipe := model.Recipe{} - recipe.Id = r.PathValue("id") + var data struct { + Recipe model.Recipe + HasIngredients bool + Summary []model.Ingredient + } + + data.Recipe.Id = r.PathValue("id") - var obj model.Object = &recipe + var obj model.Object = &data.Recipe err := db.Transaction(obj.Read) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } + data.HasIngredients = false + for _, step := range data.Recipe.Steps { + if len(step.Ingredients) > 0 { + data.HasIngredients = true + } + for _, ingredient := range step.Ingredients { + data.Summary = append(data.Summary, ingredient) + } + } + + sort.Slice(data.Summary, func(i, j int) bool { + return data.Summary[i].Type < data.Summary[j].Type + }) + template := "recipe" view, ok := r.URL.Query()["view"] if ok { @@ -45,7 +65,7 @@ func RecipeRead(db *model.DB) http.Handler { return } - err = html.ExecuteTemplate(w, template, recipe) + err = html.ExecuteTemplate(w, template, data) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return @@ -57,9 +77,11 @@ func RecipeRead(db *model.DB) http.Handler { func RecipeCreate() http.Handler { return http.HandlerFunc( func(w http.ResponseWriter, r *http.Request) { - recipe := model.Recipe{} + var data struct { + Recipe model.Recipe + } - err := html.ExecuteTemplate(w, "recipe-edit", recipe) + err := html.ExecuteTemplate(w, "recipe-edit", data) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return -- cgit v1.2.3-70-g09d2