File size: 920 Bytes
530729e |
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 37 38 39 40 41 42 43 44 |
package components
import (
"html/template"
"github.com/GoAdminGroup/go-admin/plugins/admin/modules"
"github.com/GoAdminGroup/go-admin/template/types"
)
type ImgAttribute struct {
Name string
Width string
Height string
Uuid string
HasModal bool
Src template.URL
types.Attribute
}
func (compo *ImgAttribute) SetWidth(value string) types.ImgAttribute {
compo.Width = value
return compo
}
func (compo *ImgAttribute) SetHeight(value string) types.ImgAttribute {
compo.Height = value
return compo
}
func (compo *ImgAttribute) WithModal() types.ImgAttribute {
compo.HasModal = true
compo.Uuid = modules.Uuid()
return compo
}
func (compo *ImgAttribute) SetSrc(value template.HTML) types.ImgAttribute {
compo.Src = template.URL(value)
return compo
}
func (compo *ImgAttribute) GetContent() template.HTML {
return ComposeHtml(compo.TemplateList, compo.Separation, *compo, "image")
}
|