summaryrefslogtreecommitdiffstats
path: root/pkg/gui
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-01-11 14:54:59 +1100
committerJesse Duffield <jessedduffield@gmail.com>2020-01-12 11:17:20 +1100
commit23bcc191802eb1442f8edd0123051769ea9e978b (patch)
treee4786eed94218f41baea5a689f2a76dd9549463c /pkg/gui
parent282f08df36eb2939d1a1caf12457680b38089e0a (diff)
allow fast flicking through any list panel
Up till now our approach to rendering things like file diffs, branch logs, and commit patches, has been to run a command on the command line, wait for it to complete, take its output as a string, and then write that string to the main view (or secondary view e.g. when showing both staged and unstaged changes of a file). This has caused various issues. For once, if you are flicking through a list of files and an untracked file is particularly large, not only will this require lazygit to load that whole file into memory (or more accurately it's equally large diff), it also will slow down the UI thread while loading that file, and if the user continued down the list, the original command might eventually resolve and replace whatever the diff is for the newly selected file. Following what we've done in lazydocker, I've added a tasks package for when you need something done but you want it to cancel as soon as something newer comes up. Given this typically involves running a command to display to a view, I've added a viewBufferManagerMap struct to the Gui struct which allows you to define these tasks on a per-view basis. viewBufferManagers can run files and directly write the output to their view, meaning we no longer need to use so much memory. In the tasks package there is a helper method called NewCmdTask which takes a command, an initial amount of lines to read, and then runs that command, reads that number of lines, and allows for a readLines channel to tell it to read more lines. We read more lines when we scroll or resize the window. There is an adapter for the tasks package in a file called tasks_adapter which wraps the functions from the tasks package in gui-specific stuff like clearing the main view before starting the next task that wants to write to the main view. I've removed some small features as part of this work, namely the little headers that were at the top of the main view for some situations. For example, we no longer show the upstream of a selected branch. I want to re-introduce this in the future, but I didn't want to make this tasks system too complicated, and in order to facilitate a header section in the main view we'd need to have a task that gets the upstream for the current branch, writes it to the header, then tells another task to write the branch log to the main view, but without clearing inbetween. So it would get messy. I'm thinking instead of having a separate 'header' view atop the main view to render that kind of thing (which can happen in another PR) I've also simplified the 'git show' to just call 'git show' and not do anything fancy when it comes to merge commits. I considered using this tasks approach whenever we write to a view. The only thing is that the renderString method currently resets the origin of a view and I don't want to lose that. So I've left some in there that I consider harmless, but we should probably be just using tasks now for all rendering, even if it's just strings we can instantly make.
Diffstat (limited to 'pkg/gui')
-rw-r--r--pkg/gui/branches_panel.go54
-rw-r--r--pkg/gui/commit_files_panel.go12
-rw-r--r--pkg/gui/commits_panel.go17
-rw-r--r--pkg/gui/files_panel.go43
-rw-r--r--pkg/gui/gui.go80
-rw-r--r--pkg/gui/merge_panel.go2
-rw-r--r--pkg/gui/reflog_panel.go13
-rw-r--r--pkg/gui/remote_branches_panel.go20
-rw-r--r--pkg/gui/remotes_panel.go4
-rw-r--r--pkg/gui/stash_panel.go15
-rw-r--r--pkg/gui/status_panel.go2
-rw-r--r--pkg/gui/tags_panel.go23
-rw-r--r--pkg/gui/tasks_adapter.go78
13 files changed, 240 insertions, 123 deletions
diff --git a/pkg/gui/branches_panel.go b/pkg/gui/branches_panel.go
index 1bf408026..ff77c9cb4 100644
--- a/pkg/gui/branches_panel.go
+++ b/pkg/gui/branches_panel.go
@@ -4,7 +4,6 @@ import (
"fmt"
"strings"
- "github.com/fatih/color"
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands"
"github.com/jesseduffield/lazygit/pkg/utils"
@@ -37,40 +36,45 @@ func (gui *Gui) handleBranchSelect(g *gocui.Gui, v *gocui.View) error {
// This really shouldn't happen: there should always be a master branch
if len(gui.State.Branches) == 0 {
- return gui.renderString(g, "main", gui.Tr.SLocalize("NoBranchesThisRepo"))
+ return gui.newStringTask("main", gui.Tr.SLocalize("NoBranchesThisRepo"))
}
branch := gui.getSelectedBranch()
if err := gui.focusPoint(0, gui.State.Panels.Branches.SelectedLine, len(gui.State.Branches), v); err != nil {
return err
}
- go func() {
- _ = gui.RenderSelectedBranchUpstreamDifferences()
- }()
- go func() {
- upstream, _ := gui.GitCommand.GetUpstreamForBranch(branch.Name)
- if strings.Contains(upstream, "no upstream configured for branch") || strings.Contains(upstream, "unknown revision or path not in the working tree") {
- upstream = gui.Tr.SLocalize("notTrackingRemote")
- }
- graph, err := gui.GitCommand.GetBranchGraph(branch.Name)
- if err != nil && strings.HasPrefix(graph, "fatal: ambiguous argument") {
- graph = gui.Tr.SLocalize("NoTrackingThisBranch")
- }
- _ = gui.renderString(g, "main", fmt.Sprintf("%s → %s\n\n%s", utils.ColoredString(branch.Name, color.FgGreen), utils.ColoredString(upstream, color.FgRed), graph))
- }()
+ if err := gui.RenderSelectedBranchUpstreamDifferences(); err != nil {
+ return err
+ }
+
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.GetBranchGraphCmdStr(branch.Name),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
+ }
return nil
}
func (gui *Gui) RenderSelectedBranchUpstreamDifferences() error {
- // here we tell the selected branch that it is selected.
- // this is necessary for showing stats on a branch that is selected, because
- // the displaystring function doesn't have access to gui state to tell if it's selected
- for i, branch := range gui.State.Branches {
- branch.Selected = i == gui.State.Panels.Branches.SelectedLine
- }
+ return gui.newTask("branches", func(stop chan struct{}) error {
+ // here we tell the selected branch that it is selected.
+ // this is necessary for showing stats on a branch that is selected, because
+ // the displaystring function doesn't have access to gui state to tell if it's selected
+ for i, branch := range gui.State.Branches {
+ branch.Selected = i == gui.State.Panels.Branches.SelectedLine
+ }
- branch := gui.getSelectedBranch()
- branch.Pushables, branch.Pullables = gui.GitCommand.GetBranchUpstreamDifferenceCount(branch.Name)
- return gui.renderListPanel(gui.getBranchesView(), gui.State.Branches)
+ branch := gui.getSelectedBranch()
+ branch.Pushables, branch.Pullables = gui.GitCommand.GetBranchUpstreamDifferenceCount(branch.Name)
+
+ select {
+ case <-stop:
+ return nil
+ default:
+ }
+
+ return gui.renderListPanel(gui.getBranchesView(), gui.State.Branches)
+ })
}
// gui.refreshStatus is called at the end of this because that's when we can
diff --git a/pkg/gui/commit_files_panel.go b/pkg/gui/commit_files_panel.go
index 1dee4a3cd..42afc6c94 100644
--- a/pkg/gui/commit_files_panel.go
+++ b/pkg/gui/commit_files_panel.go
@@ -43,11 +43,15 @@ func (gui *Gui) handleCommitFileSelect(g *gocui.Gui, v *gocui.View) error {
if err := gui.focusPoint(0, gui.State.Panels.CommitFiles.SelectedLine, len(gui.State.CommitFiles), v); err != nil {
return err
}
- commitText, err := gui.GitCommand.ShowCommitFile(commitFile.Sha, commitFile.Name, false)
- if err != nil {
- return err
+
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.ShowCommitFileCmdStr(commitFile.Sha, commitFile.Name, false),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
}
- return gui.renderString(g, "main", commitText)
+
+ return nil
}
func (gui *Gui) handleSwitchToCommitsPanel(g *gocui.Gui, v *gocui.View) error {
diff --git a/pkg/gui/commits_panel.go b/pkg/gui/commits_panel.go
index 32672a40b..abc6b47ec 100644
--- a/pkg/gui/commits_panel.go
+++ b/pkg/gui/commits_panel.go
@@ -53,7 +53,7 @@ func (gui *Gui) handleCommitSelect(g *gocui.Gui, v *gocui.View) error {
commit := gui.getSelectedCommit(g)
if commit == nil {
- return gui.renderString(g, "main", gui.Tr.SLocalize("NoCommitsThisBranch"))
+ return gui.newStringTask("main", gui.Tr.SLocalize("NoCommitsThisBranch"))
}
if err := gui.focusPoint(0, gui.State.Panels.Commits.SelectedLine, len(gui.State.Commits), v); err != nil {
@@ -65,11 +65,14 @@ func (gui *Gui) handleCommitSelect(g *gocui.Gui, v *gocui.View) error {
return nil
}
- commitText, err := gui.GitCommand.Show(commit.Sha)
- if err != nil {
- return err
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.ShowCmdStr(commit.Sha),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
}
- return gui.renderString(g, "main", commitText)
+
+ return nil
}
func (gui *Gui) refreshCommits(g *gocui.Gui) error {
@@ -463,7 +466,7 @@ func (gui *Gui) handleToggleDiffCommit(g *gocui.Gui, v *gocui.View) error {
// get selected commit
commit := gui.getSelectedCommit(g)
if commit == nil {
- return gui.renderString(g, "main", gui.Tr.SLocalize("NoCommitsThisBranch"))
+ return gui.newStringTask("main", gui.Tr.SLocalize("NoCommitsThisBranch"))
}
// if already selected commit delete
@@ -486,7 +489,7 @@ func (gui *Gui) handleToggleDiffCommit(g *gocui.Gui, v *gocui.View) error {
return gui.createErrorPanel(gui.g, err.Error())
}
- return gui.renderString(g, "main", commitText)
+ return gui.newStringTask("main", commitText)
}
return nil
diff --git a/pkg/gui/files_panel.go b/pkg/gui/files_panel.go
index 38622efa1..47e7bae1f 100644
--- a/pkg/gui/files_panel.go
+++ b/pkg/gui/files_panel.go
@@ -32,7 +32,7 @@ func (gui *Gui) selectFile(alreadySelected bool) error {
if err != gui.Errors.ErrNoFiles {
return err
}
- return gui.renderString(gui.g, "main", gui.Tr.SLocalize("NoChangedFiles"))
+ return gui.newStringTask("main", gui.Tr.SLocalize("NoChangedFiles"))
}
if err := gui.focusPoint(0, gui.State.Panels.Files.SelectedLine, len(gui.State.Files), gui.getFilesView()); err != nil {
@@ -45,37 +45,40 @@ func (gui *Gui) selectFile(alreadySelected bool) error {
return gui.refreshMergePanel()
}
- content := gui.GitCommand.Diff(file, false, false)
- contentCached := gui.GitCommand.Diff(file, false, true)
- leftContent := content
+ if !alreadySelected {
+ if err := gui.resetOrigin(gui.getMainView()); err != nil {
+ return err
+ }
+ if err := gui.resetOrigin(gui.getSecondaryView()); err != nil {
+ return err
+ }
+ }
+
if file.HasStagedChanges && file.HasUnstagedChanges {
gui.State.SplitMainPanel = true
gui.getMainView().Title = gui.Tr.SLocalize("UnstagedChanges")
gui.getSecondaryView().Title = gui.Tr.SLocalize("StagedChanges")
+ cmdStr := gui.GitCommand.DiffCmdStr(file, false, true)
+ cmd := gui.OSCommand.ExecutableFromString(cmdStr)
+ if err := gui.newCmdTask("secondary", cmd); err != nil {
+ return err
+ }
} else {
gui.State.SplitMainPanel = false
if file.HasUnstagedChanges {
- leftContent = content
gui.getMainView().Title = gui.Tr.SLocalize("UnstagedChanges")
} else {
- leftContent = contentCached
gui.getMainView().Title = gui.Tr.SLocalize("StagedChanges")
}
}
- if alreadySelected {
- gui.g.Update(func(*gocui.Gui) error {
- if err := gui.setViewContent(gui.g, gui.getSecondaryView(), contentCached); err != nil {
- return err
- }
- return gui.setViewContent(gui.g, gui.getMainView(), leftContent)
- })
- return nil
- }
- if err := gui.renderString(gui.g, "secondary", contentCached); err != nil {
+ cmdStr := gui.GitCommand.DiffCmdStr(file, false, !file.HasUnstagedChanges && file.HasStagedChanges)
+ cmd := gui.OSCommand.ExecutableFromString(cmdStr)
+ if err := gui.newCmdTask("main", cmd); err != nil {
return err
}
- return gui.renderString(gui.g, "main", leftContent)
+
+ return nil
}
func (gui *Gui) refreshFiles() error {
@@ -369,15 +372,15 @@ func (gui *Gui) catSelectedFile(g *gocui.Gui) (string, error) {
if err != gui.Errors.ErrNoFiles {
return "", err
}
- return "", gui.renderString(g, "main", gui.Tr.SLocalize("NoFilesDisplay"))
+ return "", gui.newStringTask("main", gui.Tr.SLocalize("NoFilesDisplay"))
}
if item.Type != "file" {
- return "", gui.renderString(g, "main", gui.Tr.SLocalize("NotAFile"))
+ return "", gui.newStringTask("main", gui.Tr.SLocalize("NotAFile"))
}
cat, err := gui.GitCommand.CatFile(item.Name)
if err != nil {
gui.Log.Error(err)
- return "", gui.renderString(g, "main", err.Error())
+ return "", gui.newStringTask("main", err.Error())
}
return cat, nil
}
diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go
index 2bdb66e0f..d748b4d72 100644
--- a/pkg/gui/gui.go
+++ b/pkg/gui/gui.go
@@ -25,6 +25,7 @@ import (
"github.com/jesseduffield/lazygit/pkg/commands"
"github.com/jesseduffield/lazygit/pkg/config"
"github.com/jesseduffield/lazygit/pkg/i18n"
+ "github.com/jesseduffield/lazygit/pkg/tasks"
"github.com/jesseduffield/lazygit/pkg/theme"
"github.com/jesseduffield/lazygit/pkg/updates"
"github.com/jesseduffield/lazygit/pkg/utils"
@@ -68,20 +69,21 @@ type Teml i18n.Teml
// Gui wraps the gocui Gui object which handles rendering and events
type Gui struct {
- g *gocui.Gui
- Log *logrus.Entry
- GitCommand *commands.GitCommand
- OSCommand *commands.OSCommand
- SubProcess *exec.Cmd
- State guiState
- Config config.AppConfigurer
- Tr *i18n.Localizer
- Errors SentinelErrors
- Updater *updates.Updater
- statusManager *statusManager
- credentials credentials
- waitForIntro sync.WaitGroup
- fileWatcher *fileWatcher
+ g *gocui.Gui
+ Log *logrus.Entry
+ GitCommand *commands.GitCommand
+ OSCommand *commands.OSCommand
+ SubProcess *exec.Cmd
+ State guiState
+ Config config.AppConfigurer
+ Tr *i18n.Localizer
+ Errors SentinelErrors
+ Updater *updates.Updater
+ statusManager *statusManager
+ credentials credentials
+ waitForIntro sync.WaitGroup
+ fileWatcher *fileWatcher
+ viewBufferManagerMap map[string]*tasks.ViewBufferManager
}
// for now the staging panel state, unlike the other panel states, is going to be
@@ -229,14 +231,15 @@ func NewGui(log *logrus.Entry, gitCommand *commands.GitCommand, oSCommand *comma
}
gui := &Gui{
- Log: log,
- GitCommand: gitCommand,
- OSCommand: oSCommand,
- State: initialState,
- Config: config,
- Tr: tr,
- Updater: updater,
- statusManager: &statusManager{},
+ Log: log,
+ GitCommand: gitCommand,
+ OSCommand: oSCommand,
+ State: initialState,
+ Config: config,
+ Tr: tr,
+ Updater: updater,
+ statusManager: &statusManager{},
+ viewBufferManagerMap: map[string]*tasks.ViewBufferManager{},
}
gui.watchFilesForChanges()
@@ -261,8 +264,14 @@ func (gui *Gui) scrollDownView(viewName string) error {
_, sy := mainView.Size()
y += sy
}
+ scrollHeight := gui.Config.GetUserConfig().GetInt("gui.scrollHeight")
if y < len(mainView.BufferLines()) {
- return mainView.SetOrigin(ox, oy+gui.Config.GetUserConfig().GetInt("gui.scrollHeight"))
+ if err := mainView.SetOrigin(ox, oy+scrollHeight); err != nil {
+ return err
+ }
+ }
+ if manager, ok := gui.viewBufferManagerMap[viewName]; ok {
+ manager.ReadLines(scrollHeight)
}
return nil
}
@@ -465,7 +474,23 @@ func (gui *Gui) layout(g *gocui.Gui) error {
secondary = "main"
}
- v, err := g.SetView(main, leftSideWidth+panelSpacing, 0, panelSplitX, height-2, gocui.LEFT)
+ // reading more lines into main view buffers upon resize
+ mainHeight := height - 2
+ prevMainView, err := gui.g.View("main")
+ if err == nil {
+ _, prevMainHeight := prevMainView.Size()
+ heightDiff := mainHeight - 1 - prevMainHeight
+ if heightDiff > 0 {
+ if manager, ok := gui.viewBufferManagerMap["main"]; ok {
+ manager.ReadLines(heightDiff)
+ }
+ if manager, ok := gui.viewBufferManagerMap["secondary"]; ok {
+ manager.ReadLines(heightDiff)
+ }
+ }
+ }
+
+ v, err := g.SetView(main, leftSideWidth+panelSpacing, 0, panelSplitX, mainHeight, gocui.LEFT)
if err != nil {
if err.Error() != "unknown view" {
return err
@@ -479,7 +504,7 @@ func (gui *Gui) layout(g *gocui.Gui) error {
if !gui.State.SplitMainPanel {
hiddenViewOffset = 9999
}
- secondaryView, err := g.SetView(secondary, panelSplitX+1+hiddenViewOffset, hiddenViewOffset, width-1+hiddenViewOffset, height-2+hiddenViewOffset, gocui.LEFT)
+ secondaryView, err := g.SetView(secondary, panelSplitX+1+hiddenViewOffset, hiddenViewOffset, width-1+hiddenViewOffset, mainHeight+hiddenViewOffset, gocui.LEFT)
if err != nil {
if err.Error() != "unknown view" {
return err
@@ -843,6 +868,11 @@ func (gui *Gui) Run() error {
func (gui *Gui) RunWithSubprocesses() error {
for {
if err := gui.Run(); err != nil {
+ for _, manager := range gui.viewBufferManagerMap {
+ manager.Close()
+ }
+ gui.viewBufferManagerMap = map[string]*tasks.ViewBufferManager{}
+
if err == gocui.ErrQuit {
if !gui.State.RetainOriginalDir {
if err := gui.recordCurrentDirectory(); err != nil {
diff --git a/pkg/gui/merge_panel.go b/pkg/gui/merge_panel.go
index 25238ce4f..4b86cf6c0 100644
--- a/pkg/gui/merge_panel.go
+++ b/pkg/gui/merge_panel.go
@@ -212,7 +212,7 @@ func (gui *Gui) refreshMergePanel() error {
if err != nil {
return err
}
- if err := gui.renderString(gui.g, "main", content); err != nil {
+ if err := gui.newStringTask("main", content); err != nil {
return err
}
if err := gui.scrollToConflict(gui.g); err != nil {
diff --git a/pkg/gui/reflog_panel.go b/pkg/gui/reflog_panel.go
index 33577c073..e766070fb 100644
--- a/pkg/gui/reflog_panel.go
+++ b/pkg/gui/reflog_panel.go
@@ -31,17 +31,20 @@ func (gui *Gui) handleReflogCommitSelect(g *gocui.Gui, v *gocui.View) error {
commit := gui.getSelectedReflogCommit()
if commit == nil {
- return gui.renderString(g, "main", "No reflog history")
+ return gui.newStringTask("main", "No reflog history")
}
if err := gui.focusPoint(0, gui.State.Panels.ReflogCommits.SelectedLine, len(gui.State.ReflogCommits), v); err != nil {
return err
}
- commitText, err := gui.GitCommand.Show(commit.Sha)
- if err != nil {
- return err
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.ShowCmdStr(commit.Sha),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
}
- return gui.renderString(g, "main", commitText)
+
+ return nil
}
func (gui *Gui) refreshReflogCommits() error {
diff --git a/pkg/gui/remote_branches_panel.go b/pkg/gui/remote_branches_panel.go
index 4b8658df7..fbe299fd9 100644
--- a/pkg/gui/remote_branches_panel.go
+++ b/pkg/gui/remote_branches_panel.go
@@ -2,12 +2,9 @@ package gui
import (
"fmt"
- "strings"
- "github.com/fatih/color"
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands"
- "github.com/jesseduffield/lazygit/pkg/utils"
)
// list panel functions
@@ -37,7 +34,7 @@ func (gui *Gui) handleRemoteBranchSelect(g *gocui.Gui, v *gocui.View) error {
remote := gui.getSelectedRemote()
remoteBranch := gui.getSelectedRemoteBranch()
if remoteBranch == nil {
- return gui.renderString(g, "main", "No branches for this remote")
+ return gui.newStringTask("main", "No branches for this remote")
}
gui.focusPoint(0, gui.State.Panels.Menu.SelectedLine, gui.State.MenuItemCount, v)
@@ -45,13 +42,14 @@ func (gui *Gui) handleRemoteBranchSelect(g *gocui.Gui, v *gocui.View) error {
return err
}
- go func() {
- graph, err := gui.GitCommand.GetBranchGraph(fmt.Sprintf("%s/%s", remote.Name, remoteBranch.Name))
- if err != nil && strings.HasPrefix(graph, "fatal: ambiguous argument") {
- graph = gui.Tr.SLocalize("NoTrackingThisBranch")
- }
- _ = gui.renderString(g, "main", fmt.Sprintf("%s/%s\n\n%s", utils.ColoredString(remote.Name, color.FgRed), utils.ColoredString(remoteBranch.Name, color.FgGreen), graph))
- }()
+ branchName := fmt.Sprintf("%s/%s", remote.Name, remoteBranch.Name)
+
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.GetBranchGraphCmdStr(branchName),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
+ }
return nil
}
diff --git a/pkg/gui/remotes_panel.go b/pkg/gui/remotes_panel.go
index a646462d9..ca3e3aae1 100644
--- a/pkg/gui/remotes_panel.go
+++ b/pkg/gui/remotes_panel.go
@@ -36,13 +36,13 @@ func (gui *Gui) handleRemoteSelect(g *gocui.Gui, v *gocui.View) error {
remote := gui.getSelectedRemote()
if remote == nil {
- return gui.renderString(g, "main", "No remotes")
+ return gui.newStringTask("main", "No remotes")
}
if err := gui.focusPoint(0, gui.State.Panels.Remotes.SelectedLine, len(gui.State.Remotes), v); err != nil {
return err
}
- return gui.renderString(g, "main", fmt.Sprintf("%s\nUrls:\n%s", utils.ColoredString(remote.Name, color.FgGreen), strings.Join(remote.Urls, "\n")))
+ return gui.newStringTask("main", fmt.Sprintf("%s\nUrls:\n%s", utils.ColoredString(remote.Name, color.FgGreen), strings.Join(remote.Urls, "\n")))
}
func (gui *Gui) refreshRemotes() error {
diff --git a/pkg/gui/stash_panel.go b/pkg/gui/stash_panel.go
index 8ccdc9880..23ecaba60 100644
--- a/pkg/gui/stash_panel.go
+++ b/pkg/gui/stash_panel.go
@@ -34,16 +34,19 @@ func (gui *Gui) handleStashEntrySelect(g *gocui.Gui, v *gocui.View) error {
stashEntry := gui.getSelectedStashEntry(v)
if stashEntry == nil {
- return gui.renderString(g, "main", gui.Tr.SLocalize("NoStashEntries"))
+ return gui.newStringTask("main", gui.Tr.SLocalize("NoStashEntries"))
}
if err := gui.focusPoint(0, gui.State.Panels.Stash.SelectedLine, len(gui.State.StashEntries), v); err != nil {
return err
}
- go func() {
- // doing this asynchronously cos it can take time
- diff, _ := gui.GitCommand.GetStashEntryDiff(stashEntry.Index)
- _ = gui.renderString(g, "main", diff)
- }()
+
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.ShowStashEntryCmdStr(stashEntry.Index),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
+ }
+
return nil
}
diff --git a/pkg/gui/status_panel.go b/pkg/gui/status_panel.go
index c351f24e8..8eb6a92f9 100644
--- a/pkg/gui/status_panel.go
+++ b/pkg/gui/status_panel.go
@@ -111,7 +111,7 @@ func (gui *Gui) handleStatusSelect(g *gocui.Gui, v *gocui.View) error {
magenta.Sprint("Become a sponsor (github is matching all donations for 12 months): https://github.com/sponsors/jesseduffield"), // caffeine ain't free
}, "\n\n")
- return gui.renderString(g, "main", dashboardString)
+ return gui.newStringTask("main", dashboardString)
}
func (gui *Gui) handleOpenConfig(g *gocui.Gui, v *gocui.View) error {
diff --git a/pkg/gui/tags_panel.go b/pkg/gui/tags_panel.go
index 62777e237..8b74a3527 100644
--- a/pkg/gui/tags_panel.go
+++ b/pkg/gui/tags_panel.go
@@ -1,8 +1,6 @@
package gui
import (
- "fmt"
-
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands"
)
@@ -33,25 +31,18 @@ func (gui *Gui) handleTagSelect(g *gocui.Gui, v *gocui.View) error {
tag := gui.getSelectedTag()
if tag == nil {
- return gui.renderString(g, "main", "No tags")
+ return gui.newStringTask("main", "No tags")
}
if err := gui.focusPoint(0, gui.State.Panels.Tags.SelectedLine, len(gui.State.Tags), v); err != nil {
return err
}
- go func() {
- show, err := gui.GitCommand.ShowTag(tag.Name)
- if err != nil {
- show = ""
- }
-
- graph, err := gui.GitCommand.GetBranchGraph(tag.Name)
- if err != nil {
- graph = "No graph for tag " + tag.Name
- }
-
- _ = gui.renderString(g, "main", fmt.Sprintf("%s\n%s", show, graph))
- }()
+ cmd := gui.OSCommand.ExecutableFromString(
+ gui.GitCommand.GetBranchGraphCmdStr(tag.Name),
+ )
+ if err := gui.newCmdTask("main", cmd); err != nil {
+ gui.Log.Error(err)
+ }
return nil
}
diff --git a/pkg/gui/tasks_adapter.go b/pkg/gui/tasks_adapter.go
new file mode 100644
index 000000000..22ebb9da9
--- /dev/null
+++ b/pkg/gui/tasks_adapter.go
@@ -0,0 +1,78 @@
+package gui
+
+import (
+ "os/exec"
+
+ "github.com/jesseduffield/gocui"
+ "github.com/jesseduffield/lazygit/pkg/tasks"
+)
+
+func (gui *Gui) newCmdTask(viewName string, cmd *exec.Cmd) error {
+ view, err := gui.g.View(viewName)
+ if err != nil {
+ return nil // swallowing for now
+ }
+
+ _, height := view.Size()
+ _, oy := view.Origin()
+
+ manager := gui.getManager(view)
+
+ if err := manager.NewTask(manager.NewCmdTask(cmd, height+oy+10)); err != nil {
+ return err
+ }
+
+ return nil
+}
+
+func (gui *Gui) newTask(viewName string, f func(chan struct{}) error) error {
+ view, err := gui.g.View(viewName)
+ if err != nil {
+ return nil // swallowing for now
+ }
+
+ manager := gui.getManager(view)
+
+ if err := manager.NewTask(f); err != nil {
+ return err
+ }
+
+ return nil
+}
+
+func (gui *Gui) newStringTask(viewName string, str string) error {
+ view, err := gui.g.View(viewName)
+ if err != nil {
+ return nil // swallowing for now
+ }
+
+ manager := gui.getManager(view)
+
+ f := func(stop chan struct{}) error {
+ return gui.renderString(gui.g, viewName, str)
+ }
+
+ if err := manager.NewTask(f); err != nil {
+ return err
+ }
+
+ return nil
+}
+
+func (gui *Gui) getManager(view *gocui.View) *tasks.ViewBufferManager {
+ manager, ok := gui.viewBufferManagerMap[view.Name()]
+ if !ok {
+ manager = tasks.NewViewBufferManager(
+ gui.Log,
+ view,
+ func() {
+ view.Clear()
+ },
+ func() {
+ gui.g.Update(func(*gocui.Gui) error { return nil })
+ })
+ gui.viewBufferManagerMap[view.Name()] = manager
+ }
+
+ return manager
+}