mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
d772c9f1d4
We have not been good at consistent casing so far. Now we use 'Sentence case' everywhere. EVERYWHERE. Also Removing 'Lc' prefix from i18n field names: the 'Lc' stood for lowercase but now that everything is in 'Sentence case' there's no need for the distinction. I've got a couple lower case things I've kept: namely, things that show up in parentheses.
66 lines
1.6 KiB
Go
66 lines
1.6 KiB
Go
package controllers
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/gui/context"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
type ConfirmationController struct {
|
|
baseController
|
|
c *ControllerCommon
|
|
}
|
|
|
|
var _ types.IController = &ConfirmationController{}
|
|
|
|
func NewConfirmationController(
|
|
common *ControllerCommon,
|
|
) *ConfirmationController {
|
|
return &ConfirmationController{
|
|
baseController: baseController{},
|
|
c: common,
|
|
}
|
|
}
|
|
|
|
func (self *ConfirmationController) GetKeybindings(opts types.KeybindingsOpts) []*types.Binding {
|
|
bindings := []*types.Binding{
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.Confirm),
|
|
Handler: func() error { return self.context().State.OnConfirm() },
|
|
Description: self.c.Tr.Confirm,
|
|
Display: true,
|
|
},
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.Return),
|
|
Handler: func() error { return self.context().State.OnClose() },
|
|
Description: self.c.Tr.CloseCancel,
|
|
Display: true,
|
|
},
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.TogglePanel),
|
|
Handler: func() error {
|
|
if len(self.c.Contexts().Suggestions.State.Suggestions) > 0 {
|
|
return self.c.ReplaceContext(self.c.Contexts().Suggestions)
|
|
}
|
|
return nil
|
|
},
|
|
},
|
|
}
|
|
|
|
return bindings
|
|
}
|
|
|
|
func (self *ConfirmationController) GetOnFocusLost() func(types.OnFocusLostOpts) error {
|
|
return func(types.OnFocusLostOpts) error {
|
|
self.c.Helpers().Confirmation.DeactivateConfirmationPrompt()
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (self *ConfirmationController) Context() types.Context {
|
|
return self.context()
|
|
}
|
|
|
|
func (self *ConfirmationController) context() *context.ConfirmationContext {
|
|
return self.c.Contexts().Confirmation
|
|
}
|