2018-08-13 12:26:02 +02:00
|
|
|
package commands
|
2018-08-10 13:33:49 +02:00
|
|
|
|
|
|
|
import (
|
2018-12-07 09:52:31 +02:00
|
|
|
"fmt"
|
2018-08-10 13:33:49 +02:00
|
|
|
"strings"
|
|
|
|
|
2019-10-18 09:48:37 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/theme"
|
|
|
|
|
2018-08-10 13:33:49 +02:00
|
|
|
"github.com/fatih/color"
|
2018-08-13 12:26:02 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
2018-08-10 13:33:49 +02:00
|
|
|
)
|
|
|
|
|
2018-08-13 12:26:02 +02:00
|
|
|
// Branch : A git branch
|
|
|
|
// duplicating this for now
|
|
|
|
type Branch struct {
|
2018-12-07 09:52:31 +02:00
|
|
|
Name string
|
|
|
|
Recency string
|
|
|
|
Pushables string
|
|
|
|
Pullables string
|
|
|
|
Selected bool
|
2018-08-13 12:26:02 +02:00
|
|
|
}
|
|
|
|
|
2019-05-22 15:34:29 +02:00
|
|
|
// GetDisplayStrings returns the display string of branch
|
2019-02-16 06:17:44 +02:00
|
|
|
func (b *Branch) GetDisplayStrings(isFocused bool) []string {
|
2019-11-17 01:23:06 +02:00
|
|
|
displayName := utils.ColoredString(b.Name, GetBranchColor(b.Name))
|
2019-02-16 06:17:44 +02:00
|
|
|
if isFocused && b.Selected && b.Pushables != "" && b.Pullables != "" {
|
2018-12-10 13:26:30 +02:00
|
|
|
displayName = fmt.Sprintf("%s ↑%s↓%s", displayName, b.Pushables, b.Pullables)
|
2018-12-07 09:52:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return []string{b.Recency, displayName}
|
2018-08-13 12:26:02 +02:00
|
|
|
}
|
2018-08-10 13:33:49 +02:00
|
|
|
|
2019-11-17 01:23:06 +02:00
|
|
|
// GetBranchColor branch color
|
|
|
|
func GetBranchColor(name string) color.Attribute {
|
|
|
|
branchType := strings.Split(name, "/")[0]
|
|
|
|
|
|
|
|
switch branchType {
|
2018-08-10 13:33:49 +02:00
|
|
|
case "feature":
|
|
|
|
return color.FgGreen
|
|
|
|
case "bugfix":
|
|
|
|
return color.FgYellow
|
|
|
|
case "hotfix":
|
|
|
|
return color.FgRed
|
|
|
|
default:
|
2019-10-18 09:48:37 +02:00
|
|
|
return theme.DefaultTextColor
|
2018-08-10 13:33:49 +02:00
|
|
|
}
|
|
|
|
}
|