34 lines
850 B
Go
34 lines
850 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Authors of K9s
|
|
|
|
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)
|
|
}
|