31 lines
782 B
Go
31 lines
782 B
Go
package dialog
|
|
|
|
import (
|
|
"github.com/derailed/k9s/internal/config"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/derailed/tview"
|
|
)
|
|
|
|
type SelectAction func(index int)
|
|
|
|
func ShowSelection(styles config.Dialog, pages *ui.Pages, title string, options []string, action SelectAction) {
|
|
list := tview.NewList()
|
|
list.ShowSecondaryText(false)
|
|
list.SetSelectedTextColor(styles.ButtonFocusFgColor.Color())
|
|
list.SetSelectedBackgroundColor(styles.ButtonFocusBgColor.Color())
|
|
|
|
for _, option := range options {
|
|
list.AddItem(option, "", 0, nil)
|
|
list.AddItem(option, "", 0, nil)
|
|
}
|
|
|
|
modal := ui.NewModalList("<"+title+">", list)
|
|
modal.SetDoneFunc(func(i int, s string) {
|
|
dismiss(pages)
|
|
action(i)
|
|
})
|
|
|
|
pages.AddPage(dialogKey, modal, false, false)
|
|
pages.ShowPage(dialogKey)
|
|
}
|