k9s/internal/ui/modal_list.go

113 lines
3.0 KiB
Go

// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of K9s
package ui
import (
"github.com/derailed/tcell/v2"
"github.com/derailed/tview"
)
type ModalList struct {
*tview.Box
// The list embedded in the modal's frame.
list *tview.List
// The frame embedded in the modal.
frame *tview.Frame
// The optional callback for when the user clicked one of the items. It
// receives the index of the clicked item and the item's text.
done func(int, string)
}
func NewModalList(title string, list *tview.List) *ModalList {
m := &ModalList{Box: tview.NewBox()}
m.list = list
m.list.SetBackgroundColor(tview.Styles.ContrastBackgroundColor).SetBorderPadding(0, 0, 0, 0)
m.list.SetSelectedFunc(func(i int, main string, _ string, _ rune) {
if m.done != nil {
m.done(i, main)
}
})
m.list.SetDoneFunc(func() {
if m.done != nil {
m.done(-1, "")
}
})
m.frame = tview.NewFrame(m.list).SetBorders(0, 0, 1, 0, 0, 0)
m.frame.SetBorder(true).
SetBackgroundColor(tview.Styles.ContrastBackgroundColor).
SetBorderPadding(1, 1, 1, 1)
m.frame.SetTitle(title)
m.frame.SetTitleColor(tcell.ColorAqua)
return m
}
// Draw draws this primitive onto the screen.
func (m *ModalList) Draw(screen tcell.Screen) {
// Calculate the width of this modal.
width := 0
for i := range m.list.GetItemCount() {
main, secondary := m.list.GetItemText(i)
width = max(width, len(main)+len(secondary)+2)
}
screenWidth, screenHeight := screen.Size()
// Set the modal's position and size.
height := m.list.GetItemCount() + 4
width += 2
x := (screenWidth - width) / 2
y := (screenHeight - height) / 2
m.SetRect(x, y, width, height)
// Draw the frame.
m.frame.SetRect(x, y, width, height)
m.frame.Draw(screen)
}
func (m *ModalList) SetDoneFunc(handler func(int, string)) *ModalList {
m.done = handler
return m
}
// Focus is called when this primitive receives focus.
func (m *ModalList) Focus(delegate func(p tview.Primitive)) {
delegate(m.list)
}
// HasFocus returns whether this primitive has focus.
func (m *ModalList) HasFocus() bool {
return m.list.HasFocus()
}
// MouseHandler returns the mouse handler for this primitive.
func (m *ModalList) MouseHandler() func(action tview.MouseAction, event *tcell.EventMouse, setFocus func(p tview.Primitive)) (consumed bool, capture tview.Primitive) {
return m.WrapMouseHandler(func(action tview.MouseAction, event *tcell.EventMouse, setFocus func(p tview.Primitive)) (consumed bool, capture tview.Primitive) {
// Pass mouse events on to the form.
consumed, capture = m.list.MouseHandler()(action, event, setFocus)
if !consumed && action == tview.MouseLeftClick && m.InRect(event.Position()) {
setFocus(m)
consumed = true
}
return
})
}
// InputHandler returns the handler for this primitive.
func (m *ModalList) InputHandler() func(event *tcell.EventKey, setFocus func(p tview.Primitive)) {
return m.WrapInputHandler(func(event *tcell.EventKey, setFocus func(p tview.Primitive)) {
if m.frame.HasFocus() {
if handler := m.frame.InputHandler(); handler != nil {
handler(event, setFocus)
return
}
}
})
}