1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00
lazygit/pkg/gui/presentation/stash_entries.go

31 lines
936 B
Go
Raw Normal View History

2020-02-25 20:55:36 +11:00
package presentation
import (
"github.com/jesseduffield/lazygit/pkg/commands/models"
2022-10-14 21:56:01 +09:00
"github.com/jesseduffield/lazygit/pkg/gui/presentation/icons"
"github.com/jesseduffield/lazygit/pkg/theme"
"github.com/samber/lo"
2020-02-25 20:55:36 +11:00
)
2020-09-29 18:46:45 +10:00
func GetStashEntryListDisplayStrings(stashEntries []*models.StashEntry, diffName string) [][]string {
return lo.Map(stashEntries, func(stashEntry *models.StashEntry, _ int) []string {
2022-03-19 19:12:58 +11:00
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
if diffed {
2021-08-01 16:02:49 +10:00
textStyle = theme.DiffTerminalColor
}
2022-10-14 21:56:01 +09:00
res := make([]string, 0, 2)
if icons.IsIconEnabled() {
res = append(res, textStyle.Sprint(icons.IconForStash(s)))
}
res = append(res, textStyle.Sprint(s.Name))
return res
2020-02-25 20:55:36 +11:00
}