mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
f5c9764dd2
It's tricky to get this right for reflog commits wrt what's the current branch for each one; so just disable it entirely here, it's probably not something anybody needs here.
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
package context
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/presentation"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
type RemoteBranchesContext struct {
|
|
*FilteredListViewModel[*models.RemoteBranch]
|
|
*ListContextTrait
|
|
*DynamicTitleBuilder
|
|
}
|
|
|
|
var (
|
|
_ types.IListContext = (*RemoteBranchesContext)(nil)
|
|
_ types.DiffableContext = (*RemoteBranchesContext)(nil)
|
|
)
|
|
|
|
func NewRemoteBranchesContext(
|
|
c *ContextCommon,
|
|
) *RemoteBranchesContext {
|
|
viewModel := NewFilteredListViewModel(
|
|
func() []*models.RemoteBranch { return c.Model().RemoteBranches },
|
|
func(remoteBranch *models.RemoteBranch) []string {
|
|
return []string{remoteBranch.Name}
|
|
},
|
|
)
|
|
|
|
getDisplayStrings := func(startIdx int, length int) [][]string {
|
|
return presentation.GetRemoteBranchListDisplayStrings(viewModel.GetItems(), c.Modes().Diffing.Ref)
|
|
}
|
|
|
|
return &RemoteBranchesContext{
|
|
FilteredListViewModel: viewModel,
|
|
DynamicTitleBuilder: NewDynamicTitleBuilder(c.Tr.RemoteBranchesDynamicTitle),
|
|
ListContextTrait: &ListContextTrait{
|
|
Context: NewSimpleContext(NewBaseContext(NewBaseContextOpts{
|
|
View: c.Views().RemoteBranches,
|
|
WindowName: "branches",
|
|
Key: REMOTE_BRANCHES_CONTEXT_KEY,
|
|
Kind: types.SIDE_CONTEXT,
|
|
Focusable: true,
|
|
Transient: true,
|
|
})),
|
|
list: viewModel,
|
|
getDisplayStrings: getDisplayStrings,
|
|
c: c,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (self *RemoteBranchesContext) GetSelectedItemId() string {
|
|
item := self.GetSelected()
|
|
if item == nil {
|
|
return ""
|
|
}
|
|
|
|
return item.ID()
|
|
}
|
|
|
|
func (self *RemoteBranchesContext) GetSelectedRef() types.Ref {
|
|
remoteBranch := self.GetSelected()
|
|
if remoteBranch == nil {
|
|
return nil
|
|
}
|
|
return remoteBranch
|
|
}
|
|
|
|
func (self *RemoteBranchesContext) GetDiffTerminals() []string {
|
|
itemId := self.GetSelectedItemId()
|
|
|
|
return []string{itemId}
|
|
}
|
|
|
|
func (self *RemoteBranchesContext) ShowBranchHeadsInSubCommits() bool {
|
|
return true
|
|
}
|