67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
package shared
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/cli/cli/api"
|
|
"github.com/cli/cli/pkg/iostreams"
|
|
"github.com/cli/cli/utils"
|
|
)
|
|
|
|
func StateTitleWithColor(cs *iostreams.ColorScheme, pr api.PullRequest) string {
|
|
prStateColorFunc := cs.ColorFromString(ColorForPR(pr))
|
|
|
|
if pr.State == "OPEN" && pr.IsDraft {
|
|
return prStateColorFunc(strings.Title(strings.ToLower("Draft")))
|
|
}
|
|
return prStateColorFunc(strings.Title(strings.ToLower(pr.State)))
|
|
}
|
|
|
|
func ColorForPR(pr api.PullRequest) string {
|
|
if pr.State == "OPEN" && pr.IsDraft {
|
|
return "gray"
|
|
}
|
|
return ColorForState(pr.State)
|
|
}
|
|
|
|
// ColorForState returns a color constant for a PR/Issue state
|
|
func ColorForState(state string) string {
|
|
switch state {
|
|
case "OPEN":
|
|
return "green"
|
|
case "CLOSED":
|
|
return "red"
|
|
case "MERGED":
|
|
return "magenta"
|
|
default:
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func PrintHeader(io *iostreams.IOStreams, s string) {
|
|
fmt.Fprintln(io.Out, io.ColorScheme().Bold(s))
|
|
}
|
|
|
|
func PrintMessage(io *iostreams.IOStreams, s string) {
|
|
fmt.Fprintln(io.Out, io.ColorScheme().Gray(s))
|
|
}
|
|
|
|
func ListHeader(repoName string, itemName string, matchCount int, totalMatchCount int, hasFilters bool) string {
|
|
if totalMatchCount == 0 {
|
|
if hasFilters {
|
|
return fmt.Sprintf("No %ss match your search in %s", itemName, repoName)
|
|
}
|
|
return fmt.Sprintf("There are no open %ss in %s", itemName, repoName)
|
|
}
|
|
|
|
if hasFilters {
|
|
matchVerb := "match"
|
|
if totalMatchCount == 1 {
|
|
matchVerb = "matches"
|
|
}
|
|
return fmt.Sprintf("Showing %d of %s in %s that %s your search", matchCount, utils.Pluralize(totalMatchCount, itemName), repoName, matchVerb)
|
|
}
|
|
|
|
return fmt.Sprintf("Showing %d of %s in %s", matchCount, utils.Pluralize(totalMatchCount, fmt.Sprintf("open %s", itemName)), repoName)
|
|
}
|