Documentation ¶
Index ¶
- Constants
- Variables
- func AdvisoryColor(message string) string
- func Colorize(message string, color Color) string
- func ColorizeBold(message string, color Color) string
- func CommandColor(message string) string
- func CrashedColor(message string) string
- func Decolorize(message string) string
- func EntityNameColor(message string) string
- func FailureColor(message string) string
- func HeaderColor(message string) string
- func InitColorSupport()
- func LogAppHeaderColor(message string) string
- func LogStderrColor(message string) string
- func LogStdoutColor(message string) string
- func LogSysHeaderColor(message string) string
- func NotLoggedInText() string
- func PromptColor(message string) string
- func StoppedColor(message string) string
- func SuccessColor(message string) string
- func TableContentHeaderColor(message string) string
- func WarningColor(message string) string
- type Color
- type ColoringFunction
- type PrintableTable
- type Table
- type UI
Constants ¶
View Source
const FailedWasCalled = "FailedWasCalled"
Variables ¶
View Source
var ( OsSupportsColors = runtime.GOOS != "windows" TerminalSupportsColors = isTerminal() UserAskedForColors = "" )
View Source
var T goi18n.TranslateFunc
Functions ¶
func AdvisoryColor ¶
func ColorizeBold ¶
func CommandColor ¶
func CrashedColor ¶
func Decolorize ¶
func EntityNameColor ¶
func FailureColor ¶
func HeaderColor ¶
func InitColorSupport ¶
func InitColorSupport()
func LogAppHeaderColor ¶
func LogStderrColor ¶
func LogStdoutColor ¶
func LogSysHeaderColor ¶
func NotLoggedInText ¶
func NotLoggedInText() string
func PromptColor ¶
func StoppedColor ¶
func SuccessColor ¶
func TableContentHeaderColor ¶
func WarningColor ¶
Types ¶
type PrintableTable ¶
type PrintableTable struct {
// contains filtered or unexported fields
}
func (*PrintableTable) Add ¶
func (t *PrintableTable) Add(row ...string)
func (*PrintableTable) Print ¶
func (t *PrintableTable) Print()
type UI ¶
type UI interface { PrintPaginator(rows []string, err error) Say(message string, args ...interface{}) Warn(message string, args ...interface{}) Ask(prompt string, args ...interface{}) (answer string) AskForPassword(prompt string, args ...interface{}) (answer string) Confirm(message string, args ...interface{}) bool ConfirmDelete(modelType, modelName string) bool ConfirmDeleteWithAssociations(modelType, modelName string) bool Ok() Failed(message string, args ...interface{}) FailWithUsage(context *cli.Context) ShowConfiguration(configuration.Reader) LoadingIndication() Wait(duration time.Duration) Table(headers []string) Table }
Click to show internal directories.
Click to hide internal directories.