2022-01-30 07:38:07 +02:00
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
2023-03-23 03:02:03 +02:00
|
|
|
"github.com/jesseduffield/generics/slices"
|
2022-01-30 07:38:07 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/filetree"
|
2023-03-23 03:02:03 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/presentation"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/style"
|
2022-01-30 07:38:07 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CommitFilesContext struct {
|
|
|
|
*filetree.CommitFileTreeViewModel
|
|
|
|
*ListContextTrait
|
2022-03-26 05:44:30 +02:00
|
|
|
*DynamicTitleBuilder
|
2023-06-26 03:15:47 +02:00
|
|
|
*SearchTrait
|
2022-01-30 07:38:07 +02:00
|
|
|
}
|
|
|
|
|
2022-12-30 14:24:24 +02:00
|
|
|
var (
|
|
|
|
_ types.IListContext = (*CommitFilesContext)(nil)
|
|
|
|
_ types.DiffableContext = (*CommitFilesContext)(nil)
|
|
|
|
)
|
2022-01-30 07:38:07 +02:00
|
|
|
|
2023-03-23 03:35:07 +02:00
|
|
|
func NewCommitFilesContext(c *ContextCommon) *CommitFilesContext {
|
2023-05-27 11:58:48 +02:00
|
|
|
viewModel := filetree.NewCommitFileTreeViewModel(
|
2023-06-26 03:15:47 +02:00
|
|
|
func() []*models.CommitFile { return c.Model().CommitFiles },
|
2023-03-21 12:16:30 +02:00
|
|
|
c.Log,
|
|
|
|
c.UserConfig.Gui.ShowFileTree,
|
|
|
|
)
|
2022-01-30 07:38:07 +02:00
|
|
|
|
2023-03-23 03:02:03 +02:00
|
|
|
getDisplayStrings := func(startIdx int, length int) [][]string {
|
|
|
|
if viewModel.Len() == 0 {
|
|
|
|
return [][]string{{style.FgRed.Sprint("(none)")}}
|
|
|
|
}
|
|
|
|
|
|
|
|
lines := presentation.RenderCommitFileTree(viewModel, c.Modes().Diffing.Ref, c.Git().Patch.PatchBuilder)
|
|
|
|
return slices.Map(lines, func(line string) []string {
|
|
|
|
return []string{line}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-06-26 03:15:47 +02:00
|
|
|
ctx := &CommitFilesContext{
|
2022-02-05 08:04:10 +02:00
|
|
|
CommitFileTreeViewModel: viewModel,
|
2022-03-26 05:44:30 +02:00
|
|
|
DynamicTitleBuilder: NewDynamicTitleBuilder(c.Tr.CommitFilesDynamicTitle),
|
2023-06-26 03:15:47 +02:00
|
|
|
SearchTrait: NewSearchTrait(c),
|
2022-02-05 08:04:10 +02:00
|
|
|
ListContextTrait: &ListContextTrait{
|
|
|
|
Context: NewSimpleContext(
|
|
|
|
NewBaseContext(NewBaseContextOpts{
|
2023-03-21 12:06:39 +02:00
|
|
|
View: c.Views().CommitFiles,
|
2022-02-05 08:04:10 +02:00
|
|
|
WindowName: "commits",
|
|
|
|
Key: COMMIT_FILES_CONTEXT_KEY,
|
|
|
|
Kind: types.SIDE_CONTEXT,
|
|
|
|
Focusable: true,
|
2022-03-24 13:07:30 +02:00
|
|
|
Transient: true,
|
2022-02-05 08:04:10 +02:00
|
|
|
}),
|
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 07:38:07 +02:00
|
|
|
}
|
2023-06-26 03:15:47 +02:00
|
|
|
|
|
|
|
ctx.GetView().SetOnSelectItem(ctx.SearchTrait.onSelectItemWrapper(func(selectedLineIdx int) error {
|
|
|
|
ctx.GetList().SetSelectedLineIdx(selectedLineIdx)
|
|
|
|
return ctx.HandleFocus(types.OnFocusOpts{})
|
|
|
|
}))
|
|
|
|
|
|
|
|
return ctx
|
2022-01-30 07:38:07 +02:00
|
|
|
}
|
|
|
|
|
2022-01-30 11:03:08 +02:00
|
|
|
func (self *CommitFilesContext) 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 07:38:07 +02:00
|
|
|
}
|
2022-12-30 14:24:24 +02:00
|
|
|
|
|
|
|
func (self *CommitFilesContext) GetDiffTerminals() []string {
|
|
|
|
return []string{self.GetRef().RefName()}
|
|
|
|
}
|