2020-02-25 20:55:36 +11:00
|
|
|
package presentation
|
|
|
|
|
|
|
|
import (
|
2022-03-19 19:12:58 +11:00
|
|
|
"github.com/jesseduffield/generics/slices"
|
2020-09-29 20:28:39 +10:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
2020-03-29 14:34:17 +11:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/theme"
|
2020-02-25 20:55:36 +11:00
|
|
|
)
|
|
|
|
|
2020-09-29 18:46:45 +10:00
|
|
|
func GetStashEntryListDisplayStrings(stashEntries []*models.StashEntry, diffName string) [][]string {
|
2022-03-19 19:12:58 +11:00
|
|
|
return slices.Map(stashEntries, func(stashEntry *models.StashEntry) []string {
|
|
|
|
diffed := stashEntry.RefName() == diffName
|
|
|
|
return getStashEntryDisplayStrings(stashEntry, diffed)
|
|
|
|
})
|
2020-02-25 20:55:36 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
// getStashEntryDisplayStrings returns the display string of branch
|
2020-09-29 18:46:45 +10:00
|
|
|
func getStashEntryDisplayStrings(s *models.StashEntry, diffed bool) []string {
|
2021-08-01 16:02:49 +10:00
|
|
|
textStyle := theme.DefaultTextColor
|
2020-03-29 14:34:17 +11:00
|
|
|
if diffed {
|
2021-08-01 16:02:49 +10:00
|
|
|
textStyle = theme.DiffTerminalColor
|
2020-03-29 14:34:17 +11:00
|
|
|
}
|
2021-08-01 16:02:49 +10:00
|
|
|
return []string{textStyle.Sprint(s.Name)}
|
2020-02-25 20:55:36 +11:00
|
|
|
}
|