summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/helpers/view_helper.go
blob: c8d9ad94e2ba678623d08d7e76b99edc1944e1d4 (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
package helpers

import (
	"github.com/jesseduffield/lazygit/pkg/gui/context"
	"github.com/jesseduffield/lazygit/pkg/gui/types"
)

type ViewHelper struct {
	c *HelperCommon
}

func NewViewHelper(c *HelperCommon, contexts *context.ContextTree) *ViewHelper {
	return &ViewHelper{
		c: c,
	}
}

func (self *ViewHelper) ContextForView(viewName string) (types.Context, bool) {
	view, err := self.c.GocuiGui().View(viewName)
	if err != nil {
		return nil, false
	}

	for _, context := range self.c.Contexts().Flatten() {
		if context.GetViewName() == view.Name() {
			return context, true
		}
	}

	return nil, false
}