1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00
lazygit/status_panel.go

41 lines
907 B
Go
Raw Normal View History

2018-06-02 08:35:49 +10:00
package main
import (
2018-08-06 07:37:14 +02:00
"fmt"
2018-06-02 08:35:49 +10:00
2018-08-06 07:37:14 +02:00
"github.com/fatih/color"
"github.com/jesseduffield/gocui"
2018-06-02 08:35:49 +10:00
)
func refreshStatus(g *gocui.Gui) error {
2018-08-06 07:37:14 +02:00
v, err := g.View("status")
if err != nil {
panic(err)
}
// for some reason if this isn't wrapped in an update the clear seems to
// be applied after the other things or something like that; the panel's
// contents end up cleared
g.Update(func(*gocui.Gui) error {
v.Clear()
pushables, pullables := gitUpstreamDifferenceCount()
fmt.Fprint(v, "↑"+pushables+"↓"+pullables)
branches := state.Branches
if err := updateHasMergeConflictStatus(); err != nil {
return err
}
if state.HasMergeConflicts {
fmt.Fprint(v, coloredString(" (merging)", color.FgYellow))
2018-08-06 07:37:14 +02:00
}
2018-08-06 07:37:14 +02:00
if len(branches) == 0 {
return nil
}
branch := branches[0]
name := coloredString(branch.Name, branch.getColor())
fmt.Fprint(v, " "+name)
2018-08-06 07:37:14 +02:00
return nil
})
2018-06-02 08:35:49 +10:00
2018-08-06 07:37:14 +02:00
return nil
2018-06-02 08:35:49 +10:00
}