1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-04 10:34:55 +02:00
lazygit/pkg/gui/controllers/suggestions_controller.go

57 lines
1.4 KiB
Go
Raw Normal View History

package controllers
import (
"github.com/jesseduffield/lazygit/pkg/gui/context"
"github.com/jesseduffield/lazygit/pkg/gui/types"
)
type SuggestionsController struct {
baseController
2023-03-23 09:47:29 +02:00
c *ControllerCommon
}
var _ types.IController = &SuggestionsController{}
func NewSuggestionsController(
2023-03-23 09:47:29 +02:00
common *ControllerCommon,
) *SuggestionsController {
return &SuggestionsController{
2023-03-23 09:47:29 +02:00
baseController: baseController{},
c: common,
}
}
func (self *SuggestionsController) GetKeybindings(opts types.KeybindingsOpts) []*types.Binding {
2023-03-21 11:57:52 +02:00
bindings := []*types.Binding{
{
Key: opts.GetKey(opts.Config.Universal.Confirm),
Handler: func() error { return self.context().State.OnConfirm() },
},
{
Key: opts.GetKey(opts.Config.Universal.Return),
Handler: func() error { return self.context().State.OnClose() },
},
{
Key: opts.GetKey(opts.Config.Universal.TogglePanel),
2023-03-23 04:04:57 +02:00
Handler: func() error { return self.c.ReplaceContext(self.c.Contexts().Confirmation) },
2023-03-21 11:57:52 +02:00
},
}
return bindings
}
func (self *SuggestionsController) GetOnFocusLost() func(types.OnFocusLostOpts) error {
return func(types.OnFocusLostOpts) error {
2023-03-23 09:47:29 +02:00
self.c.Helpers().Confirmation.DeactivateConfirmationPrompt()
return nil
}
}
func (self *SuggestionsController) Context() types.Context {
return self.context()
}
func (self *SuggestionsController) context() *context.SuggestionsContext {
2023-03-23 04:04:57 +02:00
return self.c.Contexts().Suggestions
}