mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
28 lines
833 B
Go
28 lines
833 B
Go
package presentation
|
|
|
|
import (
|
|
"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"
|
|
)
|
|
|
|
func GetRemoteListDisplayStrings(remotes []*models.Remote, diffName string) [][]string {
|
|
return slices.Map(remotes, func(remote *models.Remote) []string {
|
|
diffed := remote.Name == diffName
|
|
return getRemoteDisplayStrings(remote, diffed)
|
|
})
|
|
}
|
|
|
|
// getRemoteDisplayStrings returns the display string of branch
|
|
func getRemoteDisplayStrings(r *models.Remote, diffed bool) []string {
|
|
branchCount := len(r.Branches)
|
|
|
|
textStyle := theme.DefaultTextColor
|
|
if diffed {
|
|
textStyle = theme.DiffTerminalColor
|
|
}
|
|
|
|
return []string{textStyle.Sprint(r.Name), style.FgBlue.Sprintf("%d branches", branchCount)}
|
|
}
|