summaryrefslogtreecommitdiffstats
path: root/pkg/gui/presentation/commit_files.go
blob: 94116066a9a8d3cb968c6973b26ec129c564403d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package presentation

import (
	"github.com/fatih/color"
	"github.com/jesseduffield/lazygit/pkg/commands/models"
	"github.com/jesseduffield/lazygit/pkg/commands/patch"
	"github.com/jesseduffield/lazygit/pkg/theme"
	"github.com/jesseduffield/lazygit/pkg/utils"
)

func GetCommitFileLine(name string, diffName string, commitFile *models.CommitFile, status patch.PatchStatus) string {
	yellow := color.New(color.FgYellow)
	green := color.New(color.FgGreen)
	defaultColor := color.New(theme.DefaultTextColor)
	diffTerminalColor := color.New(theme.DiffTerminalColor)

	colour := defaultColor
	if diffName == name {
		colour = diffTerminalColor
	} else {
		switch status {
		case patch.UNSELECTED:
			colour = defaultColor
		case patch.WHOLE:
			colour = green
		case patch.PART:
			colour = yellow
		}
	}

	if commitFile == nil {
		return colour.Sprint(name)
	}

	return utils.ColoredString(commitFile.ChangeStatus, getColorForChangeStatus(commitFile.ChangeStatus)) + " " + colour.Sprint(name)
}

func getColorForChangeStatus(changeStatus string) color.Attribute {
	switch changeStatus {
	case "A":
		return color.FgGreen
	case "M", "R":
		return color.FgYellow
	case "D":
		return color.FgRed
	case "C":
		return color.FgCyan
	case "T":
		return color.FgMagenta
	default:
		return theme.DefaultTextColor
	}
}