Documentation ¶
Index ¶
- func GenerateComponent(ctx context.Context, details Details, selected types.UID) (*component.ResourceViewer, error)
- type Details
- type Handler
- func (h *Handler) AddEdge(ctx context.Context, from, to *unstructured.Unstructured) error
- func (h *Handler) AdjacencyList() (*component.AdjList, error)
- func (h *Handler) Nodes(ctx context.Context) (component.Nodes, error)
- func (h *Handler) Process(ctx context.Context, object *unstructured.Unstructured) error
- type HandlerObjectStatus
- type HandlerOption
- type ObjectStatus
- type ResourceViewer
- type ViewerOpt
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateComponent ¶
func GenerateComponent(ctx context.Context, details Details, selected types.UID) (*component.ResourceViewer, error)
GenerateComponent generates a resource viewer component given details.
Types ¶
type Details ¶
type Details interface { AdjacencyList() (*component.AdjList, error) Nodes(ctx context.Context) (component.Nodes, error) }
Details generates details for resource viewer.
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler is a visitor handler.
func NewHandler ¶
func NewHandler(dashConfig config.Dash, options ...HandlerOption) (*Handler, error)
NewHandler creates an instance of Handler.
func (*Handler) AddEdge ¶
func (h *Handler) AddEdge(ctx context.Context, from, to *unstructured.Unstructured) error
AddEdge adds edges to the graph.
func (*Handler) Process ¶
func (h *Handler) Process(ctx context.Context, object *unstructured.Unstructured) error
Process adds nodes to the dependency graph.
type HandlerObjectStatus ¶
type HandlerObjectStatus struct {
// contains filtered or unexported fields
}
func NewHandlerObjectStatus ¶
func NewHandlerObjectStatus(objectStore store.Store, pluginManager plugin.ManagerInterface) *HandlerObjectStatus
func (*HandlerObjectStatus) Status ¶
func (h *HandlerObjectStatus) Status(ctx context.Context, object runtime.Object) (*objectstatus.ObjectStatus, error)
type HandlerOption ¶
type HandlerOption func(h *Handler)
HandlerOption is an option for configuring Handler.
func SetHandlerObjectStatus ¶
func SetHandlerObjectStatus(objectStatus ObjectStatus) HandlerOption
SetHandlerObjectStatus configures handler to use a custom object status generator.
type ObjectStatus ¶
type ObjectStatus interface {
Status(ctx context.Context, object runtime.Object) (*objectstatus.ObjectStatus, error)
}
type ResourceViewer ¶
type ResourceViewer struct {
// contains filtered or unexported fields
}
ResourceViewer visits an object and creates a view component.
Click to show internal directories.
Click to hide internal directories.