1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/options_menu_panel.go

83 lines
2.4 KiB
Go
Raw Normal View History

2018-09-18 13:07:25 +02:00
package gui
import (
"log"
2018-09-18 13:07:25 +02:00
2022-03-19 10:12:58 +02:00
"github.com/jesseduffield/generics/slices"
"github.com/jesseduffield/lazygit/pkg/gui/keybindings"
2022-01-28 11:44:36 +02:00
"github.com/jesseduffield/lazygit/pkg/gui/types"
2022-03-19 03:26:30 +02:00
"github.com/samber/lo"
2018-09-18 13:07:25 +02:00
)
2022-02-05 05:42:56 +02:00
func (gui *Gui) getBindings(context types.Context) []*types.Binding {
2022-03-19 00:38:49 +02:00
var bindingsGlobal, bindingsPanel, bindingsNavigation []*types.Binding
2018-09-18 13:07:25 +02:00
2022-02-05 05:42:56 +02:00
bindings, _ := gui.GetInitialKeybindings()
customBindings, err := gui.CustomCommandsClient.GetCustomCommandKeybindings()
if err != nil {
log.Fatal(err)
}
bindings = append(customBindings, bindings...)
2018-09-18 13:07:25 +02:00
for _, binding := range bindings {
if keybindings.LabelFromKey(binding.Key) != "" && binding.Description != "" {
if binding.ViewName == "" {
2018-09-18 13:07:25 +02:00
bindingsGlobal = append(bindingsGlobal, binding)
2022-02-27 07:46:27 +02:00
} else if binding.Tag == "navigation" {
bindingsNavigation = append(bindingsNavigation, binding)
} else if binding.ViewName == context.GetViewName() {
2022-02-05 05:42:56 +02:00
bindingsPanel = append(bindingsPanel, binding)
2018-09-18 13:07:25 +02:00
}
}
}
2022-02-27 07:46:27 +02:00
resultBindings := []*types.Binding{}
resultBindings = append(resultBindings, uniqueBindings(bindingsPanel)...)
// adding a separator between the panel-specific bindings and the other bindings
resultBindings = append(resultBindings, &types.Binding{})
resultBindings = append(resultBindings, uniqueBindings(bindingsGlobal)...)
resultBindings = append(resultBindings, uniqueBindings(bindingsNavigation)...)
return resultBindings
}
// We shouldn't really need to do this. We should define alternative keys for the same
// handler in the keybinding struct.
func uniqueBindings(bindings []*types.Binding) []*types.Binding {
2022-03-19 03:26:30 +02:00
return lo.UniqBy(bindings, func(binding *types.Binding) string {
return binding.Description
})
2018-09-18 13:07:25 +02:00
}
func (gui *Gui) handleCreateOptionsMenu() error {
ctx := gui.currentContext()
// Don't show menu while displaying popup.
if ctx.GetKind() == types.PERSISTENT_POPUP || ctx.GetKind() == types.TEMPORARY_POPUP {
return nil
}
bindings := gui.getBindings(ctx)
2018-09-18 13:07:25 +02:00
2022-03-19 10:12:58 +02:00
menuItems := slices.Map(bindings, func(binding *types.Binding) *types.MenuItem {
return &types.MenuItem{
OpensMenu: binding.OpensMenu,
Label: binding.Description,
2022-01-28 11:44:36 +02:00
OnPress: func() error {
2022-10-15 15:17:00 +02:00
if binding.Handler == nil {
2020-02-14 13:32:31 +02:00
return nil
}
2022-03-26 06:34:15 +02:00
return binding.Handler()
2020-02-14 13:32:31 +02:00
},
Key: binding.Key,
Tooltip: binding.Tooltip,
2018-09-18 13:07:25 +02:00
}
2022-03-19 10:12:58 +02:00
})
2018-09-18 13:07:25 +02:00
2022-01-29 10:09:20 +02:00
return gui.c.Menu(types.CreateMenuOptions{
2022-05-18 13:33:35 +02:00
Title: gui.c.Tr.MenuTitle,
2022-01-28 11:44:36 +02:00
Items: menuItems,
HideCancel: true,
})
2018-09-18 13:07:25 +02:00
}