1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/context/working_tree_context.go

60 lines
1.5 KiB
Go
Raw Normal View History

2022-01-30 04:08:09 +02:00
package context
import (
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands/models"
"github.com/jesseduffield/lazygit/pkg/gui/filetree"
"github.com/jesseduffield/lazygit/pkg/gui/types"
)
type WorkingTreeContext struct {
*filetree.FileTreeViewModel
2022-01-30 04:08:09 +02:00
*ListContextTrait
}
var _ types.IListContext = (*WorkingTreeContext)(nil)
func NewWorkingTreeContext(
getModel func() []*models.File,
2022-02-05 08:04:10 +02:00
view *gocui.View,
2022-01-30 04:08:09 +02:00
getDisplayStrings func(startIdx int, length int) [][]string,
onFocus func(...types.OnFocusOpts) error,
onRenderToMain func(...types.OnFocusOpts) error,
onFocusLost func() error,
2022-02-06 06:54:26 +02:00
c *types.HelperCommon,
2022-01-30 04:08:09 +02:00
) *WorkingTreeContext {
viewModel := filetree.NewFileTreeViewModel(getModel, c.Log, c.UserConfig.Gui.ShowFileTree)
2022-01-30 04:08:09 +02:00
2022-02-05 08:04:10 +02:00
return &WorkingTreeContext{
FileTreeViewModel: viewModel,
ListContextTrait: &ListContextTrait{
Context: NewSimpleContext(NewBaseContext(NewBaseContextOpts{
ViewName: "files",
WindowName: "files",
Key: FILES_CONTEXT_KEY,
Kind: types.SIDE_CONTEXT,
Focusable: true,
}), ContextCallbackOpts{
OnFocus: onFocus,
OnFocusLost: onFocusLost,
OnRenderToMain: onRenderToMain,
}),
list: viewModel,
viewTrait: NewViewTrait(view),
getDisplayStrings: getDisplayStrings,
c: c,
},
2022-01-30 04:08:09 +02:00
}
}
2022-01-30 11:03:08 +02:00
func (self *WorkingTreeContext) GetSelectedItemId() string {
item := self.GetSelectedFileNode()
if item == nil {
return ""
}
return item.ID()
2022-01-30 04:08:09 +02:00
}