forked from GoAdminGroup/go-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
col.go
36 lines (29 loc) · 758 Bytes
/
col.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package components
import (
"html/template"
"github.com/backyio/go-admin/template/types"
)
type ColAttribute struct {
Name string
Content template.HTML
Size string
types.Attribute
}
func (compo *ColAttribute) SetContent(value template.HTML) types.ColAttribute {
compo.Content = value
return compo
}
func (compo *ColAttribute) AddContent(value template.HTML) types.ColAttribute {
compo.Content += value
return compo
}
func (compo *ColAttribute) SetSize(value types.S) types.ColAttribute {
compo.Size = ""
for key, size := range value {
compo.Size += "col-" + key + "-" + size + " "
}
return compo
}
func (compo *ColAttribute) GetContent() template.HTML {
return ComposeHtml(compo.TemplateList, compo.Separation, *compo, "col")
}