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

28 lines
833 B
Go
Raw Normal View History

2020-02-25 20:55:36 +11:00
package presentation
import (
2022-03-19 19:12:58 +11:00
"github.com/jesseduffield/generics/slices"
"github.com/jesseduffield/lazygit/pkg/commands/models"
"github.com/jesseduffield/lazygit/pkg/gui/style"
"github.com/jesseduffield/lazygit/pkg/theme"
2020-02-25 20:55:36 +11:00
)
2020-09-29 18:41:06 +10:00
func GetRemoteListDisplayStrings(remotes []*models.Remote, diffName string) [][]string {
2022-03-19 19:12:58 +11:00
return slices.Map(remotes, func(remote *models.Remote) []string {
diffed := remote.Name == diffName
return getRemoteDisplayStrings(remote, diffed)
})
2020-02-25 20:55:36 +11:00
}
// getRemoteDisplayStrings returns the display string of branch
2020-09-29 18:41:06 +10:00
func getRemoteDisplayStrings(r *models.Remote, diffed bool) []string {
2020-03-27 22:53:50 +11:00
branchCount := len(r.Branches)
2021-08-01 16:02:49 +10:00
textStyle := theme.DefaultTextColor
if diffed {
2021-08-01 16:02:49 +10:00
textStyle = theme.DiffTerminalColor
}
2021-08-01 16:02:49 +10:00
return []string{textStyle.Sprint(r.Name), style.FgBlue.Sprintf("%d branches", branchCount)}
2020-02-25 20:55:36 +11:00
}