-
Notifications
You must be signed in to change notification settings - Fork 0
/
rich_text.go
63 lines (51 loc) · 1.36 KB
/
rich_text.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
package scold
import (
"strings"
"github.com/logrusorgru/aurora"
)
// Au is used to colorize output of several functions. A user of the library
// can change its value to disable colored output. Refer to the aurora
// readme for that.
var Au aurora.Aurora
func init() {
Au = aurora.NewAurora(true)
}
// RichText represents a text data with additional color metadata in a form
// of a bitmask. The characters may be either colored or uncolored. The _color_
// might represent a literal color or a formatting style like bold or italics.
type RichText struct {
Str string
Mask []bool
}
// Colorful returns whether at least one character in Str has color.
func (rt RichText) Colorful() bool {
for _, v := range rt.Mask {
if v {
return true
}
}
return false
}
// Colorize returns Str with ASCII escape codes actually
// embedded inside it to enable colors. The resulting string then
// can be printed on the screen and it'll be colorful, for example.
func (rt RichText) Colorize(color aurora.Color) string {
var str strings.Builder
start := 0
for start != len(rt.Mask) {
end := start + 1
for ; end != len(rt.Mask); end++ {
if rt.Mask[start] != rt.Mask[end] {
break
}
}
part := rt.Str[start:end]
if rt.Mask[start] {
str.WriteString(Au.Colorize(part, color).String())
} else {
str.WriteString(part)
}
start = end
}
return str.String()
}