2023-01-21 13:38:14 +02:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
2023-05-18 19:15:23 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/context"
|
2023-01-21 13:38:14 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CommitDescriptionController struct {
|
|
|
|
baseController
|
|
|
|
c *ControllerCommon
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ types.IController = &CommitMessageController{}
|
|
|
|
|
|
|
|
func NewCommitDescriptionController(
|
|
|
|
common *ControllerCommon,
|
|
|
|
) *CommitDescriptionController {
|
|
|
|
return &CommitDescriptionController{
|
|
|
|
baseController: baseController{},
|
|
|
|
c: common,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *CommitDescriptionController) GetKeybindings(opts types.KeybindingsOpts) []*types.Binding {
|
|
|
|
bindings := []*types.Binding{
|
|
|
|
{
|
|
|
|
Key: opts.GetKey(opts.Config.Universal.TogglePanel),
|
|
|
|
Handler: self.switchToCommitMessage,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Key: opts.GetKey(opts.Config.Universal.Return),
|
|
|
|
Handler: self.close,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Key: opts.GetKey(opts.Config.Universal.ConfirmInEditor),
|
|
|
|
Handler: self.confirm,
|
|
|
|
},
|
2023-05-18 19:15:23 +02:00
|
|
|
{
|
|
|
|
Key: opts.GetKey(opts.Config.CommitMessage.SwitchToEditor),
|
|
|
|
Handler: self.switchToEditor,
|
|
|
|
},
|
2023-01-21 13:38:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return bindings
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *CommitDescriptionController) Context() types.Context {
|
|
|
|
return self.context()
|
|
|
|
}
|
|
|
|
|
2023-05-18 19:15:23 +02:00
|
|
|
func (self *CommitDescriptionController) context() *context.CommitMessageContext {
|
2023-01-21 13:38:14 +02:00
|
|
|
return self.c.Contexts().CommitMessage
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *CommitDescriptionController) switchToCommitMessage() error {
|
|
|
|
return self.c.PushContext(self.c.Contexts().CommitMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *CommitDescriptionController) close() error {
|
|
|
|
return self.c.Helpers().Commits.CloseCommitMessagePanel()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *CommitDescriptionController) confirm() error {
|
|
|
|
return self.c.Helpers().Commits.HandleCommitConfirm()
|
|
|
|
}
|
2023-05-18 19:15:23 +02:00
|
|
|
|
|
|
|
func (self *CommitDescriptionController) switchToEditor() error {
|
|
|
|
return self.c.Helpers().Commits.SwitchToEditor()
|
|
|
|
}
|