forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
color_ui.go
114 lines (93 loc) · 2.53 KB
/
color_ui.go
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package ui
import (
"github.com/fatih/color"
. "github.com/cloudfoundry/bosh-cli/ui/table"
)
type ColorUI struct {
parent UI
okFunc func(string, ...interface{}) string
errFunc func(string, ...interface{}) string
boldFunc func(string, ...interface{}) string
}
func NewColorUI(parent UI) UI {
return &ColorUI{
parent: parent,
okFunc: color.New(color.FgGreen).SprintfFunc(),
errFunc: color.New(color.FgRed).SprintfFunc(),
boldFunc: color.New(color.Bold).SprintfFunc(),
}
}
func (ui *ColorUI) ErrorLinef(pattern string, args ...interface{}) {
ui.parent.ErrorLinef("%s", ui.errFunc(pattern, args...))
}
func (ui *ColorUI) PrintLinef(pattern string, args ...interface{}) {
ui.parent.PrintLinef(pattern, args...)
}
func (ui *ColorUI) BeginLinef(pattern string, args ...interface{}) {
ui.parent.BeginLinef(pattern, args...)
}
func (ui *ColorUI) EndLinef(pattern string, args ...interface{}) {
ui.parent.EndLinef(pattern, args...)
}
func (ui *ColorUI) PrintBlock(block string) {
ui.parent.PrintBlock(block)
}
func (ui *ColorUI) PrintErrorBlock(block string) {
ui.parent.PrintErrorBlock(ui.errFunc("%s", block))
}
func (ui *ColorUI) PrintTable(table Table) {
if len(table.HeaderVals) > 0 {
for i, hv := range table.HeaderVals {
table.HeaderVals[i] = ValueFmt{V: hv, Func: ui.boldFunc}
}
} else if len(table.Header) > 0 {
for _, h := range table.Header {
table.HeaderVals = append(table.HeaderVals, ValueFmt{
V: ValueString{h},
Func: ui.boldFunc,
})
}
}
for k, s := range table.Sections {
for i, r := range s.Rows {
for j, v := range r {
table.Sections[k].Rows[i][j] = ui.colorValueFmt(v)
}
}
}
for i, r := range table.Rows {
for j, v := range r {
table.Rows[i][j] = ui.colorValueFmt(v)
}
}
ui.parent.PrintTable(table)
}
func (ui *ColorUI) AskForText(label string) (string, error) {
return ui.parent.AskForText(label)
}
func (ui *ColorUI) AskForChoice(label string, options []string) (int, error) {
return ui.parent.AskForChoice(label, options)
}
func (ui *ColorUI) AskForPassword(label string) (string, error) {
return ui.parent.AskForPassword(label)
}
func (ui *ColorUI) AskForConfirmation() error {
return ui.parent.AskForConfirmation()
}
func (ui *ColorUI) IsInteractive() bool {
return ui.parent.IsInteractive()
}
func (ui *ColorUI) Flush() {
ui.parent.Flush()
}
func (ui *ColorUI) colorValueFmt(val Value) Value {
if valFmt, ok := val.(ValueFmt); ok {
if valFmt.Error {
valFmt.Func = ui.errFunc
} else {
valFmt.Func = ui.okFunc
}
return valFmt
}
return val
}