summaryrefslogtreecommitdiffstats
path: root/pkg/gui/popup_handler.go
blob: 9cacc3574a80c4881d1ced3aab88194c43cb8d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package gui

import (
	"strings"

	"github.com/jesseduffield/lazygit/pkg/gui/style"
)

type PopupHandler interface {
	Error(message string) error
	Ask(opts askOpts) error
	Prompt(opts promptOpts) error
	Loader(message string) error
}

type RealPopupHandler struct {
	gui *Gui
}

func (self *RealPopupHandler) Error(message string) error {
	gui := self.gui

	coloredMessage := style.FgRed.Sprint(strings.TrimSpace(message))
	if err := gui.refreshSidePanels(refreshOptions{mode: ASYNC}); err != nil {
		return err
	}

	return self.Ask(askOpts{
		title:  gui.Tr.Error,
		prompt: coloredMessage,
	})
}

func (self *RealPopupHandler) Ask(opts askOpts) error {
	gui := self.gui

	return gui.createPopupPanel(createPopupPanelOpts{
		title:               opts.title,
		prompt:              opts.prompt,
		handleConfirm:       opts.handleConfirm,
		handleClose:         opts.handleClose,
		handlersManageFocus: opts.handlersManageFocus,
	})
}

func (self *RealPopupHandler) Prompt(opts promptOpts) error {
	gui := self.gui

	return gui.createPopupPanel(createPopupPanelOpts{
		title:               opts.title,
		prompt:              opts.initialContent,
		editable:            true,
		handleConfirmPrompt: opts.handleConfirm,
		findSuggestionsFunc: opts.findSuggestionsFunc,
	})
}

func (self *RealPopupHandler) Loader(message string) error {
	gui := self.gui

	return gui.createPopupPanel(createPopupPanelOpts{
		prompt:    message,
		hasLoader: true,
	})
}

type TestPopupHandler struct {
	onError  func(message string) error
	onAsk    func(opts askOpts) error
	onPrompt func(opts promptOpts) error
}

func (self *TestPopupHandler) Error(message string) error {
	return self.onError(message)
}

func (self *TestPopupHandler) Ask(opts askOpts) error {
	return self.onAsk(opts)
}

func (self *TestPopupHandler) Prompt(opts promptOpts) error {
	return self.onPrompt(opts)
}

func (self *TestPopupHandler) Loader(message string) error {
	return nil
}