File size: 3,144 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
package components
import (
"html/template"
"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/GoAdminGroup/go-admin/modules/menu"
"github.com/GoAdminGroup/go-admin/template/types"
"github.com/GoAdminGroup/go-admin/template/types/form"
)
type Base struct {
Attribute types.Attribute
}
func (b Base) Box() types.BoxAttribute {
return &BoxAttribute{
Name: "box",
Header: template.HTML(""),
Body: template.HTML(""),
Footer: template.HTML(""),
Title: "",
HeadBorder: "",
Attribute: b.Attribute,
}
}
func (b Base) Col() types.ColAttribute {
return &ColAttribute{
Name: "col",
Size: "col-md-2",
Content: "",
Attribute: b.Attribute,
}
}
func (b Base) Form() types.FormAttribute {
return &FormAttribute{
Name: "form",
Content: []types.FormField{},
Url: "/",
Method: "post",
HiddenFields: make(map[string]string),
Layout: form.LayoutDefault,
Title: "edit",
Attribute: b.Attribute,
CdnUrl: config.GetAssetUrl(),
HeadWidth: 2,
InputWidth: 8,
}
}
func (b Base) Image() types.ImgAttribute {
return &ImgAttribute{
Name: "image",
Width: "50",
Height: "50",
Src: "",
Attribute: b.Attribute,
}
}
func (b Base) Tabs() types.TabsAttribute {
return &TabsAttribute{
Name: "tabs",
Attribute: b.Attribute,
}
}
func (b Base) Alert() types.AlertAttribute {
return &AlertAttribute{
Name: "alert",
Attribute: b.Attribute,
}
}
func (b Base) Label() types.LabelAttribute {
return &LabelAttribute{
Name: "label",
Type: "",
Content: "",
Attribute: b.Attribute,
}
}
func (b Base) Link() types.LinkAttribute {
return &LinkAttribute{
Name: "link",
Content: "",
Attribute: b.Attribute,
}
}
func (b Base) Popup() types.PopupAttribute {
return &PopupAttribute{
Name: "popup",
Attribute: b.Attribute,
}
}
func (b Base) Paginator() types.PaginatorAttribute {
return &PaginatorAttribute{
Name: "paginator",
Attribute: b.Attribute,
}
}
func (b Base) Row() types.RowAttribute {
return &RowAttribute{
Name: "row",
Content: "",
Attribute: b.Attribute,
}
}
func (b Base) Button() types.ButtonAttribute {
return &ButtonAttribute{
Name: "button",
Attribute: b.Attribute,
}
}
func (b Base) Table() types.TableAttribute {
return &TableAttribute{
Name: "table",
Thead: make(types.Thead, 0),
InfoList: make([]map[string]types.InfoItem, 0),
Type: "table",
Style: "hover",
Layout: "auto",
Attribute: b.Attribute,
}
}
func (b Base) DataTable() types.DataTableAttribute {
return &DataTableAttribute{
TableAttribute: *(b.Table().
SetStyle("hover").
SetName("data-table").
SetType("data-table").(*TableAttribute)),
Attribute: b.Attribute,
}
}
func (b Base) Tree() types.TreeAttribute {
return &TreeAttribute{
Name: "tree",
Tree: make([]menu.Item, 0),
Attribute: b.Attribute,
}
}
func (b Base) TreeView() types.TreeViewAttribute {
return &TreeViewAttribute{
Name: "treeview",
Attribute: b.Attribute,
}
}
|