2022-12-30 14:24:24 +02:00
|
|
|
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
|
2022-12-30 14:24:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ types.IController = &SuggestionsController{}
|
|
|
|
|
|
|
|
func NewSuggestionsController(
|
2023-03-23 09:47:29 +02:00
|
|
|
common *ControllerCommon,
|
2022-12-30 14:24:24 +02:00
|
|
|
) *SuggestionsController {
|
|
|
|
return &SuggestionsController{
|
2023-03-23 09:47:29 +02:00
|
|
|
baseController: baseController{},
|
|
|
|
c: common,
|
2022-12-30 14:24:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
},
|
|
|
|
}
|
2022-12-30 14:24:24 +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()
|
2022-12-30 14:24:24 +02:00
|
|
|
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
|
2022-12-30 14:24:24 +02:00
|
|
|
}
|