2018-09-19 11:15:29 +02:00
|
|
|
package gui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/commands"
|
2021-10-23 00:52:19 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/commands/git_config"
|
2020-09-27 08:17:26 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/env"
|
2022-01-28 11:44:36 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/popup"
|
2021-07-27 15:00:37 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/style"
|
2018-09-19 11:15:29 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
|
|
|
)
|
|
|
|
|
2020-08-15 09:23:16 +02:00
|
|
|
func (gui *Gui) handleCreateRecentReposMenu() error {
|
2018-09-19 11:15:29 +02:00
|
|
|
recentRepoPaths := gui.Config.GetAppState().RecentRepos
|
|
|
|
reposCount := utils.Min(len(recentRepoPaths), 20)
|
2021-07-27 15:00:37 +02:00
|
|
|
|
2018-09-19 11:15:29 +02:00
|
|
|
// we won't show the current repo hence the -1
|
2022-01-28 11:44:36 +02:00
|
|
|
menuItems := make([]*popup.MenuItem, reposCount-1)
|
2018-09-19 11:15:29 +02:00
|
|
|
for i, path := range recentRepoPaths[1:reposCount] {
|
2020-09-29 01:02:44 +02:00
|
|
|
path := path // cos we're closing over the loop variable
|
2022-01-28 11:44:36 +02:00
|
|
|
menuItems[i] = &popup.MenuItem{
|
|
|
|
DisplayStrings: []string{
|
2020-09-29 01:02:44 +02:00
|
|
|
filepath.Base(path),
|
2021-07-27 15:00:37 +02:00
|
|
|
style.FgMagenta.Sprint(path),
|
2020-02-14 14:26:09 +02:00
|
|
|
},
|
2022-01-28 11:44:36 +02:00
|
|
|
OnPress: func() error {
|
2021-04-03 04:43:43 +02:00
|
|
|
// if we were in a submodule, we want to forget about that stack of repos
|
|
|
|
// so that hitting escape in the new repo does nothing
|
2022-01-28 11:44:36 +02:00
|
|
|
gui.RepoPathStack.Clear()
|
2021-04-05 05:22:03 +02:00
|
|
|
return gui.dispatchSwitchToRepo(path, false)
|
2020-02-14 14:26:09 +02:00
|
|
|
},
|
2018-09-19 11:15:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-28 11:44:36 +02:00
|
|
|
return gui.PopupHandler.Menu(popup.CreateMenuOptions{Title: gui.Tr.RecentRepos, Items: menuItems})
|
2018-09-19 11:15:29 +02:00
|
|
|
}
|
|
|
|
|
2020-11-27 09:07:14 +02:00
|
|
|
func (gui *Gui) handleShowAllBranchLogs() error {
|
2022-01-08 05:10:01 +02:00
|
|
|
cmdObj := gui.Git.Branch.AllBranchesLogCmdObj()
|
2021-12-07 12:59:36 +02:00
|
|
|
task := NewRunPtyTask(cmdObj.GetCmd())
|
2020-11-27 09:07:14 +02:00
|
|
|
|
|
|
|
return gui.refreshMainViews(refreshMainOpts{
|
|
|
|
main: &viewUpdateOpts{
|
|
|
|
title: "Log",
|
|
|
|
task: task,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-04-05 05:22:03 +02:00
|
|
|
func (gui *Gui) dispatchSwitchToRepo(path string, reuse bool) error {
|
2020-09-29 01:02:44 +02:00
|
|
|
env.UnsetGitDirEnvs()
|
2021-03-30 13:17:42 +02:00
|
|
|
originalPath, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-29 01:02:44 +02:00
|
|
|
if err := os.Chdir(path); err != nil {
|
2021-03-30 13:17:42 +02:00
|
|
|
if os.IsNotExist(err) {
|
2022-01-28 11:44:36 +02:00
|
|
|
return gui.PopupHandler.ErrorMsg(gui.Tr.ErrRepositoryMovedOrDeleted)
|
2021-03-30 13:17:42 +02:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := commands.VerifyInGitRepo(gui.OSCommand); err != nil {
|
|
|
|
if err := os.Chdir(originalPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-09-29 01:02:44 +02:00
|
|
|
return err
|
|
|
|
}
|
2021-03-30 13:17:42 +02:00
|
|
|
|
2021-12-29 03:03:35 +02:00
|
|
|
newGitCommand, err := commands.NewGitCommand(gui.Common, gui.OSCommand, git_config.NewStdCachedGitConfig(gui.Log))
|
2020-09-29 01:02:44 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-08 05:10:01 +02:00
|
|
|
gui.Git = newGitCommand
|
2021-04-03 04:43:43 +02:00
|
|
|
|
2022-01-15 03:04:00 +02:00
|
|
|
// these two mutexes are used by our background goroutines (triggered via `gui.goEvery`. We don't want to
|
|
|
|
// switch to a repo while one of these goroutines is in the process of updating something
|
|
|
|
gui.Mutexes.FetchMutex.Lock()
|
|
|
|
defer gui.Mutexes.FetchMutex.Unlock()
|
2021-04-03 10:35:45 +02:00
|
|
|
|
2022-01-15 03:04:00 +02:00
|
|
|
gui.Mutexes.RefreshingFilesMutex.Lock()
|
|
|
|
defer gui.Mutexes.RefreshingFilesMutex.Unlock()
|
2021-04-03 10:35:45 +02:00
|
|
|
|
2022-03-15 15:12:26 +02:00
|
|
|
if err := gui.recordCurrentDirectory(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-01-15 03:04:00 +02:00
|
|
|
gui.resetState("", reuse)
|
2021-04-03 04:43:43 +02:00
|
|
|
|
|
|
|
return nil
|
2020-09-29 01:02:44 +02:00
|
|
|
}
|
|
|
|
|
2018-09-19 11:15:29 +02:00
|
|
|
// updateRecentRepoList registers the fact that we opened lazygit in this repo,
|
|
|
|
// so that we can open the same repo via the 'recent repos' menu
|
|
|
|
func (gui *Gui) updateRecentRepoList() error {
|
2022-01-08 05:10:01 +02:00
|
|
|
if gui.Git.Status.IsBareRepo() {
|
2020-09-27 08:02:20 +02:00
|
|
|
// we could totally do this but it would require storing both the git-dir and the
|
|
|
|
// worktree in our recent repos list, which is a change that would need to be
|
|
|
|
// backwards compatible
|
|
|
|
gui.Log.Info("Not appending bare repo to recent repo list")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-09-19 11:15:29 +02:00
|
|
|
recentRepos := gui.Config.GetAppState().RecentRepos
|
|
|
|
currentRepo, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-12-10 14:45:03 +02:00
|
|
|
known, recentRepos := newRecentReposList(recentRepos, currentRepo)
|
2021-12-29 02:50:20 +02:00
|
|
|
gui.IsNewRepo = known
|
2018-12-10 14:45:03 +02:00
|
|
|
gui.Config.GetAppState().RecentRepos = recentRepos
|
2021-10-16 03:07:24 +02:00
|
|
|
return gui.Config.SaveAppState()
|
2018-09-19 11:15:29 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 23:05:16 +02:00
|
|
|
// newRecentReposList returns a new repo list with a new entry but only when it doesn't exist yet
|
2018-12-10 14:45:03 +02:00
|
|
|
func newRecentReposList(recentRepos []string, currentRepo string) (bool, []string) {
|
|
|
|
isNew := true
|
2018-09-19 11:15:29 +02:00
|
|
|
newRepos := []string{currentRepo}
|
|
|
|
for _, repo := range recentRepos {
|
|
|
|
if repo != currentRepo {
|
|
|
|
newRepos = append(newRepos, repo)
|
2018-12-10 14:45:03 +02:00
|
|
|
} else {
|
|
|
|
isNew = false
|
2018-09-19 11:15:29 +02:00
|
|
|
}
|
|
|
|
}
|
2018-12-10 14:45:03 +02:00
|
|
|
return isNew, newRepos
|
2018-09-19 11:15:29 +02:00
|
|
|
}
|