type missingCol func (map[string]interface{}) interface{}
type column struct {
- name string
- title string
- align int
+ Name string
+ Title string
+ Align int
toCall missingCol
}
var headerTmpl = "<tr>\n{{ . }}</tr>\n"
+var headerRowTmpl = "\t<th{{ if (eq .Align 1) }}align='center'{{ else if (eq .Align 2) }}align='right'{{ end }}>{{ .Title }}</th>\n"
type grid struct {
cols []column
headerTmpl string
+ headerRowTmpl string
}
func (g *grid) addColumn (c column) {
}
func (g *grid) getHeader () string {
- tmpl := g.headerTmpl
- if tmpl == "" {
- tmpl = headerTmpl
+ htmpl := g.headerTmpl
+ if htmpl == "" {
+ htmpl = headerTmpl
}
- t, err := template.New("header").Parse(tmpl)
+ t, err := template.New("header").Parse(htmpl)
+ if err != nil {
+ fmt.Println(err)
+ return ""
+ }
+
+ hrtmpl := g.headerRowTmpl
+ if hrtmpl == "" {
+ hrtmpl = headerRowTmpl
+ }
+
+ tr, err := template.New("headerRow").Parse(hrtmpl)
if err != nil {
fmt.Println(err)
return ""
header := ""
for i, v := range g.cols {
- header += fmt.Sprintf("\t<th>%s</th>\n", v.title)
+ var b bytes.Buffer
+ err = tr.Execute(&b, v)
+
+ header += b.String()
fmt.Println(i, v)
}
ret := "<tr>\n"
for _, c := range g.cols {
- v, ok := m[c.name]
+ v, ok := m[c.Name]
if !ok {
if c.toCall != nil {
v = c.toCall(m)
}
align := ""
- if c.align == 1 {
+ if c.Align == 1 {
align = " align='center'"
- } else if c.align == 2 {
+ } else if c.Align == 2 {
align = " align='right'"
}
g.headerTmpl = "<thead><tr>\n{{ . }}</tr></thead>\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
+ c.Align = 2
g.addColumn(c)
fmt.Println (g)