summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-01-17 21:37:52 +0100
committerxengineering <me@xengineering.eu>2024-01-18 19:52:29 +0100
commit325a2740e39b7c7937bfae8b76b092dd900fec9a (patch)
tree64587e601cf279458dd55fb90de0bacd202a2f1d
parent34fa1017a697287540d92d8c36ecca988f936f16 (diff)
downloadceres-325a2740e39b7c7937bfae8b76b092dd900fec9a.tar
ceres-325a2740e39b7c7937bfae8b76b092dd900fec9a.tar.zst
ceres-325a2740e39b7c7937bfae8b76b092dd900fec9a.zip
Show steps on recipe page
-rw-r--r--model/recipe.go26
-rw-r--r--model/recipe_step.go9
-rw-r--r--model/sql/steps-for-recipe.sql3
-rw-r--r--view/html/recipe.html5
4 files changed, 32 insertions, 11 deletions
diff --git a/model/recipe.go b/model/recipe.go
index 2b3953f..c6aa63c 100644
--- a/model/recipe.go
+++ b/model/recipe.go
@@ -6,6 +6,7 @@ type Recipe struct {
Portions string // FIXME has to be uint
URL string
Notes string
+ Steps []RecipeStep
}
func (d *Recipe) FromDB() error {
@@ -14,13 +15,36 @@ func (d *Recipe) FromDB() error {
return err
}
- return db.QueryRow(query, d.Id).Scan(
+ err = db.QueryRow(query, d.Id).Scan(
&d.Id,
&d.Title,
&d.Portions,
&d.URL,
&d.Notes,
)
+ if err != nil {
+ return err
+ }
+
+ query, err = GetSql(`steps-for-recipe`)
+ if err != nil {
+ return err
+ }
+
+ rows, err := db.Query(query, d.Id)
+ if err != nil {
+ return err
+ }
+ for rows.Next() {
+ var step RecipeStep
+ err = rows.Scan(&step.Text)
+ if err != nil {
+ return err
+ }
+ d.Steps = append(d.Steps, step)
+ }
+
+ return nil
}
func (d *Recipe) ToDB() error {
diff --git a/model/recipe_step.go b/model/recipe_step.go
index 980d312..dc2a831 100644
--- a/model/recipe_step.go
+++ b/model/recipe_step.go
@@ -1,9 +1,5 @@
package model
-import (
- "log"
-)
-
type RecipeStep struct {
Id string // FIXME has to be uint
RecipeId string // FIXME has to be uint
@@ -11,10 +7,6 @@ type RecipeStep struct {
Text string
}
-func (d *RecipeStep) String() string {
- return d.Text
-}
-
func (d *RecipeStep) FromDB() error {
query, err := GetSql(`recipe-step-select`)
if err != nil {
@@ -28,6 +20,5 @@ func (d *RecipeStep) FromDB() error {
&d.Text,
)
- log.Printf("d.Text: %s %s %s %s\n", d.Id, d.RecipeId, d.Index, d.Text)
return err
}
diff --git a/model/sql/steps-for-recipe.sql b/model/sql/steps-for-recipe.sql
new file mode 100644
index 0000000..4a2a3c8
--- /dev/null
+++ b/model/sql/steps-for-recipe.sql
@@ -0,0 +1,3 @@
+SELECT text FROM recipe_steps
+WHERE recipe_id=?
+ORDER BY "index" ASC;
diff --git a/view/html/recipe.html b/view/html/recipe.html
index acf346f..82b426b 100644
--- a/view/html/recipe.html
+++ b/view/html/recipe.html
@@ -12,7 +12,10 @@
<p>Portions: {{.Portions}}</p>
<p><a href="{{.URL}}">original recipe</a></p>
<p>{{.Notes}}</p>
- <a href="/recipes/{{.Id}}/edit"><button>edit</button></a>
+ <a href="/recipes/{{.Id}}/edit"><button>edit</button></a>{{range .Steps}}
+ <section>
+ <p>{{.Text}}</p>
+ </section>{{end}}
</main>
{{ template "footer" }}
</body>