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,
|
|
|
|
|
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{
|
2022-06-13 03:01:26 +02:00
|
|
|
View: view,
|
2022-02-05 08:04:10 +02:00
|
|
|
WindowName: "files",
|
|
|
|
Key: FILES_CONTEXT_KEY,
|
|
|
|
Kind: types.SIDE_CONTEXT,
|
|
|
|
Focusable: true,
|
2023-03-21 12:01:58 +02:00
|
|
|
})),
|
2022-02-05 08:04:10 +02:00
|
|
|
list: viewModel,
|
|
|
|
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 {
|
2022-03-19 00:31:52 +02:00
|
|
|
item := self.GetSelected()
|
2022-01-30 11:03:08 +02:00
|
|
|
if item == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return item.ID()
|
2022-01-30 04:08:09 +02:00
|
|
|
}
|