diff --git a/pkg/commands/loaders/loading_reflog_commits.go b/pkg/commands/loaders/reflog_commits.go similarity index 100% rename from pkg/commands/loaders/loading_reflog_commits.go rename to pkg/commands/loaders/reflog_commits.go diff --git a/pkg/commands/loading_remotes.go b/pkg/commands/loaders/remotes.go similarity index 62% rename from pkg/commands/loading_remotes.go rename to pkg/commands/loaders/remotes.go index 0a581fff5..c0734ab32 100644 --- a/pkg/commands/loading_remotes.go +++ b/pkg/commands/loaders/remotes.go @@ -1,4 +1,4 @@ -package commands +package loaders import ( "fmt" @@ -6,16 +6,37 @@ import ( "sort" "strings" + gogit "github.com/jesseduffield/go-git/v5" "github.com/jesseduffield/lazygit/pkg/commands/models" + "github.com/jesseduffield/lazygit/pkg/commands/oscommands" + "github.com/jesseduffield/lazygit/pkg/common" ) -func (c *GitCommand) GetRemotes() ([]*models.Remote, error) { - remoteBranchesStr, err := c.Cmd.New("git branch -r").RunWithOutput() +type RemoteLoader struct { + *common.Common + cmd oscommands.ICmdObjBuilder + getGoGitRemotes func() ([]*gogit.Remote, error) +} + +func NewRemoteLoader( + common *common.Common, + cmd oscommands.ICmdObjBuilder, + getGoGitRemotes func() ([]*gogit.Remote, error), +) *RemoteLoader { + return &RemoteLoader{ + Common: common, + cmd: cmd, + getGoGitRemotes: getGoGitRemotes, + } +} + +func (self *RemoteLoader) GetRemotes() ([]*models.Remote, error) { + remoteBranchesStr, err := self.cmd.New("git branch -r").RunWithOutput() if err != nil { return nil, err } - goGitRemotes, err := c.Repo.Remotes() + goGitRemotes, err := self.getGoGitRemotes() if err != nil { return nil, err } diff --git a/pkg/gui/remotes_panel.go b/pkg/gui/remotes_panel.go index 1731aacba..999ec1a10 100644 --- a/pkg/gui/remotes_panel.go +++ b/pkg/gui/remotes_panel.go @@ -4,6 +4,7 @@ import ( "fmt" "strings" + "github.com/jesseduffield/lazygit/pkg/commands/loaders" "github.com/jesseduffield/lazygit/pkg/commands/models" "github.com/jesseduffield/lazygit/pkg/gui/style" "github.com/jesseduffield/lazygit/pkg/utils" @@ -40,7 +41,7 @@ func (gui *Gui) remotesRenderToMain() error { func (gui *Gui) refreshRemotes() error { prevSelectedRemote := gui.getSelectedRemote() - remotes, err := gui.GitCommand.GetRemotes() + remotes, err := loaders.NewRemoteLoader(gui.Common, gui.GitCommand.Cmd, gui.GitCommand.Repo.Remotes).GetRemotes() if err != nil { return gui.surfaceError(err) }