mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package popup
|
|
|
|
import "github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
|
|
type FakePopupHandler struct {
|
|
OnErrorMsg func(message string) error
|
|
OnConfirm func(opts types.ConfirmOpts) error
|
|
OnPrompt func(opts types.PromptOpts) error
|
|
}
|
|
|
|
var _ types.IPopupHandler = &FakePopupHandler{}
|
|
|
|
func (self *FakePopupHandler) Error(err error) error {
|
|
return self.ErrorMsg(err.Error())
|
|
}
|
|
|
|
func (self *FakePopupHandler) ErrorMsg(message string) error {
|
|
return self.OnErrorMsg(message)
|
|
}
|
|
|
|
func (self *FakePopupHandler) Alert(title string, message string) error {
|
|
panic("not yet implemented")
|
|
}
|
|
|
|
func (self *FakePopupHandler) Confirm(opts types.ConfirmOpts) error {
|
|
return self.OnConfirm(opts)
|
|
}
|
|
|
|
func (self *FakePopupHandler) Prompt(opts types.PromptOpts) error {
|
|
return self.OnPrompt(opts)
|
|
}
|
|
|
|
func (self *FakePopupHandler) WithLoaderPanel(message string, f func() error) error {
|
|
return f()
|
|
}
|
|
|
|
func (self *FakePopupHandler) WithWaitingStatus(message string, f func() error) error {
|
|
return f()
|
|
}
|
|
|
|
func (self *FakePopupHandler) Menu(opts types.CreateMenuOptions) error {
|
|
panic("not yet implemented")
|
|
}
|
|
|
|
func (self *FakePopupHandler) Toast(message string) {
|
|
panic("not yet implemented")
|
|
}
|
|
|
|
func (self *FakePopupHandler) GetPromptInput() string {
|
|
panic("not yet implemented")
|
|
}
|