mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
40fbce91ce
WIP WIP WIP WIP WIP WIP WIP
127 lines
3.6 KiB
Go
127 lines
3.6 KiB
Go
package presentation
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/jesseduffield/lazygit/pkg/commands"
|
|
"github.com/jesseduffield/lazygit/pkg/theme"
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
|
)
|
|
|
|
func GetCommitListDisplayStrings(commits []*commands.Commit, fullDescription bool, cherryPickedCommitShaMap map[string]bool, diffName string) [][]string {
|
|
lines := make([][]string, len(commits))
|
|
|
|
var displayFunc func(*commands.Commit, map[string]bool, bool) []string
|
|
if fullDescription {
|
|
displayFunc = getFullDescriptionDisplayStringsForCommit
|
|
} else {
|
|
displayFunc = getDisplayStringsForCommit
|
|
}
|
|
|
|
for i := range commits {
|
|
diffed := commits[i].Sha == diffName
|
|
lines[i] = displayFunc(commits[i], cherryPickedCommitShaMap, diffed)
|
|
}
|
|
|
|
return lines
|
|
}
|
|
|
|
func getFullDescriptionDisplayStringsForCommit(c *commands.Commit, cherryPickedCommitShaMap map[string]bool, diffed bool) []string {
|
|
red := color.New(color.FgRed)
|
|
yellow := color.New(color.FgYellow)
|
|
green := color.New(color.FgGreen)
|
|
blue := color.New(color.FgBlue)
|
|
cyan := color.New(color.FgCyan)
|
|
defaultColor := color.New(theme.DefaultTextColor)
|
|
diffedColor := color.New(theme.DiffTerminalColor)
|
|
|
|
// 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
|
|
copied := color.New(color.FgCyan, color.BgBlue)
|
|
|
|
var shaColor *color.Color
|
|
switch c.Status {
|
|
case "unpushed":
|
|
shaColor = red
|
|
case "pushed":
|
|
shaColor = yellow
|
|
case "merged":
|
|
shaColor = green
|
|
case "rebasing":
|
|
shaColor = blue
|
|
case "reflog":
|
|
shaColor = blue
|
|
default:
|
|
shaColor = defaultColor
|
|
}
|
|
|
|
if diffed {
|
|
shaColor = diffedColor
|
|
} else if cherryPickedCommitShaMap[c.Sha] {
|
|
shaColor = copied
|
|
}
|
|
|
|
tagString := ""
|
|
secondColumnString := blue.Sprint(utils.UnixToDate(c.UnixTimestamp))
|
|
if c.Action != "" {
|
|
secondColumnString = cyan.Sprint(c.Action)
|
|
} else if c.ExtraInfo != "" {
|
|
tagColor := color.New(color.FgMagenta, color.Bold)
|
|
tagString = utils.ColoredStringDirect(c.ExtraInfo, tagColor) + " "
|
|
}
|
|
|
|
truncatedAuthor := utils.TruncateWithEllipsis(c.Author, 17)
|
|
|
|
return []string{shaColor.Sprint(c.ShortSha()), secondColumnString, yellow.Sprint(truncatedAuthor), tagString + defaultColor.Sprint(c.Name)}
|
|
}
|
|
|
|
func getDisplayStringsForCommit(c *commands.Commit, cherryPickedCommitShaMap map[string]bool, diffed bool) []string {
|
|
red := color.New(color.FgRed)
|
|
yellow := color.New(color.FgYellow)
|
|
green := color.New(color.FgGreen)
|
|
blue := color.New(color.FgBlue)
|
|
cyan := color.New(color.FgCyan)
|
|
defaultColor := color.New(theme.DefaultTextColor)
|
|
diffedColor := color.New(theme.DiffTerminalColor)
|
|
|
|
// 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
|
|
copied := color.New(color.FgCyan, color.BgBlue)
|
|
|
|
var shaColor *color.Color
|
|
switch c.Status {
|
|
case "unpushed":
|
|
shaColor = red
|
|
case "pushed":
|
|
shaColor = yellow
|
|
case "merged":
|
|
shaColor = green
|
|
case "rebasing":
|
|
shaColor = blue
|
|
case "reflog":
|
|
shaColor = blue
|
|
default:
|
|
shaColor = defaultColor
|
|
}
|
|
|
|
if diffed {
|
|
shaColor = diffedColor
|
|
} else if cherryPickedCommitShaMap[c.Sha] {
|
|
shaColor = copied
|
|
}
|
|
|
|
actionString := ""
|
|
tagString := ""
|
|
if c.Action != "" {
|
|
actionString = cyan.Sprint(utils.WithPadding(c.Action, 7)) + " "
|
|
} else if len(c.Tags) > 0 {
|
|
tagColor := color.New(color.FgMagenta, color.Bold)
|
|
tagString = utils.ColoredStringDirect(strings.Join(c.Tags, " "), tagColor) + " "
|
|
}
|
|
|
|
return []string{shaColor.Sprint(c.ShortSha()), actionString + tagString + defaultColor.Sprint(c.Name)}
|
|
}
|