summaryrefslogtreecommitdiffstats
path: root/pkg/gui/context/base_context.go
blob: e95b298a41a703b121e11b4172ea6033a67d56e8 (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
package context

import "github.com/jesseduffield/lazygit/pkg/gui/types"

type BaseContext struct {
	Kind            types.ContextKind
	Key             types.ContextKey
	ViewName        string
	WindowName      string
	OnGetOptionsMap func() map[string]string

	*ParentContextMgr
}

func (self *BaseContext) GetOptionsMap() map[string]string {
	if self.OnGetOptionsMap != nil {
		return self.OnGetOptionsMap()
	}
	return nil
}

func (self *BaseContext) SetWindowName(windowName string) {
	self.WindowName = windowName
}

func (self *BaseContext) GetWindowName() string {
	windowName := self.WindowName

	if windowName != "" {
		return windowName
	}

	// TODO: actually set this for everything so we don't default to the view name
	return self.ViewName
}

func (self *BaseContext) GetViewName() string {
	return self.ViewName
}

func (self *BaseContext) GetKind() types.ContextKind {
	return self.Kind
}

func (self *BaseContext) GetKey() types.ContextKey {
	return self.Key
}

type NewBaseContextOpts struct {
	Kind       types.ContextKind
	Key        types.ContextKey
	ViewName   string
	WindowName string

	OnGetOptionsMap func() map[string]string
}

func NewBaseContext(opts NewBaseContextOpts) *BaseContext {
	return &BaseContext{
		Kind:             opts.Kind,
		Key:              opts.Key,
		ViewName:         opts.ViewName,
		WindowName:       opts.WindowName,
		OnGetOptionsMap:  opts.OnGetOptionsMap,
		ParentContextMgr: &ParentContextMgr{},
	}
}