1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00
lazygit/pkg/gui/patch_building_panel.go

106 lines
2.7 KiB
Go
Raw Normal View History

package gui
import (
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/utils"
)
2019-11-10 16:20:35 +11:00
func (gui *Gui) refreshPatchBuildingPanel(selectedLineIdx int) error {
if !gui.GitCommand.PatchManager.CommitSelected() {
2020-08-15 17:23:16 +10:00
return gui.handleEscapePatchBuildingPanel()
}
gui.State.SplitMainPanel = true
2019-11-10 16:20:35 +11:00
gui.getMainView().Title = "Patch"
gui.getSecondaryView().Title = "Custom Patch"
// get diff from commit file that's currently selected
commitFile := gui.getSelectedCommitFile()
if commitFile == nil {
2020-08-15 16:36:39 +10:00
gui.renderString("commitFiles", gui.Tr.SLocalize("NoCommiteFiles"))
2020-03-09 11:34:10 +11:00
return nil
}
diff, err := gui.GitCommand.ShowCommitFile(commitFile.Sha, commitFile.Name, true)
if err != nil {
return err
}
secondaryDiff := gui.GitCommand.PatchManager.RenderPatchForFile(commitFile.Name, true, false, true)
if err != nil {
return err
}
2019-11-10 16:20:35 +11:00
empty, err := gui.refreshLineByLinePanel(diff, secondaryDiff, false, selectedLineIdx)
if err != nil {
return err
}
if empty {
2020-08-15 17:23:16 +10:00
return gui.handleEscapePatchBuildingPanel()
}
return nil
}
func (gui *Gui) handleToggleSelectionForPatch(g *gocui.Gui, v *gocui.View) error {
state := gui.State.Panels.LineByLine
toggleFunc := gui.GitCommand.PatchManager.AddFileLineRange
filename := gui.getSelectedCommitFileName()
includedLineIndices := gui.GitCommand.PatchManager.GetFileIncLineIndices(filename)
currentLineIsStaged := utils.IncludesInt(includedLineIndices, state.SelectedLineIdx)
if currentLineIsStaged {
toggleFunc = gui.GitCommand.PatchManager.RemoveFileLineRange
}
// add range of lines to those set for the file
commitFile := gui.getSelectedCommitFile()
if commitFile == nil {
2020-08-15 16:36:39 +10:00
gui.renderString("commitFiles", gui.Tr.SLocalize("NoCommiteFiles"))
2020-03-09 11:34:10 +11:00
return nil
}
toggleFunc(commitFile.Name, state.FirstLineIdx, state.LastLineIdx)
if err := gui.refreshCommitFilesView(); err != nil {
return err
}
2019-11-10 16:20:35 +11:00
if err := gui.refreshPatchBuildingPanel(-1); err != nil {
return err
}
return nil
}
2020-08-15 17:23:16 +10:00
func (gui *Gui) handleEscapePatchBuildingPanel() error {
gui.handleEscapeLineByLinePanel()
if gui.GitCommand.PatchManager.IsEmpty() {
gui.GitCommand.PatchManager.Reset()
gui.State.SplitMainPanel = false
}
2020-08-16 13:58:29 +10:00
return gui.switchContext(gui.Contexts.BranchCommits.Files.Context)
}
2019-11-05 15:11:35 +11:00
func (gui *Gui) refreshSecondaryPatchPanel() error {
if gui.GitCommand.PatchManager.CommitSelected() {
2019-11-05 15:11:35 +11:00
gui.State.SplitMainPanel = true
secondaryView := gui.getSecondaryView()
secondaryView.Highlight = true
secondaryView.Wrap = false
gui.g.Update(func(*gocui.Gui) error {
gui.setViewContent(gui.getSecondaryView(), gui.GitCommand.PatchManager.RenderAggregatedPatchColored(false))
2020-03-09 11:34:10 +11:00
return nil
2019-11-05 15:11:35 +11:00
})
} else {
gui.State.SplitMainPanel = false
}
return nil
}