mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-31 02:25:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			114 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package gui
 | |
| 
 | |
| import (
 | |
| 	"github.com/jesseduffield/gocui"
 | |
| 	"github.com/jesseduffield/lazygit/pkg/commands"
 | |
| 	"github.com/jesseduffield/lazygit/pkg/gui/presentation"
 | |
| )
 | |
| 
 | |
| // list panel functions
 | |
| 
 | |
| func (gui *Gui) getSelectedReflogCommit() *commands.Commit {
 | |
| 	selectedLine := gui.State.Panels.ReflogCommits.SelectedLine
 | |
| 	reflogComits := gui.State.ReflogCommits
 | |
| 	if selectedLine == -1 || len(reflogComits) == 0 {
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	return reflogComits[selectedLine]
 | |
| }
 | |
| 
 | |
| func (gui *Gui) handleReflogCommitSelect(g *gocui.Gui, v *gocui.View) error {
 | |
| 	if gui.popupPanelFocused() {
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	gui.State.SplitMainPanel = false
 | |
| 
 | |
| 	if _, err := gui.g.SetCurrentView(v.Name()); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	gui.getMainView().Title = "Reflog Entry"
 | |
| 
 | |
| 	commit := gui.getSelectedReflogCommit()
 | |
| 	if commit == nil {
 | |
| 		return gui.newStringTask("main", "No reflog history")
 | |
| 	}
 | |
| 	v.FocusPoint(0, gui.State.Panels.ReflogCommits.SelectedLine)
 | |
| 
 | |
| 	cmd := gui.OSCommand.ExecutableFromString(
 | |
| 		gui.GitCommand.ShowCmdStr(commit.Sha, gui.State.FilterPath),
 | |
| 	)
 | |
| 	if err := gui.newPtyTask("main", cmd); err != nil {
 | |
| 		gui.Log.Error(err)
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (gui *Gui) refreshReflogCommits() error {
 | |
| 	var lastReflogCommit *commands.Commit
 | |
| 	if len(gui.State.ReflogCommits) > 0 {
 | |
| 		lastReflogCommit = gui.State.ReflogCommits[0]
 | |
| 	}
 | |
| 
 | |
| 	commits, onlyObtainedNewReflogCommits, err := gui.GitCommand.GetReflogCommits(lastReflogCommit, gui.State.FilterPath)
 | |
| 	if err != nil {
 | |
| 		return gui.surfaceError(err)
 | |
| 	}
 | |
| 
 | |
| 	if onlyObtainedNewReflogCommits {
 | |
| 		gui.State.ReflogCommits = append(commits, gui.State.ReflogCommits...)
 | |
| 	} else {
 | |
| 		// if we haven't found it we're probably in a new repo so we don't want to
 | |
| 		// retain the old reflog commits
 | |
| 		gui.State.ReflogCommits = commits
 | |
| 	}
 | |
| 
 | |
| 	if gui.getCommitsView().Context == "reflog-commits" {
 | |
| 		return gui.renderReflogCommitsWithSelection()
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (gui *Gui) renderReflogCommitsWithSelection() error {
 | |
| 	commitsView := gui.getCommitsView()
 | |
| 
 | |
| 	gui.refreshSelectedLine(&gui.State.Panels.ReflogCommits.SelectedLine, len(gui.State.ReflogCommits))
 | |
| 	displayStrings := presentation.GetReflogCommitListDisplayStrings(gui.State.ReflogCommits, gui.State.ScreenMode != SCREEN_NORMAL)
 | |
| 	gui.renderDisplayStrings(commitsView, displayStrings)
 | |
| 	if gui.g.CurrentView() == commitsView && commitsView.Context == "reflog-commits" {
 | |
| 		if err := gui.handleReflogCommitSelect(gui.g, commitsView); err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (gui *Gui) handleCheckoutReflogCommit(g *gocui.Gui, v *gocui.View) error {
 | |
| 	commit := gui.getSelectedReflogCommit()
 | |
| 	if commit == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	err := gui.createConfirmationPanel(g, gui.getCommitsView(), true, gui.Tr.SLocalize("checkoutCommit"), gui.Tr.SLocalize("SureCheckoutThisCommit"), func(g *gocui.Gui, v *gocui.View) error {
 | |
| 		return gui.handleCheckoutRef(commit.Sha, handleCheckoutRefOptions{})
 | |
| 	}, nil)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	gui.State.Panels.ReflogCommits.SelectedLine = 0
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (gui *Gui) handleCreateReflogResetMenu(g *gocui.Gui, v *gocui.View) error {
 | |
| 	commit := gui.getSelectedReflogCommit()
 | |
| 
 | |
| 	return gui.createResetMenu(commit.Sha)
 | |
| }
 |