k9s/internal/view/page_stack.go

57 lines
1015 B
Go

// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of K9s
package view
import (
"context"
"github.com/derailed/k9s/internal/model"
"github.com/derailed/k9s/internal/ui"
)
// PageStack represents a stack of pages.
type PageStack struct {
*ui.Pages
app *App
}
// NewPageStack returns a new page stack.
func NewPageStack() *PageStack {
return &PageStack{
Pages: ui.NewPages(),
}
}
// Init initializes the view.
func (p *PageStack) Init(ctx context.Context) (err error) {
if p.app, err = extractApp(ctx); err != nil {
return err
}
p.AddListener(p)
return nil
}
// StackPushed notifies a new page was added.
func (p *PageStack) StackPushed(c model.Component) {
c.Start()
p.app.SetFocus(c)
}
// StackPopped notifies a page was removed.
func (p *PageStack) StackPopped(o, top model.Component) {
o.Stop()
p.StackTop(top)
}
// StackTop notifies for the top component.
func (p *PageStack) StackTop(top model.Component) {
if top == nil {
return
}
top.Start()
p.app.SetFocus(top)
}