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 {
|
2022-01-30 05:46:46 +02:00
|
|
|
*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 {
|
2022-01-30 05:46:46 +02:00
|
|
|
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
|
|
|
}
|