d2/d2graph/grid_diagram.go

17 lines
361 B
Go
Raw Normal View History

2023-04-01 00:18:17 +00:00
package d2graph
2023-04-05 18:11:31 +00:00
func (obj *Object) IsGridDiagram() bool {
return obj != nil && obj.Attributes != nil &&
2023-04-01 00:18:17 +00:00
(obj.Attributes.Rows != nil || obj.Attributes.Columns != nil)
}
2023-04-05 00:44:05 +00:00
2023-04-05 18:11:31 +00:00
func (obj *Object) ClosestGridDiagram() *Object {
2023-04-05 00:44:05 +00:00
if obj.Parent == nil {
return nil
}
2023-04-05 18:11:31 +00:00
if obj.Parent.IsGridDiagram() {
2023-04-05 00:44:05 +00:00
return obj.Parent
}
2023-04-05 18:11:31 +00:00
return obj.Parent.ClosestGridDiagram()
2023-04-05 00:44:05 +00:00
}