summaryrefslogtreecommitdiffstats
path: root/pkg/commands/commit.go
blob: 37c3e95253528874501a1c24e5ffd3360f2fc5ff (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
package commands

import (
	"github.com/fatih/color"
)

// Commit : A git commit
type Commit struct {
	Sha           string
	Name          string
	Pushed        bool
	DisplayString string
}

func (c *Commit) GetDisplayStrings() []string {
	red := color.New(color.FgRed)
	yellow := color.New(color.FgYellow)
	white := color.New(color.FgWhite)

	shaColor := yellow
	if c.Pushed {
		shaColor = red
	}

	return []string{shaColor.Sprint(c.Sha), white.Sprint(c.Name)}
}