8c6250f0/html_components/item-display.go
2025-02-20 16:48:07 +01:00

39 lines
835 B
Go

package html_components
import "maragu.dev/gomponents"
type ItemDisplayType string
const (
ItemDisplayTypeText ItemDisplayType = "text"
ItemDisplayTypeTextarea ItemDisplayType = "textarea"
ItemDisplayTypeImage ItemDisplayType = "image"
ItemDisplayTypeDateTime ItemDisplayType = "datetime"
)
type ItemDisplayColumn struct {
Label string
Value string
Type ItemDisplayType
CropUrl string
Width int
TimestampParam string
}
type ItemDisplaySubItem struct {
Label string
Url string
}
type ItemDisplay struct {
BackUrl string
Columns []ItemDisplayColumn
ComponentColumns []gomponents.Node
SubItems []ItemDisplaySubItem
EditItemUrl string
DeleteItemUrl string
DeletePushUrl string
HasImages bool
ItemId int
}