51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package view
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/derailed/k9s/internal"
|
|
"github.com/derailed/k9s/internal/client"
|
|
"github.com/derailed/k9s/internal/render"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/gdamore/tcell/v2"
|
|
)
|
|
|
|
// Group presents a RBAC group viewer.
|
|
type Group struct {
|
|
ResourceViewer
|
|
}
|
|
|
|
// NewGroup returns a new subject viewer.
|
|
func NewGroup(gvr client.GVR) ResourceViewer {
|
|
g := Group{ResourceViewer: NewBrowser(gvr)}
|
|
g.GetTable().SetColorerFn(render.Subject{}.ColorerFunc())
|
|
g.AddBindKeysFn(g.bindKeys)
|
|
g.SetContextFn(g.subjectCtx)
|
|
|
|
return &g
|
|
}
|
|
|
|
func (g *Group) bindKeys(aa ui.KeyActions) {
|
|
aa.Delete(ui.KeyShiftA, ui.KeyShiftP, tcell.KeyCtrlSpace, ui.KeySpace)
|
|
aa.Add(ui.KeyActions{
|
|
tcell.KeyEnter: ui.NewKeyAction("Rules", g.policyCmd, true),
|
|
ui.KeyShiftK: ui.NewKeyAction("Sort Kind", g.GetTable().SortColCmd("KIND", true), false),
|
|
})
|
|
}
|
|
|
|
func (g *Group) subjectCtx(ctx context.Context) context.Context {
|
|
return context.WithValue(ctx, internal.KeySubjectKind, "Group")
|
|
}
|
|
|
|
func (g *Group) policyCmd(evt *tcell.EventKey) *tcell.EventKey {
|
|
path := g.GetTable().GetSelectedItem()
|
|
if path == "" {
|
|
return evt
|
|
}
|
|
if err := g.App().inject(NewPolicy(g.App(), "Group", path)); err != nil {
|
|
g.App().Flash().Err(err)
|
|
}
|
|
|
|
return nil
|
|
}
|