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

122 lines
3.0 KiB
Go
Raw Normal View History

package gui
import (
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/utils"
)
2019-11-10 07:20:35 +02:00
func (gui *Gui) refreshPatchBuildingPanel(selectedLineIdx int) error {
if !gui.GitCommand.PatchManager.CommitSelected() {
2020-08-15 09:23:16 +02:00
return gui.handleEscapePatchBuildingPanel()
}
2020-08-18 00:26:40 +02:00
gui.splitMainPanel(true)
2019-11-10 07:20:35 +02: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 08:36:39 +02:00
gui.renderString("commitFiles", gui.Tr.SLocalize("NoCommiteFiles"))
2020-03-09 02:34:10 +02: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 07:20:35 +02:00
empty, err := gui.refreshLineByLinePanel(diff, secondaryDiff, false, selectedLineIdx)
if err != nil {
return err
}
if empty {
2020-08-15 09:23:16 +02: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 08:36:39 +02:00
gui.renderString("commitFiles", gui.Tr.SLocalize("NoCommiteFiles"))
2020-03-09 02:34:10 +02:00
return nil
}
toggleFunc(commitFile.Name, state.FirstLineIdx, state.LastLineIdx)
if err := gui.refreshCommitFilesView(); err != nil {
return err
}
2019-11-10 07:20:35 +02:00
if err := gui.refreshPatchBuildingPanel(-1); err != nil {
return err
}
return nil
}
2020-08-15 09:23:16 +02:00
func (gui *Gui) handleEscapePatchBuildingPanel() error {
gui.handleEscapeLineByLinePanel()
if gui.GitCommand.PatchManager.IsEmpty() {
gui.GitCommand.PatchManager.Reset()
}
return gui.switchContext(gui.Contexts.CommitFiles.Context)
}
2019-11-05 06:11:35 +02:00
func (gui *Gui) refreshSecondaryPatchPanel() error {
2020-08-18 14:02:35 +02:00
// TODO: swap out for secondaryPatchPanelUpdateOpts
if gui.GitCommand.PatchManager.CommitSelected() {
2020-08-18 00:26:40 +02:00
gui.splitMainPanel(true)
2019-11-05 06:11:35 +02:00
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 02:34:10 +02:00
return nil
2019-11-05 06:11:35 +02:00
})
} else {
2020-08-18 00:26:40 +02:00
gui.splitMainPanel(false)
2019-11-05 06:11:35 +02:00
}
return nil
}
2020-08-18 14:02:35 +02:00
func (gui *Gui) secondaryPatchPanelUpdateOpts() *viewUpdateOpts {
if gui.GitCommand.PatchManager.CommitSelected() {
patch := gui.GitCommand.PatchManager.RenderAggregatedPatchColored(false)
return &viewUpdateOpts{
title: "Custom Patch",
noWrap: true,
highlight: true,
task: gui.createRenderStringWithoutScrollTask(patch),
}
}
return nil
}