2024-10-14 13:13:51 -04:00
|
|
|
package components
|
|
|
|
|
|
|
|
type ContentTable struct {
|
2024-10-15 17:09:17 -04:00
|
|
|
ID string
|
|
|
|
TableClass string // table-primary, table-secondary,.. table-striped table-bordered
|
|
|
|
HeadClass string // table-dark table-light
|
|
|
|
AllTH []ContentTableTH
|
|
|
|
AllTD [][]ContentTableTD
|
2024-10-14 13:13:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type ContentTableTH struct {
|
2024-10-15 17:09:17 -04:00
|
|
|
ID string
|
|
|
|
ValueType string // -> default string, href, badge
|
|
|
|
Value string
|
2024-10-14 13:13:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type ContentTableTD struct {
|
|
|
|
ID string
|
2024-10-15 17:09:17 -04:00
|
|
|
Value interface{} // string or component struct according ValueType
|
2024-10-14 13:13:51 -04:00
|
|
|
}
|