mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-10 11:10:18 +02:00
68 lines
1.6 KiB
Go
68 lines
1.6 KiB
Go
package context
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
type RemoteBranchesContext struct {
|
|
*BasicViewModel[*models.RemoteBranch]
|
|
*ListContextTrait
|
|
*DynamicTitleBuilder
|
|
}
|
|
|
|
var (
|
|
_ types.IListContext = (*RemoteBranchesContext)(nil)
|
|
_ types.DiffableContext = (*RemoteBranchesContext)(nil)
|
|
)
|
|
|
|
func NewRemoteBranchesContext(
|
|
getModel func() []*models.RemoteBranch,
|
|
getDisplayStrings func(startIdx int, length int) [][]string,
|
|
|
|
c *types.HelperCommon,
|
|
) *RemoteBranchesContext {
|
|
viewModel := NewBasicViewModel(getModel)
|
|
|
|
return &RemoteBranchesContext{
|
|
BasicViewModel: 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}
|
|
}
|