2018-08-28 20:13:01 +02:00
|
|
|
package gui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-08-29 13:43:59 +02:00
|
|
|
|
|
|
|
"github.com/jesseduffield/gocui"
|
2019-10-18 09:48:37 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/theme"
|
2018-09-04 15:25:02 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
2018-08-28 20:13:01 +02:00
|
|
|
)
|
|
|
|
|
2020-02-14 13:07:56 +02:00
|
|
|
type menuItem struct {
|
2020-02-14 13:32:31 +02:00
|
|
|
displayString string
|
2020-02-14 13:07:56 +02:00
|
|
|
displayStrings []string
|
|
|
|
onPress func() error
|
|
|
|
}
|
|
|
|
|
2018-12-06 13:18:17 +02:00
|
|
|
// list panel functions
|
|
|
|
|
2020-08-15 08:53:12 +02:00
|
|
|
func (gui *Gui) handleMenuSelect() error {
|
2020-03-09 02:34:10 +02:00
|
|
|
return nil
|
2018-12-06 13:18:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// specific functions
|
|
|
|
|
2018-12-07 09:52:31 +02:00
|
|
|
func (gui *Gui) renderMenuOptions() error {
|
2018-08-29 13:43:59 +02:00
|
|
|
optionsMap := map[string]string{
|
2020-07-18 11:41:13 +02:00
|
|
|
gui.getKeyDisplay("universal.return"): gui.Tr.SLocalize("close"),
|
2020-01-07 23:26:29 +02:00
|
|
|
fmt.Sprintf("%s %s", gui.getKeyDisplay("universal.prevItem"), gui.getKeyDisplay("universal.nextItem")): gui.Tr.SLocalize("navigate"),
|
|
|
|
gui.getKeyDisplay("universal.select"): gui.Tr.SLocalize("execute"),
|
2018-08-28 20:13:01 +02:00
|
|
|
}
|
2018-12-07 09:52:31 +02:00
|
|
|
return gui.renderOptionsMap(optionsMap)
|
2018-08-28 20:13:01 +02:00
|
|
|
}
|
|
|
|
|
2020-08-17 09:53:50 +02:00
|
|
|
func (gui *Gui) menuConfirmationKeys() []interface{} {
|
|
|
|
return []interface{}{gui.getKey("universal.select"), gui.getKey("universal.confirm"), gui.getKey("universal.confirm-alt1")}
|
|
|
|
}
|
|
|
|
|
2018-09-05 11:12:11 +02:00
|
|
|
func (gui *Gui) handleMenuClose(g *gocui.Gui, v *gocui.View) error {
|
2020-08-17 09:53:50 +02:00
|
|
|
for _, key := range gui.menuConfirmationKeys() {
|
2019-03-03 14:18:28 +02:00
|
|
|
if err := g.DeleteKeybinding("menu", key, gocui.ModNone); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-09-18 13:07:25 +02:00
|
|
|
}
|
2018-09-05 11:12:11 +02:00
|
|
|
err := g.DeleteView("menu")
|
2018-08-29 13:43:59 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-16 05:58:29 +02:00
|
|
|
return gui.returnFromContext()
|
2018-08-28 20:13:01 +02:00
|
|
|
}
|
|
|
|
|
2020-02-14 13:07:56 +02:00
|
|
|
type createMenuOptions struct {
|
|
|
|
showCancel bool
|
|
|
|
}
|
|
|
|
|
2020-02-14 14:39:02 +02:00
|
|
|
func (gui *Gui) createMenu(title string, items []*menuItem, createMenuOptions createMenuOptions) error {
|
2020-02-14 13:07:56 +02:00
|
|
|
if createMenuOptions.showCancel {
|
|
|
|
// this is mutative but I'm okay with that for now
|
|
|
|
items = append(items, &menuItem{
|
|
|
|
displayStrings: []string{gui.Tr.SLocalize("cancel")},
|
|
|
|
onPress: func() error {
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.State.MenuItemCount = len(items)
|
|
|
|
|
|
|
|
stringArrays := make([][]string, len(items))
|
|
|
|
for i, item := range items {
|
2020-02-14 13:32:31 +02:00
|
|
|
if item.displayStrings == nil {
|
|
|
|
stringArrays[i] = []string{item.displayString}
|
|
|
|
} else {
|
|
|
|
stringArrays[i] = item.displayStrings
|
|
|
|
}
|
2020-02-14 13:07:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
list := utils.RenderDisplayStrings(stringArrays)
|
|
|
|
|
2020-08-15 09:23:16 +02:00
|
|
|
x0, y0, x1, y1 := gui.getConfirmationPanelDimensions(false, list)
|
2020-02-14 13:07:56 +02:00
|
|
|
menuView, _ := gui.g.SetView("menu", x0, y0, x1, y1, 0)
|
|
|
|
menuView.Title = title
|
|
|
|
menuView.FgColor = theme.GocuiDefaultTextColor
|
2020-02-24 22:17:49 +02:00
|
|
|
menuView.ContainsList = true
|
2020-02-14 13:07:56 +02:00
|
|
|
menuView.Clear()
|
2020-04-21 11:25:05 +02:00
|
|
|
menuView.SetOnSelectItem(gui.onSelectItemWrapper(func(selectedLine int) error {
|
|
|
|
return nil
|
|
|
|
}))
|
2020-02-14 13:07:56 +02:00
|
|
|
fmt.Fprint(menuView, list)
|
|
|
|
gui.State.Panels.Menu.SelectedLine = 0
|
|
|
|
|
|
|
|
wrappedHandlePress := func(g *gocui.Gui, v *gocui.View) error {
|
|
|
|
selectedLine := gui.State.Panels.Menu.SelectedLine
|
|
|
|
if err := items[selectedLine].onPress(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-16 05:58:29 +02:00
|
|
|
return gui.returnFromContext()
|
2020-02-14 13:07:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gui.State.Panels.Menu.OnPress = wrappedHandlePress
|
|
|
|
|
2020-08-17 09:53:50 +02:00
|
|
|
for _, key := range gui.menuConfirmationKeys() {
|
2020-02-14 13:07:56 +02:00
|
|
|
_ = gui.g.DeleteKeybinding("menu", key, gocui.ModNone)
|
|
|
|
|
|
|
|
if err := gui.g.SetKeybinding("menu", nil, key, gocui.ModNone, wrappedHandlePress); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.g.Update(func(g *gocui.Gui) error {
|
2020-08-16 05:58:29 +02:00
|
|
|
return gui.switchContext(gui.Contexts.Menu.Context)
|
2020-02-14 13:07:56 +02:00
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|