mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-10 11:10:18 +02:00
31 lines
769 B
Go
31 lines
769 B
Go
package gui
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/gui/context"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
func (gui *Gui) contextTree() *context.ContextTree {
|
|
contextCommon := &context.ContextCommon{
|
|
IGuiCommon: gui.c.IGuiCommon,
|
|
Common: gui.c.Common,
|
|
}
|
|
return context.NewContextTree(contextCommon)
|
|
}
|
|
|
|
// using this wrapper for when an onFocus function doesn't care about any potential
|
|
// props that could be passed
|
|
func OnFocusWrapper(f func() error) func(opts types.OnFocusOpts) error {
|
|
return func(opts types.OnFocusOpts) error {
|
|
return f()
|
|
}
|
|
}
|
|
|
|
func (gui *Gui) defaultSideContext() types.Context {
|
|
if gui.State.Modes.Filtering.Active() {
|
|
return gui.State.Contexts.LocalCommits
|
|
} else {
|
|
return gui.State.Contexts.Files
|
|
}
|
|
}
|