1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/sub_commits_panel.go

111 lines
2.7 KiB
Go
Raw Normal View History

2020-08-22 00:49:02 +02:00
package gui
import (
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands"
2020-09-29 10:36:54 +02:00
"github.com/jesseduffield/lazygit/pkg/models"
2020-08-22 00:49:02 +02:00
)
// list panel functions
2020-09-29 10:36:54 +02:00
func (gui *Gui) getSelectedSubCommit() *models.Commit {
2020-08-22 00:49:02 +02:00
selectedLine := gui.State.Panels.SubCommits.SelectedLineIdx
commits := gui.State.SubCommits
if selectedLine == -1 || len(commits) == 0 {
return nil
}
return commits[selectedLine]
}
func (gui *Gui) handleSubCommitSelect() error {
commit := gui.getSelectedSubCommit()
var task updateTask
if commit == nil {
task = gui.createRenderStringTask("No commits")
} else {
cmd := gui.OSCommand.ExecutableFromString(
2020-08-22 03:05:37 +02:00
gui.GitCommand.ShowCmdStr(commit.Sha, gui.State.Modes.Filtering.Path),
2020-08-22 00:49:02 +02:00
)
task = gui.createRunPtyTask(cmd)
}
2020-08-23 01:46:28 +02:00
return gui.refreshMainViews(refreshMainOpts{
2020-08-22 00:49:02 +02:00
main: &viewUpdateOpts{
title: "Commit",
task: task,
},
})
}
func (gui *Gui) handleCheckoutSubCommit(g *gocui.Gui, v *gocui.View) error {
commit := gui.getSelectedSubCommit()
if commit == nil {
return nil
}
err := gui.ask(askOpts{
title: gui.Tr.SLocalize("checkoutCommit"),
prompt: gui.Tr.SLocalize("SureCheckoutThisCommit"),
2020-08-22 00:49:02 +02:00
handleConfirm: func() error {
return gui.handleCheckoutRef(commit.Sha, handleCheckoutRefOptions{})
},
})
if err != nil {
return err
}
gui.State.Panels.SubCommits.SelectedLineIdx = 0
return nil
}
func (gui *Gui) handleCreateSubCommitResetMenu() error {
commit := gui.getSelectedSubCommit()
return gui.createResetMenu(commit.Sha)
}
func (gui *Gui) handleViewSubCommitFiles() error {
commit := gui.getSelectedSubCommit()
if commit == nil {
return nil
}
return gui.switchToCommitFilesContext(commit.Sha, false, gui.Contexts.SubCommits.Context, "branches")
2020-08-22 00:49:02 +02:00
}
func (gui *Gui) switchToSubCommitsContext(refName string) error {
// need to populate my sub commits
builder := commands.NewCommitListBuilder(gui.Log, gui.GitCommand, gui.OSCommand, gui.Tr)
2020-08-22 00:49:02 +02:00
commits, err := builder.GetCommits(
commands.GetCommitsOptions{
Limit: gui.State.Panels.Commits.LimitCommits,
2020-08-22 03:05:37 +02:00
FilterPath: gui.State.Modes.Filtering.Path,
2020-08-22 00:49:02 +02:00
IncludeRebaseCommits: false,
RefName: refName,
},
)
if err != nil {
return err
}
gui.State.SubCommits = commits
gui.State.Panels.SubCommits.refName = refName
gui.State.Panels.SubCommits.SelectedLineIdx = 0
gui.Contexts.SubCommits.Context.SetParentContext(gui.currentSideContext())
return gui.switchContext(gui.Contexts.SubCommits.Context)
}
func (gui *Gui) handleSwitchToSubCommits() error {
currentContext := gui.currentSideContext()
if currentContext == nil {
return nil
}
return gui.switchToSubCommitsContext(currentContext.GetSelectedItemId())
}