mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-31 22:22:14 +02:00
improved UI
This commit is contained in:
parent
023a39a903
commit
4b511863f9
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
development.log
|
@ -2,7 +2,7 @@
|
|||||||
// integers, floats, booleans, etc. Here are a few
|
// integers, floats, booleans, etc. Here are a few
|
||||||
// basic examples.
|
// basic examples.
|
||||||
|
|
||||||
package gitgot
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -59,38 +59,54 @@ func breakHere() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func filesToStage(statusString string) []string {
|
func getFilesToStage(statusString string) []string {
|
||||||
targets := []string{"Changes not staged for commit:", "Untracked files:"}
|
targets := []string{"Changes not staged for commit:", "Untracked files:"}
|
||||||
return filesByMatches(statusString, targets)
|
return filesByMatches(statusString, targets)
|
||||||
}
|
}
|
||||||
|
|
||||||
func filesToUnstage(statusString string) []string {
|
func getFilesToUnstage(statusString string) []string {
|
||||||
targets := []string{"Changes to be committed:"}
|
targets := []string{"Changes to be committed:"}
|
||||||
return filesByMatches(statusString, targets)
|
return filesByMatches(statusString, targets)
|
||||||
}
|
}
|
||||||
|
|
||||||
func runCommand(cmd string) (string, error) {
|
func runCommand(cmd string) (string, error) {
|
||||||
splitCmd := strings.Split(cmd, " ")
|
splitCmd := strings.Split(cmd, " ")
|
||||||
// fmt.Println(splitCmd)
|
|
||||||
|
|
||||||
cmdOut, err := exec.Command(splitCmd[0], splitCmd[1:]...).Output()
|
cmdOut, err := exec.Command(splitCmd[0], splitCmd[1:]...).Output()
|
||||||
|
|
||||||
// if err != nil {
|
|
||||||
// os.Exit(1)
|
|
||||||
// }
|
|
||||||
|
|
||||||
return string(cmdOut), err
|
return string(cmdOut), err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getDiff(file string, cached bool) string {
|
||||||
|
devLog(file)
|
||||||
|
cachedArg := ""
|
||||||
|
if cached {
|
||||||
|
cachedArg = "--cached "
|
||||||
|
}
|
||||||
|
s, err := runCommand("git diff " + cachedArg + file)
|
||||||
|
if err != nil {
|
||||||
|
// for now we assume an error means the file was deleted
|
||||||
|
return "deleted"
|
||||||
|
}
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
func stageFile(file string) error {
|
||||||
|
devLog("staging " + file)
|
||||||
|
_, err := runCommand("git add " + file)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func unStageFile(file string) error {
|
||||||
|
_, err := runCommand("git reset HEAD " + file)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
func testGettingFiles() {
|
func testGettingFiles() {
|
||||||
|
|
||||||
statusString, _ := runCommand("git status")
|
statusString, _ := runCommand("git status")
|
||||||
fmt.Println(filesToStage(statusString))
|
fmt.Println(getFilesToStage(statusString))
|
||||||
fmt.Println(filesToUnstage(statusString))
|
fmt.Println(getFilesToUnstage(statusString))
|
||||||
|
|
||||||
runCommand("git add hello-world.go")
|
runCommand("git add hello-world.go")
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
278
gui.go
278
gui.go
@ -1,25 +1,236 @@
|
|||||||
package gitgot
|
// Copyright 2014 The gocui Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
// "io"
|
||||||
|
// "io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
// "strings"
|
||||||
|
"os"
|
||||||
"github.com/jroimartin/gocui"
|
"github.com/jroimartin/gocui"
|
||||||
|
"github.com/fatih/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
type gitFile struct {
|
||||||
|
Name string
|
||||||
|
Staged bool
|
||||||
|
}
|
||||||
|
|
||||||
|
var gitFiles []gitFile
|
||||||
|
|
||||||
|
func nextView(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
if v == nil || v.Name() == "side" {
|
||||||
|
_, err := g.SetCurrentView("main")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err := g.SetCurrentView("side")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func cursorDown(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
if v != nil {
|
||||||
|
cx, cy := v.Cursor()
|
||||||
|
if err := v.SetCursor(cx, cy+1); err != nil {
|
||||||
|
ox, oy := v.Origin()
|
||||||
|
if err := v.SetOrigin(ox, oy+1); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// refresh main panel's text to match newly selected item
|
||||||
|
return handleItemSelect(g, v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func cursorUp(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
if v != 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// refresh main panel's text to match newly selected item
|
||||||
|
return handleItemSelect(g, v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func devLog(s string) {
|
||||||
|
f, _ := os.OpenFile("development.log", os.O_APPEND|os.O_WRONLY, 0644)
|
||||||
|
defer f.Close()
|
||||||
|
|
||||||
|
f.WriteString(s + "\n")
|
||||||
|
}
|
||||||
|
|
||||||
|
func handleItemPress(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
item := getItem(v)
|
||||||
|
|
||||||
|
if item.Staged {
|
||||||
|
unStageFile(item.Name)
|
||||||
|
} else {
|
||||||
|
stageFile(item.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := refreshList(v); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func getItem(v *gocui.View) gitFile {
|
||||||
|
_, lineNumber := v.Cursor()
|
||||||
|
if lineNumber >= len(gitFiles) {
|
||||||
|
return gitFiles[len(gitFiles) - 1]
|
||||||
|
}
|
||||||
|
return gitFiles[lineNumber]
|
||||||
|
}
|
||||||
|
|
||||||
|
func handleItemSelect(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
item := getItem(v)
|
||||||
|
diff := getDiff(item.Name, item.Staged)
|
||||||
|
devLog(diff)
|
||||||
|
if err := renderString(g, diff); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// maxX, maxY := g.Size()
|
||||||
|
// if v, err := g.SetView("msg", maxX/2-30, maxY/2, maxX/2+30, maxY/2+2); err != nil {
|
||||||
|
// if err != gocui.ErrUnknownView {
|
||||||
|
// return err
|
||||||
|
// }
|
||||||
|
// fmt.Fprintln(v, l)
|
||||||
|
// if _, err := g.SetCurrentView("msg"); err != nil {
|
||||||
|
// return err
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func delMsg(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
if err := g.DeleteView("msg"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if _, err := g.SetCurrentView("side"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func quit(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
return gocui.ErrQuit
|
||||||
|
}
|
||||||
|
|
||||||
|
func keybindings(g *gocui.Gui) error {
|
||||||
|
if err := g.SetKeybinding("side", gocui.KeyCtrlSpace, gocui.ModNone, nextView); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := g.SetKeybinding("main", gocui.KeyCtrlSpace, gocui.ModNone, nextView); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := g.SetKeybinding("side", gocui.KeyArrowDown, gocui.ModNone, cursorDown); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := g.SetKeybinding("side", gocui.KeyArrowUp, gocui.ModNone, cursorUp); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := g.SetKeybinding("", gocui.KeyEsc, gocui.ModNone, quit); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := g.SetKeybinding("side", gocui.KeySpace, gocui.ModNone, handleItemPress); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
// if err := g.SetKeybinding("msg", gocui.KeySpace, gocui.ModNone, delMsg); err != nil {
|
||||||
|
// return err
|
||||||
|
// }
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func refreshList(v *gocui.View) error {
|
||||||
|
// get files to stage
|
||||||
|
statusString, _ := runCommand("git status")
|
||||||
|
filesToStage := getFilesToStage(statusString)
|
||||||
|
filesToUnstage := getFilesToUnstage(statusString)
|
||||||
|
// v.Highlight = true
|
||||||
|
// v.SelBgColor = gocui.ColorWhite
|
||||||
|
// v.SelFgColor = gocui.ColorBlack
|
||||||
|
v.Clear()
|
||||||
|
gitFiles = make([]gitFile, 0)
|
||||||
|
red := color.New(color.FgRed)
|
||||||
|
for _, file := range filesToStage {
|
||||||
|
gitFiles = append(gitFiles, gitFile{file, false})
|
||||||
|
red.Fprintln(v, file)
|
||||||
|
}
|
||||||
|
green := color.New(color.FgGreen)
|
||||||
|
for _, file := range filesToUnstage {
|
||||||
|
gitFiles = append(gitFiles, gitFile{file, true})
|
||||||
|
green.Fprintln(v, file)
|
||||||
|
}
|
||||||
|
devLog(fmt.Sprint(gitFiles))
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func layout(g *gocui.Gui) error {
|
||||||
|
maxX, maxY := g.Size()
|
||||||
|
sideView, err := g.SetView("side", -1, -1, 30, maxY)
|
||||||
|
if err != nil {
|
||||||
|
if err != gocui.ErrUnknownView {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
sideView.Title = "Files"
|
||||||
|
devLog("test")
|
||||||
|
refreshList(sideView)
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, err := g.SetView("main", 30, -1, maxX, maxY); err != nil {
|
||||||
|
if err != gocui.ErrUnknownView {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.Editable = true
|
||||||
|
v.Wrap = true
|
||||||
|
if _, err := g.SetCurrentView("side"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
handleItemSelect(g, sideView)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func renderString(g *gocui.Gui, s string) error {
|
||||||
|
g.Update(func(*gocui.Gui) error {
|
||||||
|
v, err := g.View("main")
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
v.Clear()
|
||||||
|
fmt.Fprint(v, s)
|
||||||
|
v.Wrap = true
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func run() {
|
||||||
g, err := gocui.NewGui(gocui.OutputNormal)
|
g, err := gocui.NewGui(gocui.OutputNormal)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Panicln(err)
|
log.Panicln(err)
|
||||||
}
|
}
|
||||||
defer g.Close()
|
defer g.Close()
|
||||||
|
|
||||||
|
g.Cursor = true
|
||||||
|
|
||||||
g.SetManagerFunc(layout)
|
g.SetManagerFunc(layout)
|
||||||
|
|
||||||
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
|
if err := keybindings(g); err != nil {
|
||||||
log.Panicln(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := g.SetKeybinding("", 'a', gocui.ModNone, quit); err != nil {
|
|
||||||
log.Panicln(err)
|
log.Panicln(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -28,25 +239,34 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func layout(g *gocui.Gui) error {
|
// const mcRide = "
|
||||||
maxX, maxY := g.Size()
|
// `.-::-`
|
||||||
if v, err := g.SetView("hello", maxX/2-7, maxY/2, maxX/2+7, maxY/2+2); err != nil {
|
// -/o+oossys+:.
|
||||||
if err != gocui.ErrUnknownView {
|
// `+o++++++osssyys/`
|
||||||
return err
|
// ://-:+.` .::-. . `++oyyo/-/+oooosyhy.
|
||||||
}
|
// `-+sy::-:::/+o+yss+-... /s++ss/:/:+osyoosydh`
|
||||||
fmt.Fprintln(v, "Hello world!")
|
// `-:/+o/:/+:/+-s/:s/o+`/++s++/:--/+shds+++yd:
|
||||||
}
|
// `y+/+soy:+/-o++y+yhyyyo/---/oyhddo/::od-
|
||||||
|
// .+o-``-+syysy//o:-oo+oyyyo+oyhyddds/oshy
|
||||||
if v2, err := g.SetView("hello2", maxX/2-7, maxY/2, maxX/2+7, maxY/2+2); err != nil {
|
// `:o++o+/-....-:/+oooyyh+:ooshhhhhhdddssyyy`
|
||||||
if err != gocui.ErrUnknownView {
|
// .:o+/++ooosso//:::+yo.::hs+++:yhhhhdddhoyhh:
|
||||||
return err
|
// `-/+so///+osyso-.:://++-` `:hhhdsohddhhhdddssh+
|
||||||
}
|
// -+oso++ssoyys:.` ydddddddddddhho+yd+
|
||||||
fmt.Fprintln(v2, "Hello world 2!")
|
// `:sysssssssydh:` `-:::-..-...`ydddddddddyso++shds
|
||||||
}
|
// `/syyysssyyhhdd+``..://+ooo/++ssssoyddddddhho/:::oyhdhs-`
|
||||||
|
// -syyyysssyhhddhyo++++/::+/+/-:::///+sddddhs//+o+/ososyhhs+/.`
|
||||||
return nil
|
// `+hhyyyyyyyhddhs+///://///+ooo/::+o++osyhyyys+--+//o//oosyys++++:..``
|
||||||
}
|
// .sddhyhyyyhddyso++/::://////+syo/:osssssyhsssoooosoo//+ossssyssooooo+++:.
|
||||||
|
// .hdhhhhhhhhhysssssysssssssyyyhddso+soyhhhsssooosyyssso+syysoososoo/++osyo/
|
||||||
func quit(g *gocui.Gui, v *gocui.View) error {
|
// -syyyyyyyyyyyyyyyyyyo/::----:shdsyo+yysyyyssssosyysos+/+++/+ooo++:/+/ooss/
|
||||||
return gocui.ErrQuit
|
// `........----..`` odhyyyhhsysoss++oysso++s/++++syys++/:::/:+sy-
|
||||||
}
|
// `ydyssyysyoyyo+sysyys++s+++++ooo+osss+/+++syy
|
||||||
|
// /dysyssoyyoo+oyyshss//:---:/++++oshhysooosyh`
|
||||||
|
// .dhhhyysyyys++yyyyss+--:::/:///oshddhhyo+osy`
|
||||||
|
// yddhhyyssy+//ssyyso/-:://+ooosyhddhsoo+/+so
|
||||||
|
// +ddhhyysss+osyyysss:::/oyyhhyhddddds+///oy/
|
||||||
|
// /dddhhyyyssysssssss+++ooyhdddddddhdyo///yyo
|
||||||
|
// /dddhyyyyyysssoo+/:-/oshhdddddddssdds+//sys
|
||||||
|
// +ddhhyyhhy/oo+/:::::+syhddddddds -hdyo++ohh`
|
||||||
|
// sddhhysyysoys/:::::osyhdddddddy` sdhsosohh:
|
||||||
|
// `dddddhhhhhhhyo:-/ossoshddddhhd- .ddyssohh/"
|
||||||
|
BIN
hello-world
BIN
hello-world
Binary file not shown.
@ -1,82 +0,0 @@
|
|||||||
// Go has various value types including strings,
|
|
||||||
// integers, floats, booleans, etc. Here are a few
|
|
||||||
// basic examples.
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
// "log"
|
|
||||||
"os/exec"
|
|
||||||
"os"
|
|
||||||
"strings"
|
|
||||||
"regexp"
|
|
||||||
)
|
|
||||||
|
|
||||||
func plus(a int, b int) int {
|
|
||||||
return a + b
|
|
||||||
}
|
|
||||||
|
|
||||||
// from https://gobyexample.com/collection-functions
|
|
||||||
func Map(vs []string, f func(string) string) []string {
|
|
||||||
vsm := make([]string, len(vs))
|
|
||||||
for i, v := range vs {
|
|
||||||
vsm[i] = f(v)
|
|
||||||
}
|
|
||||||
return vsm
|
|
||||||
}
|
|
||||||
|
|
||||||
func sanitisedFileString(fileString string) string {
|
|
||||||
r := regexp.MustCompile("\\s| \\(new commits\\)|.* ")
|
|
||||||
fileString = r.ReplaceAllString(fileString, "")
|
|
||||||
return fileString
|
|
||||||
}
|
|
||||||
|
|
||||||
func filesByMatches(statusString string, targets []string) []string {
|
|
||||||
files := make([]string, 0)
|
|
||||||
for _, target := range targets {
|
|
||||||
if strings.Index(statusString, target) == -1 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
r := regexp.MustCompile("(?s)" + target + ".*?\n\n(.*?)\n\n")
|
|
||||||
fmt.Println(r)
|
|
||||||
|
|
||||||
matchedFileStrings := strings.Split(r.FindStringSubmatch(statusString)[1], "\n")
|
|
||||||
// fmt.Println(matchedFileStrings)
|
|
||||||
|
|
||||||
matchedFiles := Map(matchedFileStrings, sanitisedFileString)
|
|
||||||
// fmt.Println(matchedFiles)
|
|
||||||
files = append(files, matchedFiles...)
|
|
||||||
|
|
||||||
}
|
|
||||||
fmt.Println(files)
|
|
||||||
return files
|
|
||||||
}
|
|
||||||
|
|
||||||
func filesToStage(statusString string) []string {
|
|
||||||
targets := []string{"Changes not staged for commit:", "Untracked files:"}
|
|
||||||
return filesByMatches(statusString, targets)
|
|
||||||
}
|
|
||||||
|
|
||||||
func runCommand(cmd string) (string, error) {
|
|
||||||
splitCmd := strings.Split(cmd, " ")
|
|
||||||
fmt.Println(splitCmd)
|
|
||||||
|
|
||||||
cmdOut, err := exec.Command(splitCmd[0], splitCmd[1:]...).Output()
|
|
||||||
|
|
||||||
// if err != nil {
|
|
||||||
// os.Exit(1)
|
|
||||||
// }
|
|
||||||
|
|
||||||
return string(cmdOut), err
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
|
|
||||||
statusString, _ := runCommand("git status")
|
|
||||||
fmt.Println(filesToStage(statusString))
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user