From cd28fc1ff1d0ae989fdbd66db4db35859529bfa7 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 22 Aug 2021 11:27:34 +0200 Subject: [PATCH] Use of embedded struct. --- main.go | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/main.go b/main.go index c5b52ca..844585b 100644 --- a/main.go +++ b/main.go @@ -12,7 +12,7 @@ import ( type missingCol func (map[string]interface{}) interface{} -type column struct { +type Column struct { Name string Title string Align int @@ -26,14 +26,14 @@ var rowTmpl = "\n{{ . }}\n" var rowColTmpl = "\t{{ .Value }}\n" type grid struct { - cols []column + cols []Column headerTmpl string headerRowTmpl string rowTmpl string rowColTmpl string } -func (g *grid) addColumn (c column) { +func (g *grid) addColumn (c Column) { g.cols = append(g.cols, c) } @@ -81,6 +81,11 @@ func (g *grid) getHeader () string { } func (g *grid) getRowFromMap (m map[string]interface{}) string { + type nc struct { + Column + Value interface{} + } + rtmpl := g.rowTmpl if rtmpl == "" { rtmpl = rowTmpl @@ -113,13 +118,11 @@ func (g *grid) getRowFromMap (m map[string]interface{}) string { } } - m := make(map[string]interface{}) - m["Name"] = c.Name - m["Align"] = c.Align - m["Value"] = v + nnc := nc{Column: c, Value: v} + fmt.Println(nnc) var b bytes.Buffer - err = tc.Execute(&b, m) + err = tc.Execute(&b, nnc) ret += b.String() } @@ -145,21 +148,21 @@ func main() { g.headerTmpl = "\n{{ . }}\n" - g.rowColTmpl = "\t{{ .Value }}\n" + g.rowColTmpl = "\t{{ .Value }}\n" - c := column{Name: "id", Title: "ID"} + c := Column{Name: "id", Title: "ID"} g.addColumn(c) - c = column{Name: "name", Title: "Name"} + c = Column{Name: "name", Title: "Name"} g.addColumn(c) - c = column{Name: "surname", Title: "Surname"} + c = Column{Name: "surname", Title: "Surname"} g.addColumn(c) - c = column{Name: "age", Title: "Age"} + c = Column{Name: "age", Title: "Age"} g.addColumn(c) - c = column{Name: "btn", Title: "Buttons"} + c = Column{Name: "btn", Title: "Buttons"} c.toCall = missing c.Align = 2 g.addColumn(c) -- 2.49.0