2022-02-05 08:04:10 +02:00
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/gocui"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type RemoteBranchesContext struct {
|
2022-03-19 00:31:52 +02:00
|
|
|
*BasicViewModel[*models.RemoteBranch]
|
2022-02-05 08:04:10 +02:00
|
|
|
*ListContextTrait
|
2022-03-26 05:44:30 +02:00
|
|
|
*DynamicTitleBuilder
|
2022-02-05 08:04:10 +02:00
|
|
|
}
|
|
|
|
|
2022-12-30 14:24:24 +02:00
|
|
|
var (
|
|
|
|
_ types.IListContext = (*RemoteBranchesContext)(nil)
|
|
|
|
_ types.DiffableContext = (*RemoteBranchesContext)(nil)
|
|
|
|
)
|
2022-02-05 08:04:10 +02:00
|
|
|
|
|
|
|
func NewRemoteBranchesContext(
|
|
|
|
getModel func() []*models.RemoteBranch,
|
|
|
|
view *gocui.View,
|
|
|
|
getDisplayStrings func(startIdx int, length int) [][]string,
|
|
|
|
|
2022-02-06 06:54:26 +02:00
|
|
|
c *types.HelperCommon,
|
2022-02-05 08:04:10 +02:00
|
|
|
) *RemoteBranchesContext {
|
2022-03-19 00:31:52 +02:00
|
|
|
viewModel := NewBasicViewModel(getModel)
|
2022-02-05 08:04:10 +02:00
|
|
|
|
|
|
|
return &RemoteBranchesContext{
|
2022-03-26 05:44:30 +02:00
|
|
|
BasicViewModel: viewModel,
|
|
|
|
DynamicTitleBuilder: NewDynamicTitleBuilder(c.Tr.RemoteBranchesDynamicTitle),
|
2022-02-05 08:04:10 +02:00
|
|
|
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: "branches",
|
|
|
|
Key: REMOTE_BRANCHES_CONTEXT_KEY,
|
|
|
|
Kind: types.SIDE_CONTEXT,
|
|
|
|
Focusable: true,
|
2022-03-26 05:44:30 +02:00
|
|
|
Transient: true,
|
2023-03-21 12:01:58 +02:00
|
|
|
})),
|
2022-02-05 08:04:10 +02:00
|
|
|
list: viewModel,
|
|
|
|
getDisplayStrings: getDisplayStrings,
|
|
|
|
c: c,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *RemoteBranchesContext) GetSelectedItemId() string {
|
|
|
|
item := self.GetSelected()
|
|
|
|
if item == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return item.ID()
|
|
|
|
}
|
|
|
|
|
2022-03-26 15:18:08 +02:00
|
|
|
func (self *RemoteBranchesContext) GetSelectedRef() types.Ref {
|
2022-05-05 14:41:44 +02:00
|
|
|
remoteBranch := self.GetSelected()
|
|
|
|
if remoteBranch == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return remoteBranch
|
2022-03-26 05:44:30 +02:00
|
|
|
}
|
2022-12-30 14:24:24 +02:00
|
|
|
|
|
|
|
func (self *RemoteBranchesContext) GetDiffTerminals() []string {
|
|
|
|
itemId := self.GetSelectedItemId()
|
|
|
|
|
|
|
|
return []string{itemId}
|
|
|
|
}
|