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

211 lines
5.2 KiB
Go
Raw Normal View History

2020-02-25 11:11:07 +02:00
package presentation
import (
2021-10-23 09:17:35 +02:00
"crypto/md5"
2020-02-25 11:11:07 +02:00
"strings"
2021-10-23 09:17:35 +02:00
"github.com/gookit/color"
"github.com/jesseduffield/lazygit/pkg/commands/models"
"github.com/jesseduffield/lazygit/pkg/gui/style"
2020-02-25 11:11:07 +02:00
"github.com/jesseduffield/lazygit/pkg/theme"
"github.com/jesseduffield/lazygit/pkg/utils"
2021-07-16 14:06:01 +02:00
"github.com/kyokomi/emoji/v2"
2021-10-23 09:17:35 +02:00
colorful "github.com/lucasb-eyer/go-colorful"
"github.com/mattn/go-runewidth"
2020-02-25 11:11:07 +02:00
)
2021-07-16 14:06:01 +02:00
func GetCommitListDisplayStrings(commits []*models.Commit, fullDescription bool, cherryPickedCommitShaMap map[string]bool, diffName string, parseEmoji bool) [][]string {
2020-02-25 11:11:07 +02:00
lines := make([][]string, len(commits))
2021-07-16 14:06:01 +02:00
var displayFunc func(*models.Commit, map[string]bool, bool, bool) []string
2020-02-25 11:11:07 +02:00
if fullDescription {
displayFunc = getFullDescriptionDisplayStringsForCommit
} else {
displayFunc = getDisplayStringsForCommit
}
for i := range commits {
diffed := commits[i].Sha == diffName
2021-07-16 14:06:01 +02:00
lines[i] = displayFunc(commits[i], cherryPickedCommitShaMap, diffed, parseEmoji)
2020-02-25 11:11:07 +02:00
}
return lines
}
2021-07-16 14:06:01 +02:00
func getFullDescriptionDisplayStringsForCommit(c *models.Commit, cherryPickedCommitShaMap map[string]bool, diffed, parseEmoji bool) []string {
shaColor := theme.DefaultTextColor
2020-02-25 11:11:07 +02:00
switch c.Status {
case "unpushed":
shaColor = style.FgRed
2020-02-25 11:11:07 +02:00
case "pushed":
shaColor = style.FgYellow
2020-02-25 11:11:07 +02:00
case "merged":
shaColor = style.FgGreen
2020-02-25 11:11:07 +02:00
case "rebasing":
shaColor = style.FgBlue
2020-02-25 11:11:07 +02:00
case "reflog":
shaColor = style.FgBlue
2020-02-25 11:11:07 +02:00
}
if diffed {
shaColor = theme.DiffTerminalColor
} else if cherryPickedCommitShaMap[c.Sha] {
// for some reason, setting the background to blue pads out the other commits
// horizontally. For the sake of accessibility I'm considering this a feature,
// not a bug
shaColor = theme.CherryPickedCommitTextStyle
2020-02-25 11:11:07 +02:00
}
tagString := ""
secondColumnString := style.FgBlue.Sprint(utils.UnixToDate(c.UnixTimestamp))
2020-02-25 11:11:07 +02:00
if c.Action != "" {
secondColumnString = actionColorMap(c.Action).Sprint(c.Action)
2020-02-25 11:55:36 +02:00
} else if c.ExtraInfo != "" {
2021-08-01 08:02:49 +02:00
tagString = style.FgMagenta.SetBold().Sprint(c.ExtraInfo) + " "
2020-02-25 11:11:07 +02:00
}
2021-07-16 14:06:01 +02:00
name := c.Name
if parseEmoji {
name = emoji.Sprint(name)
}
return []string{
shaColor.Sprint(c.ShortSha()),
secondColumnString,
2021-10-23 09:17:35 +02:00
longAuthor(c.Author),
tagString + theme.DefaultTextColor.Sprint(name),
}
2020-02-25 11:11:07 +02:00
}
2021-07-16 14:06:01 +02:00
func getDisplayStringsForCommit(c *models.Commit, cherryPickedCommitShaMap map[string]bool, diffed, parseEmoji bool) []string {
shaColor := theme.DefaultTextColor
2020-02-25 11:11:07 +02:00
switch c.Status {
case "unpushed":
shaColor = style.FgRed
2020-02-25 11:11:07 +02:00
case "pushed":
shaColor = style.FgYellow
2020-02-25 11:11:07 +02:00
case "merged":
shaColor = style.FgGreen
2020-02-25 11:11:07 +02:00
case "rebasing":
shaColor = style.FgBlue
2020-02-25 11:11:07 +02:00
case "reflog":
shaColor = style.FgBlue
2020-02-25 11:11:07 +02:00
}
if diffed {
shaColor = theme.DiffTerminalColor
} else if cherryPickedCommitShaMap[c.Sha] {
// for some reason, setting the background to blue pads out the other commits
// horizontally. For the sake of accessibility I'm considering this a feature,
// not a bug
shaColor = theme.CherryPickedCommitTextStyle
2020-02-25 11:11:07 +02:00
}
actionString := ""
tagString := ""
if c.Action != "" {
actionString = actionColorMap(c.Action).Sprint(utils.WithPadding(c.Action, 7)) + " "
2020-02-25 11:11:07 +02:00
} else if len(c.Tags) > 0 {
2021-07-31 04:54:28 +02:00
tagString = theme.DiffTerminalColor.SetBold().Sprint(strings.Join(c.Tags, " ")) + " "
2020-02-25 11:11:07 +02:00
}
2021-07-16 14:06:01 +02:00
name := c.Name
if parseEmoji {
name = emoji.Sprint(name)
}
return []string{
shaColor.Sprint(c.ShortSha()),
2021-10-23 09:17:35 +02:00
shortAuthor(c.Author),
actionString + tagString + theme.DefaultTextColor.Sprint(name),
}
2020-02-25 11:11:07 +02:00
}
2021-10-23 09:17:35 +02:00
var authorInitialCache = make(map[string]string)
var authorNameCache = make(map[string]string)
func shortAuthor(authorName string) string {
2021-10-23 13:46:37 +02:00
if value, ok := authorInitialCache[authorName]; ok {
return value
2021-10-23 09:17:35 +02:00
}
initials := getInitials(authorName)
if initials == "" {
return ""
}
value := authorColor(authorName).Sprint(initials)
authorInitialCache[authorName] = value
return value
}
func longAuthor(authorName string) string {
2021-10-23 13:46:37 +02:00
if value, ok := authorNameCache[authorName]; ok {
return value
2021-10-23 09:17:35 +02:00
}
truncatedName := utils.TruncateWithEllipsis(authorName, 17)
value := authorColor(authorName).Sprint(truncatedName)
authorNameCache[authorName] = value
return value
}
func authorColor(authorName string) style.TextStyle {
hash := md5.Sum([]byte(authorName))
c := colorful.Hsl(randFloat(hash[0:4])*360.0, 0.6+0.4*randFloat(hash[4:8]), 0.4+randFloat(hash[8:12])*0.2)
return style.New().SetFg(style.NewRGBColor(color.RGB(uint8(c.R*255), uint8(c.G*255), uint8(c.B*255))))
}
func randFloat(hash []byte) float64 {
sum := 0
for _, b := range hash {
sum = (sum + int(b)) % 100
}
return float64(sum) / 100
}
func getInitials(authorName string) string {
if authorName == "" {
return authorName
}
firstRune := getFirstRune(authorName)
if runewidth.RuneWidth(firstRune) > 1 {
return string(firstRune)
}
2021-10-23 09:17:35 +02:00
split := strings.Split(authorName, " ")
if len(split) == 1 {
return utils.LimitStr(authorName, 2)
}
2021-10-23 13:46:37 +02:00
return utils.LimitStr(split[0], 1) + utils.LimitStr(split[1], 1)
2021-10-23 09:17:35 +02:00
}
func getFirstRune(str string) rune {
// just using the loop for the sake of getting the first rune
for _, r := range str {
return r
}
// should never land here
return 0
}
func actionColorMap(str string) style.TextStyle {
switch str {
case "pick":
return style.FgCyan
case "drop":
return style.FgRed
case "edit":
return style.FgGreen
case "fixup":
return style.FgMagenta
default:
return style.FgYellow
}
}