1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-24 08:52:21 +02:00
lazygit/pkg/gui/recent_repos_panel.go

132 lines
3.7 KiB
Go
Raw Normal View History

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"
"github.com/jesseduffield/lazygit/pkg/env"
2022-01-28 11:44:36 +02:00
"github.com/jesseduffield/lazygit/pkg/gui/popup"
"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)
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] {
path := path // cos we're closing over the loop variable
2022-01-28 11:44:36 +02:00
menuItems[i] = &popup.MenuItem{
DisplayStrings: []string{
filepath.Base(path),
style.FgMagenta.Sprint(path),
2020-02-14 14:26:09 +02:00
},
2022-01-28 11:44:36 +02:00
OnPress: func() error {
// 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()
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,
},
})
}
func (gui *Gui) dispatchSwitchToRepo(path string, reuse bool) error {
env.UnsetGitDirEnvs()
2021-03-30 13:17:42 +02:00
originalPath, err := os.Getwd()
if err != nil {
return nil
}
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
}
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))
if err != nil {
return err
}
2022-01-08 05:10:01 +02:00
gui.Git = newGitCommand
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)
return nil
}
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() {
// 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
}
// 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
}