1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/gui/presentation/branches.go

99 lines
2.6 KiB
Go
Raw Normal View History

2020-02-25 11:55:36 +02:00
package presentation
import (
"fmt"
"strings"
2022-03-19 10:12:58 +02:00
"github.com/jesseduffield/generics/slices"
"github.com/jesseduffield/lazygit/pkg/commands/models"
"github.com/jesseduffield/lazygit/pkg/gui/style"
2022-03-24 08:49:25 +02:00
"github.com/jesseduffield/lazygit/pkg/i18n"
2020-02-25 11:55:36 +02:00
"github.com/jesseduffield/lazygit/pkg/theme"
"github.com/jesseduffield/lazygit/pkg/utils"
2020-02-25 11:55:36 +02:00
)
var branchPrefixColorCache = make(map[string]style.TextStyle)
2022-03-24 08:49:25 +02:00
func GetBranchListDisplayStrings(branches []*models.Branch, fullDescription bool, diffName string, tr *i18n.TranslationSet) [][]string {
2022-03-19 10:12:58 +02:00
return slices.Map(branches, func(branch *models.Branch) []string {
diffed := branch.Name == diffName
return getBranchDisplayStrings(branch, fullDescription, diffed, tr)
})
2020-02-25 11:55:36 +02:00
}
// getBranchDisplayStrings returns the display string of branch
2022-03-24 08:49:25 +02:00
func getBranchDisplayStrings(b *models.Branch, fullDescription bool, diffed bool, tr *i18n.TranslationSet) []string {
2020-03-26 11:29:35 +02:00
displayName := b.Name
if b.DisplayName != "" {
displayName = b.DisplayName
}
2021-08-01 08:02:49 +02:00
nameTextStyle := GetBranchTextStyle(b.Name)
if diffed {
2021-08-01 08:02:49 +02:00
nameTextStyle = theme.DiffTerminalColor
}
2021-08-01 08:02:49 +02:00
coloredName := nameTextStyle.Sprint(displayName)
2021-06-05 07:56:50 +02:00
if b.IsTrackingRemote() {
2022-03-24 08:49:25 +02:00
coloredName = fmt.Sprintf("%s %s", coloredName, ColoredBranchStatus(b, tr))
2020-02-25 11:55:36 +02:00
}
recencyColor := style.FgCyan
if b.Recency == " *" {
recencyColor = style.FgGreen
}
res := []string{recencyColor.Sprint(b.Recency), coloredName}
if fullDescription {
return append(
res,
fmt.Sprintf("%s %s",
style.FgYellow.Sprint(b.UpstreamRemote),
style.FgYellow.Sprint(b.UpstreamBranch),
),
)
}
return res
2020-02-25 11:55:36 +02:00
}
2021-08-01 08:02:49 +02:00
// GetBranchTextStyle branch color
func GetBranchTextStyle(name string) style.TextStyle {
2020-02-25 11:55:36 +02:00
branchType := strings.Split(name, "/")[0]
if value, ok := branchPrefixColorCache[branchType]; ok {
return value
}
2020-02-25 11:55:36 +02:00
switch branchType {
case "feature":
return style.FgGreen
2020-02-25 11:55:36 +02:00
case "bugfix":
return style.FgYellow
2020-02-25 11:55:36 +02:00
case "hotfix":
return style.FgRed
2020-02-25 11:55:36 +02:00
default:
return theme.DefaultTextColor
}
}
2021-06-05 07:56:50 +02:00
2022-03-24 08:49:25 +02:00
func ColoredBranchStatus(branch *models.Branch, tr *i18n.TranslationSet) string {
colour := style.FgYellow
2022-03-24 08:49:25 +02:00
if !branch.IsTrackingRemote() || branch.UpstreamGone {
colour = style.FgRed
2022-03-24 08:49:25 +02:00
} else if branch.MatchesUpstream() {
colour = style.FgGreen
2021-06-05 07:56:50 +02:00
}
2022-03-24 08:49:25 +02:00
return colour.Sprint(BranchStatus(branch, tr))
2021-06-05 07:56:50 +02:00
}
2022-03-24 08:49:25 +02:00
func BranchStatus(branch *models.Branch, tr *i18n.TranslationSet) string {
if branch.UpstreamGone {
return tr.UpstreamGone
}
2021-06-05 07:56:50 +02:00
return fmt.Sprintf("↑%s↓%s", branch.Pushables, branch.Pullables)
}
func SetCustomBranches(customBranchColors map[string]string) {
branchPrefixColorCache = utils.SetCustomColors(customBranchColors)
}