mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-26 09:00:57 +02:00
240 lines
5.7 KiB
Go
240 lines
5.7 KiB
Go
package gui
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/jesseduffield/gocui"
|
|
)
|
|
|
|
var cyclableViews = []string{"files", "branches", "commits", "stash"}
|
|
|
|
func (gui *Gui) refreshSidePanels(g *gocui.Gui) error {
|
|
gui.refreshBranches(g)
|
|
gui.gui.refreshFiles(g)
|
|
gui.refreshCommits(g)
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) nextView(g *gocui.Gui, v *gocui.View) error {
|
|
var focusedViewName string
|
|
if v == nil || v.Name() == cyclableViews[len(cyclableViews)-1] {
|
|
focusedViewName = cyclableViews[0]
|
|
} else {
|
|
for i := range cyclableViews {
|
|
if v.Name() == cyclableViews[i] {
|
|
focusedViewName = cyclableViews[i+1]
|
|
break
|
|
}
|
|
if i == len(cyclableViews)-1 {
|
|
gui.Log.Info(v.Name() + " is not in the list of views")
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
focusedView, err := g.View(focusedViewName)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return gui.gui.switchFocus(g, v, focusedView)
|
|
}
|
|
|
|
func (gui *Gui) previousView(g *gocui.Gui, v *gocui.View) error {
|
|
var focusedViewName string
|
|
if v == nil || v.Name() == cyclableViews[0] {
|
|
focusedViewName = cyclableViews[len(cyclableViews)-1]
|
|
} else {
|
|
for i := range cyclableViews {
|
|
if v.Name() == cyclableViews[i] {
|
|
focusedViewName = cyclableViews[i-1] // TODO: make this work properly
|
|
break
|
|
}
|
|
if i == len(cyclableViews)-1 {
|
|
devLog(v.Name() + " is not in the list of views")
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
focusedView, err := g.View(focusedViewName)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return gui.switchFocus(g, v, focusedView)
|
|
}
|
|
|
|
func (gui *Gui) newLineFocused(g *gocui.Gui, v *gocui.View) error {
|
|
mainView, _ := g.View("main")
|
|
mainView.SetOrigin(0, 0)
|
|
|
|
switch v.Name() {
|
|
case "files":
|
|
return gui.handleFileSelect(g, v)
|
|
case "branches":
|
|
return handleBranchSelect(g, v)
|
|
case "confirmation":
|
|
return nil
|
|
case "commitMessage":
|
|
return handleCommitFocused(g, v)
|
|
case "main":
|
|
// TODO: pull this out into a 'view focused' function
|
|
refreshMergePanel(g)
|
|
v.Highlight = false
|
|
return nil
|
|
case "commits":
|
|
return handleCommitSelect(g, v)
|
|
case "stash":
|
|
return handleStashEntrySelect(g, v)
|
|
default:
|
|
panic("No view matching newLineFocused switch statement")
|
|
}
|
|
}
|
|
|
|
func (gui *Gui) returnFocus(g *gocui.Gui, v *gocui.View) error {
|
|
previousView, err := g.View(state.PreviousView)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return gui.switchFocus(g, v, previousView)
|
|
}
|
|
|
|
// pass in oldView = nil if you don't want to be able to return to your old view
|
|
func (gui *Gui) switchFocus(g *gocui.Gui, oldView, newView *gocui.View) error {
|
|
// we assume we'll never want to return focus to a confirmation panel i.e.
|
|
// we should never stack confirmation panels
|
|
if oldView != nil && oldView.Name() != "confirmation" {
|
|
oldView.Highlight = false
|
|
devLog("setting previous view to:", oldView.Name())
|
|
state.PreviousView = oldView.Name()
|
|
}
|
|
newView.Highlight = true
|
|
devLog("new focused view is " + newView.Name())
|
|
if _, err := g.SetCurrentView(newView.Name()); err != nil {
|
|
return err
|
|
}
|
|
g.Cursor = newView.Editable
|
|
return newLineFocused(g, newView)
|
|
}
|
|
|
|
func (gui *Gui) getItemPosition(v *gocui.View) int {
|
|
_, cy := v.Cursor()
|
|
_, oy := v.Origin()
|
|
return oy + cy
|
|
}
|
|
|
|
func (gui *Gui) cursorUp(g *gocui.Gui, v *gocui.View) error {
|
|
// swallowing cursor movements in main
|
|
// TODO: pull this out
|
|
if v == nil || v.Name() == "main" {
|
|
return nil
|
|
}
|
|
|
|
ox, oy := v.Origin()
|
|
cx, cy := v.Cursor()
|
|
if err := v.SetCursor(cx, cy-1); err != nil && oy > 0 {
|
|
if err := v.SetOrigin(ox, oy-1); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
newLineFocused(g, v)
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) cursorDown(g *gocui.Gui, v *gocui.View) error {
|
|
// swallowing cursor movements in main
|
|
// TODO: pull this out
|
|
if v == nil || v.Name() == "main" {
|
|
return nil
|
|
}
|
|
cx, cy := v.Cursor()
|
|
ox, oy := v.Origin()
|
|
if cy+oy >= len(v.BufferLines())-2 {
|
|
return nil
|
|
}
|
|
if err := v.SetCursor(cx, cy+1); err != nil {
|
|
if err := v.SetOrigin(ox, oy+1); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
newLineFocused(g, v)
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) resetOrigin(v *gocui.View) error {
|
|
if err := v.SetCursor(0, 0); err != nil {
|
|
return err
|
|
}
|
|
return v.SetOrigin(0, 0)
|
|
}
|
|
|
|
// if the cursor down past the last item, move it to the last line
|
|
func (gui *Gui) correctCursor(v *gocui.View) error {
|
|
cx, cy := v.Cursor()
|
|
_, oy := v.Origin()
|
|
lineCount := len(v.BufferLines()) - 2
|
|
if cy >= lineCount-oy {
|
|
return v.SetCursor(cx, lineCount-oy)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) renderString(g *gocui.Gui, viewName, s string) error {
|
|
g.Update(func(*gocui.Gui) error {
|
|
v, err := g.View(viewName)
|
|
// just in case the view disappeared as this function was called, we'll
|
|
// silently return if it's not found
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
v.Clear()
|
|
fmt.Fprint(v, s)
|
|
v.Wrap = true
|
|
return nil
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) optionsMapToString(optionsMap map[string]string) string {
|
|
optionsArray := make([]string, 0)
|
|
for key, description := range optionsMap {
|
|
optionsArray = append(optionsArray, key+": "+description)
|
|
}
|
|
sort.Strings(optionsArray)
|
|
return strings.Join(optionsArray, ", ")
|
|
}
|
|
|
|
func (gui *Gui) renderOptionsMap(g *gocui.Gui, optionsMap map[string]string) error {
|
|
return gui.renderString(g, "options", optionsMapToString(optionsMap))
|
|
}
|
|
|
|
func (gui *Gui) loader() string {
|
|
characters := "|/-\\"
|
|
now := time.Now()
|
|
nanos := now.UnixNano()
|
|
index := nanos / 50000000 % int64(len(characters))
|
|
return characters[index : index+1]
|
|
}
|
|
|
|
// TODO: refactor properly
|
|
func (gui *Gui) getFilesView(g *gocui.Gui) *gocui.View {
|
|
v, _ := g.View("files")
|
|
return v
|
|
}
|
|
|
|
func (gui *Gui) getCommitsView(g *gocui.Gui) *gocui.View {
|
|
v, _ := g.View("commits")
|
|
return v
|
|
}
|
|
|
|
func (gui *Gui) getCommitMessageView(g *gocui.Gui) *gocui.View {
|
|
v, _ := g.View("commitMessage")
|
|
return v
|
|
}
|
|
|
|
func (gui *Gui) trimmedContent(v *gocui.View) string {
|
|
return strings.TrimSpace(v.Buffer())
|
|
}
|