mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 09:05:39 +00:00
82 lines
2.2 KiB
Go
82 lines
2.2 KiB
Go
package api
|
|
|
|
import (
|
|
apiv1 "github.com/OliveTin/OliveTin/gen/olivetin/api/v1"
|
|
config "github.com/OliveTin/OliveTin/internal/config"
|
|
entities "github.com/OliveTin/OliveTin/internal/entities"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func buildEntityFieldsets(entityTitle string, tpl *config.DashboardComponent, rr *DashboardRenderRequest) []*apiv1.DashboardComponent {
|
|
ret := make([]*apiv1.DashboardComponent, 0)
|
|
|
|
entities := entities.GetEntityInstances(entityTitle)
|
|
|
|
for _, ent := range entities {
|
|
fs := buildEntityFieldset(tpl, ent, rr)
|
|
|
|
if len(fs.Contents) > 0 {
|
|
ret = append(ret, fs)
|
|
}
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
func buildEntityFieldset(tpl *config.DashboardComponent, ent *entities.Entity, rr *DashboardRenderRequest) *apiv1.DashboardComponent {
|
|
return &apiv1.DashboardComponent{
|
|
Title: entities.ParseTemplateWith(tpl.Title, ent),
|
|
Type: "fieldset",
|
|
Contents: removeFieldsetIfHasNoLinks(buildEntityFieldsetContents(tpl.Contents, ent, rr)),
|
|
CssClass: entities.ParseTemplateWith(tpl.CssClass, ent),
|
|
Action: rr.findAction(tpl.Title),
|
|
}
|
|
}
|
|
|
|
func removeFieldsetIfHasNoLinks(contents []*apiv1.DashboardComponent) []*apiv1.DashboardComponent {
|
|
return contents
|
|
/*
|
|
for _, subitem := range contents {
|
|
if subitem.Type == "link" {
|
|
return contents
|
|
}
|
|
}
|
|
|
|
log.Infof("removeFieldsetIfHasNoLinks: %+v", contents)
|
|
|
|
return nil
|
|
*/
|
|
}
|
|
|
|
func buildEntityFieldsetContents(contents []*config.DashboardComponent, ent *entities.Entity, rr *DashboardRenderRequest) []*apiv1.DashboardComponent {
|
|
ret := make([]*apiv1.DashboardComponent, 0)
|
|
|
|
for _, subitem := range contents {
|
|
c := cloneItem(subitem, ent, rr)
|
|
|
|
log.Infof("cloneItem: %+v", c)
|
|
|
|
if c != nil {
|
|
ret = append(ret, c)
|
|
}
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
func cloneItem(subitem *config.DashboardComponent, ent *entities.Entity, rr *DashboardRenderRequest) *apiv1.DashboardComponent {
|
|
clone := &apiv1.DashboardComponent{}
|
|
clone.CssClass = entities.ParseTemplateWith(subitem.CssClass, ent)
|
|
|
|
if subitem.Type == "" || subitem.Type == "link" {
|
|
clone.Type = "link"
|
|
clone.Title = entities.ParseTemplateWith(subitem.Title, ent)
|
|
clone.Action = rr.findAction(subitem.Title)
|
|
} else {
|
|
clone.Title = entities.ParseTemplateWith(subitem.Title, ent)
|
|
clone.Type = subitem.Type
|
|
}
|
|
|
|
return clone
|
|
}
|