forked from jesseduffield/lazygit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76b66ae
commit a8db672
Showing
5 changed files
with
792 additions
and
769 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package gui | ||
|
||
import "github.com/jesseduffield/gocui" | ||
|
||
func (gui *Gui) inFilterMode() bool { | ||
return gui.State.FilterPath != "" | ||
} | ||
|
||
func (gui *Gui) validateNotInFilterMode() (bool, error) { | ||
if gui.inFilterMode() { | ||
return false, gui.createConfirmationPanel(gui.g, gui.g.CurrentView(), true, gui.Tr.SLocalize("MustExitFilterModeTitle"), gui.Tr.SLocalize("MustExitFilterModePrompt"), func(*gocui.Gui, *gocui.View) error { | ||
return gui.exitFilterMode() | ||
}, nil) | ||
} | ||
return true, nil | ||
} | ||
|
||
func (gui *Gui) exitFilterMode() error { | ||
gui.State.FilterPath = "" | ||
return gui.Errors.ErrRestart | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
package gui | ||
|
||
import ( | ||
"math" | ||
"strings" | ||
|
||
"github.com/fatih/color" | ||
"github.com/jesseduffield/gocui" | ||
"github.com/jesseduffield/lazygit/pkg/utils" | ||
) | ||
|
||
func (gui *Gui) nextScreenMode(g *gocui.Gui, v *gocui.View) error { | ||
gui.State.ScreenMode = utils.NextIntInCycle([]int{SCREEN_NORMAL, SCREEN_HALF, SCREEN_FULL}, gui.State.ScreenMode) | ||
// commits render differently depending on whether we're in fullscreen more or not | ||
if err := gui.refreshCommitsViewWithSelection(); err != nil { | ||
return err | ||
} | ||
// same with branches | ||
if err := gui.refreshBranchesViewWithSelection(); err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (gui *Gui) prevScreenMode(g *gocui.Gui, v *gocui.View) error { | ||
gui.State.ScreenMode = utils.PrevIntInCycle([]int{SCREEN_NORMAL, SCREEN_HALF, SCREEN_FULL}, gui.State.ScreenMode) | ||
// commits render differently depending on whether we're in fullscreen more or not | ||
if err := gui.refreshCommitsViewWithSelection(); err != nil { | ||
return err | ||
} | ||
// same with branches | ||
if err := gui.refreshBranchesViewWithSelection(); err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (gui *Gui) scrollUpView(viewName string) error { | ||
mainView, _ := gui.g.View(viewName) | ||
ox, oy := mainView.Origin() | ||
newOy := int(math.Max(0, float64(oy-gui.Config.GetUserConfig().GetInt("gui.scrollHeight")))) | ||
return mainView.SetOrigin(ox, newOy) | ||
} | ||
|
||
func (gui *Gui) scrollDownView(viewName string) error { | ||
mainView, _ := gui.g.View(viewName) | ||
ox, oy := mainView.Origin() | ||
y := oy | ||
if !gui.Config.GetUserConfig().GetBool("gui.scrollPastBottom") { | ||
_, sy := mainView.Size() | ||
y += sy | ||
} | ||
scrollHeight := gui.Config.GetUserConfig().GetInt("gui.scrollHeight") | ||
if y < mainView.LinesHeight() { | ||
if err := mainView.SetOrigin(ox, oy+scrollHeight); err != nil { | ||
return err | ||
} | ||
} | ||
if manager, ok := gui.viewBufferManagerMap[viewName]; ok { | ||
manager.ReadLines(scrollHeight) | ||
} | ||
return nil | ||
} | ||
|
||
func (gui *Gui) scrollUpMain(g *gocui.Gui, v *gocui.View) error { | ||
return gui.scrollUpView("main") | ||
} | ||
|
||
func (gui *Gui) scrollDownMain(g *gocui.Gui, v *gocui.View) error { | ||
return gui.scrollDownView("main") | ||
} | ||
|
||
func (gui *Gui) scrollUpSecondary(g *gocui.Gui, v *gocui.View) error { | ||
return gui.scrollUpView("secondary") | ||
} | ||
|
||
func (gui *Gui) scrollDownSecondary(g *gocui.Gui, v *gocui.View) error { | ||
return gui.scrollDownView("secondary") | ||
} | ||
|
||
func (gui *Gui) scrollUpConfirmationPanel(g *gocui.Gui, v *gocui.View) error { | ||
if v.Editable { | ||
return nil | ||
} | ||
return gui.scrollUpView("confirmation") | ||
} | ||
|
||
func (gui *Gui) scrollDownConfirmationPanel(g *gocui.Gui, v *gocui.View) error { | ||
if v.Editable { | ||
return nil | ||
} | ||
return gui.scrollDownView("confirmation") | ||
} | ||
|
||
func (gui *Gui) handleRefresh(g *gocui.Gui, v *gocui.View) error { | ||
return gui.refreshSidePanels(refreshOptions{mode: ASYNC}) | ||
} | ||
|
||
func (gui *Gui) handleMouseDownMain(g *gocui.Gui, v *gocui.View) error { | ||
if gui.popupPanelFocused() { | ||
return nil | ||
} | ||
|
||
switch g.CurrentView().Name() { | ||
case "files": | ||
return gui.enterFile(false, v.SelectedLineIdx()) | ||
case "commitFiles": | ||
return gui.enterCommitFile(v.SelectedLineIdx()) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (gui *Gui) handleMouseDownSecondary(g *gocui.Gui, v *gocui.View) error { | ||
if gui.popupPanelFocused() { | ||
return nil | ||
} | ||
|
||
switch g.CurrentView().Name() { | ||
case "files": | ||
return gui.enterFile(true, v.SelectedLineIdx()) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (gui *Gui) handleInfoClick(g *gocui.Gui, v *gocui.View) error { | ||
if !gui.g.Mouse { | ||
return nil | ||
} | ||
|
||
cx, _ := v.Cursor() | ||
width, _ := v.Size() | ||
|
||
// if we're in the normal context there will be a donate button here | ||
// if we have ('reset') at the end then | ||
if gui.inFilterMode() { | ||
if width-cx <= len(gui.Tr.SLocalize("(reset)")) { | ||
return gui.exitFilterMode() | ||
} else { | ||
return nil | ||
} | ||
} | ||
|
||
if cx <= len(gui.Tr.SLocalize("Donate")) { | ||
return gui.OSCommand.OpenLink("https://github.com/sponsors/jesseduffield") | ||
} | ||
return nil | ||
} | ||
|
||
func (gui *Gui) fetch(g *gocui.Gui, v *gocui.View, canAskForCredentials bool) (unamePassOpend bool, err error) { | ||
unamePassOpend = false | ||
err = gui.GitCommand.Fetch(func(passOrUname string) string { | ||
unamePassOpend = true | ||
return gui.waitForPassUname(gui.g, v, passOrUname) | ||
}, canAskForCredentials) | ||
|
||
if canAskForCredentials && err != nil && strings.Contains(err.Error(), "exit status 128") { | ||
colorFunction := color.New(color.FgRed).SprintFunc() | ||
coloredMessage := colorFunction(strings.TrimSpace(gui.Tr.SLocalize("PassUnameWrong"))) | ||
close := func(g *gocui.Gui, v *gocui.View) error { | ||
return nil | ||
} | ||
_ = gui.createConfirmationPanel(g, v, true, gui.Tr.SLocalize("Error"), coloredMessage, close, close) | ||
} | ||
|
||
gui.refreshSidePanels(refreshOptions{scope: []int{BRANCHES, COMMITS, REMOTES, TAGS}, mode: ASYNC}) | ||
|
||
return unamePassOpend, err | ||
} |
Oops, something went wrong.