1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-30 09:16:47 +02:00
lazygit/gui.go

302 lines
8.3 KiB
Go
Raw Normal View History

2018-05-19 09:04:33 +02:00
package main
2018-05-19 03:16:34 +02:00
import (
2018-05-26 05:23:39 +02:00
2018-05-19 09:04:33 +02:00
// "io"
// "io/ioutil"
2018-05-26 05:23:39 +02:00
2018-05-19 03:16:34 +02:00
"log"
2018-06-02 05:51:03 +02:00
"time"
2018-05-19 09:04:33 +02:00
// "strings"
2018-06-09 11:06:33 +02:00
"github.com/golang-collections/collections/stack"
2018-06-05 10:47:31 +02:00
"github.com/jesseduffield/gocui"
2018-05-19 03:16:34 +02:00
)
2018-05-21 12:52:48 +02:00
type stateType struct {
2018-06-09 11:06:33 +02:00
GitFiles []GitFile
Branches []Branch
Commits []Commit
StashEntries []StashEntry
PreviousView string
HasMergeConflicts bool
ConflictIndex int
ConflictTop bool
Conflicts []conflict
EditHistory *stack.Stack
}
type conflict struct {
start int
middle int
end int
2018-05-19 09:04:33 +02:00
}
2018-05-26 05:23:39 +02:00
var state = stateType{
2018-06-09 11:06:33 +02:00
GitFiles: make([]GitFile, 0),
PreviousView: "files",
Commits: make([]Commit, 0),
StashEntries: make([]StashEntry, 0),
ConflictIndex: 0,
ConflictTop: true,
Conflicts: make([]conflict, 0),
EditHistory: stack.New(),
2018-05-26 05:23:39 +02:00
}
2018-05-21 12:52:48 +02:00
2018-05-26 05:23:39 +02:00
func scrollUpMain(g *gocui.Gui, v *gocui.View) error {
2018-05-21 12:52:48 +02:00
mainView, _ := g.View("main")
ox, oy := mainView.Origin()
if oy >= 1 {
return mainView.SetOrigin(ox, oy-1)
2018-05-19 03:16:34 +02:00
}
2018-05-21 12:52:48 +02:00
return nil
}
2018-05-19 03:16:34 +02:00
2018-05-26 05:23:39 +02:00
func scrollDownMain(g *gocui.Gui, v *gocui.View) error {
2018-05-21 12:52:48 +02:00
mainView, _ := g.View("main")
ox, oy := mainView.Origin()
if oy < len(mainView.BufferLines()) {
return mainView.SetOrigin(ox, oy+1)
}
return nil
2018-05-19 09:04:33 +02:00
}
2018-06-09 11:06:33 +02:00
func handleRefresh(g *gocui.Gui, v *gocui.View) error {
return refreshSidePanels(g)
}
2018-05-19 09:04:33 +02:00
func keybindings(g *gocui.Gui) error {
2018-05-21 14:34:02 +02:00
if err := g.SetKeybinding("", gocui.KeyTab, gocui.ModNone, nextView); err != nil {
return err
}
if err := g.SetKeybinding("", 'q', gocui.ModNone, quit); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyArrowDown, gocui.ModNone, cursorDown); err != nil {
return err
}
if err := g.SetKeybinding("", gocui.KeyArrowUp, gocui.ModNone, cursorUp); err != nil {
return err
}
2018-05-26 05:23:39 +02:00
if err := g.SetKeybinding("", gocui.KeyPgup, gocui.ModNone, scrollUpMain); err != nil {
2018-05-21 14:34:02 +02:00
return err
}
2018-05-26 05:23:39 +02:00
if err := g.SetKeybinding("", gocui.KeyPgdn, gocui.ModNone, scrollDownMain); err != nil {
2018-05-21 14:34:02 +02:00
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("", 'P', gocui.ModNone, pushFiles); err != nil {
return err
}
if err := g.SetKeybinding("", 'p', gocui.ModNone, pullFiles); err != nil {
return err
}
if err := g.SetKeybinding("", 'R', gocui.ModNone, handleRefresh); err != nil {
return err
}
2018-05-27 08:32:09 +02:00
if err := g.SetKeybinding("files", 'c', gocui.ModNone, handleCommitPress); err != nil {
2018-05-21 14:34:02 +02:00
return err
2018-05-19 09:04:33 +02:00
}
2018-05-21 12:52:48 +02:00
if err := g.SetKeybinding("files", gocui.KeySpace, gocui.ModNone, handleFilePress); err != nil {
2018-05-19 09:04:33 +02:00
return err
}
2018-06-05 10:48:46 +02:00
if err := g.SetKeybinding("files", 'd', gocui.ModNone, handleFileRemove); err != nil {
2018-05-27 08:32:09 +02:00
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("files", 'm', gocui.ModNone, handleSwitchToMerge); err != nil {
return err
}
2018-05-27 08:32:09 +02:00
if err := g.SetKeybinding("files", 'o', gocui.ModNone, handleFileOpen); err != nil {
return err
}
if err := g.SetKeybinding("files", 's', gocui.ModNone, handleSublimeFileOpen); err != nil {
2018-05-21 14:34:02 +02:00
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("files", 'i', gocui.ModNone, handleIgnoreFile); err != nil {
2018-05-21 14:34:02 +02:00
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("files", 'S', gocui.ModNone, handleStashSave); err != nil {
2018-06-01 15:23:31 +02:00
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("files", 'a', gocui.ModNone, handleAbortMerge); err != nil {
2018-05-21 14:34:02 +02:00
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("main", gocui.KeyArrowUp, gocui.ModNone, handleSelectTop); err != nil {
return err
}
if err := g.SetKeybinding("main", gocui.KeyEsc, gocui.ModNone, handleEscapeMerge); err != nil {
return err
}
if err := g.SetKeybinding("main", gocui.KeyArrowDown, gocui.ModNone, handleSelectBottom); err != nil {
return err
}
if err := g.SetKeybinding("main", gocui.KeySpace, gocui.ModNone, handlePickConflict); err != nil {
return err
}
if err := g.SetKeybinding("main", gocui.KeyArrowLeft, gocui.ModNone, handleSelectPrevConflict); err != nil {
return err
}
if err := g.SetKeybinding("main", gocui.KeyArrowRight, gocui.ModNone, handleSelectNextConflict); err != nil {
return err
}
if err := g.SetKeybinding("main", 'z', gocui.ModNone, handlePopFileSnapshot); err != nil {
2018-05-21 12:52:48 +02:00
return err
}
2018-05-26 05:23:39 +02:00
if err := g.SetKeybinding("branches", gocui.KeySpace, gocui.ModNone, handleBranchPress); err != nil {
return err
2018-05-19 09:04:33 +02:00
}
if err := g.SetKeybinding("branches", 'c', gocui.ModNone, handleCheckoutByName); err != nil {
return err
}
2018-05-27 08:32:09 +02:00
if err := g.SetKeybinding("branches", 'F', gocui.ModNone, handleForceCheckout); err != nil {
return err
}
2018-06-02 05:51:03 +02:00
if err := g.SetKeybinding("branches", 'n', gocui.ModNone, handleNewBranch); err != nil {
return err
}
2018-06-09 11:06:33 +02:00
if err := g.SetKeybinding("branches", 'm', gocui.ModNone, handleMerge); err != nil {
return err
}
2018-05-27 08:32:09 +02:00
if err := g.SetKeybinding("commits", 's', gocui.ModNone, handleCommitSquashDown); err != nil {
return err
}
if err := g.SetKeybinding("commits", 'r', gocui.ModNone, handleRenameCommit); err != nil {
return err
}
2018-06-02 05:51:03 +02:00
if err := g.SetKeybinding("commits", 'g', gocui.ModNone, handleResetToCommit); err != nil {
return err
}
2018-06-05 10:48:46 +02:00
if err := g.SetKeybinding("stash", gocui.KeySpace, gocui.ModNone, handleStashApply); err != nil {
return err
}
// TODO: come up with a better keybinding (p/P used for pushing/pulling which
// I'd like to be global. Perhaps all global keybindings should use a modifier
// like command? But then there's gonna be hotkey conflicts with the terminal
if err := g.SetKeybinding("stash", 'k', gocui.ModNone, handleStashPop); err != nil {
2018-05-26 08:08:08 +02:00
return err
}
2018-06-05 10:48:46 +02:00
if err := g.SetKeybinding("stash", 'd', gocui.ModNone, handleStashDrop); err != nil {
return err
}
2018-05-19 09:04:33 +02:00
return nil
2018-05-19 03:16:34 +02:00
}
func layout(g *gocui.Gui) error {
2018-06-09 11:06:33 +02:00
g.Highlight = true
g.SelFgColor = gocui.AttrBold
2018-05-26 05:23:39 +02:00
width, height := g.Size()
leftSideWidth := width / 3
2018-06-01 15:23:31 +02:00
statusFilesBoundary := 2
2018-06-09 11:06:33 +02:00
filesBranchesBoundary := 2 * height / 5 // height - 20
commitsBranchesBoundary := 3 * height / 5 // height - 10
commitsStashBoundary := height - 5 // height - 5
2018-05-21 12:52:48 +02:00
2018-06-01 15:23:31 +02:00
optionsTop := height - 2
2018-05-21 12:52:48 +02:00
// hiding options if there's not enough space
2018-05-26 05:23:39 +02:00
if height < 30 {
2018-06-01 15:23:31 +02:00
optionsTop = height - 1
2018-05-21 12:52:48 +02:00
}
2018-06-05 10:48:46 +02:00
filesView, err := g.SetView("files", 0, statusFilesBoundary+1, leftSideWidth, filesBranchesBoundary-1)
2018-05-19 09:04:33 +02:00
if err != nil {
2018-05-19 03:16:34 +02:00
if err != gocui.ErrUnknownView {
return err
}
2018-06-05 10:48:46 +02:00
filesView.Highlight = true
filesView.Title = "Files"
2018-05-19 03:16:34 +02:00
}
2018-06-01 15:23:31 +02:00
if v, err := g.SetView("status", 0, statusFilesBoundary-2, leftSideWidth, statusFilesBoundary); err != nil {
if err != gocui.ErrUnknownView {
return err
}
v.Title = "Status"
}
2018-06-05 10:48:46 +02:00
mainView, err := g.SetView("main", leftSideWidth+1, 0, width-1, optionsTop)
if err != nil {
2018-05-19 03:16:34 +02:00
if err != gocui.ErrUnknownView {
return err
}
2018-06-05 10:48:46 +02:00
mainView.Title = "Diff"
mainView.Wrap = true
2018-05-26 05:23:39 +02:00
}
2018-06-05 10:48:46 +02:00
if v, err := g.SetView("branches", 0, filesBranchesBoundary, leftSideWidth, commitsBranchesBoundary-1); err != nil {
2018-05-26 05:23:39 +02:00
if err != gocui.ErrUnknownView {
2018-05-21 12:52:48 +02:00
return err
}
2018-06-01 15:23:31 +02:00
v.Title = "Branches"
2018-05-26 05:23:39 +02:00
2018-05-21 12:52:48 +02:00
}
2018-06-05 10:48:46 +02:00
if v, err := g.SetView("commits", 0, commitsBranchesBoundary, leftSideWidth, commitsStashBoundary-1); err != nil {
2018-05-21 12:52:48 +02:00
if err != gocui.ErrUnknownView {
return err
}
2018-06-01 15:23:31 +02:00
v.Title = "Commits"
2018-05-21 12:52:48 +02:00
2018-06-05 10:48:46 +02:00
}
if v, err := g.SetView("stash", 0, commitsStashBoundary, leftSideWidth, optionsTop); err != nil {
if err != gocui.ErrUnknownView {
return err
}
v.Title = "Stash"
2018-05-21 12:52:48 +02:00
}
2018-06-01 15:23:31 +02:00
if v, err := g.SetView("options", -1, optionsTop, width, optionsTop+2); err != nil {
2018-05-21 12:52:48 +02:00
if err != gocui.ErrUnknownView {
2018-05-19 09:04:33 +02:00
return err
}
2018-06-01 15:23:31 +02:00
v.BgColor = gocui.ColorBlue
v.Frame = false
2018-05-21 12:52:48 +02:00
v.Title = "Options"
2018-06-05 10:48:46 +02:00
// these are only called once
handleFileSelect(g, filesView)
refreshFiles(g)
refreshBranches(g)
refreshCommits(g)
refreshStashEntries(g)
nextView(g, nil)
2018-05-19 03:16:34 +02:00
}
return nil
}
2018-06-02 05:51:03 +02:00
func fetch(g *gocui.Gui) {
gitFetch()
refreshStatus(g)
}
2018-05-19 09:04:33 +02:00
func run() {
g, err := gocui.NewGui(gocui.OutputNormal)
if err != nil {
log.Panicln(err)
}
defer g.Close()
2018-06-02 05:51:03 +02:00
// periodically fetching to check for upstream differences
go func() {
for range time.Tick(time.Second * 60) {
fetch(g)
}
}()
2018-05-19 09:04:33 +02:00
g.SetManagerFunc(layout)
if err := keybindings(g); err != nil {
log.Panicln(err)
}
if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
log.Panicln(err)
}
}
2018-05-26 05:23:39 +02:00
func quit(g *gocui.Gui, v *gocui.View) error {
return gocui.ErrQuit
}