-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathwhitespace.go
More file actions
76 lines (64 loc) · 1.63 KB
/
whitespace.go
File metadata and controls
76 lines (64 loc) · 1.63 KB
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
package lipgloss
import (
"strings"
"github.com/charmbracelet/x/ansi"
)
// whitespace is a whitespace renderer.
type whitespace struct {
chars string
style Style
}
// newWhitespace creates a new whitespace renderer.
func newWhitespace(opts ...WhitespaceOption) *whitespace {
w := &whitespace{}
for _, opt := range opts {
opt(w)
}
return w
}
// Render whitespaces.
func (w whitespace) render(width int) string {
if w.chars == "" {
w.chars = " "
}
r := []rune(w.chars)
j := 0
b := strings.Builder{}
// Cycle through runes and print them into the whitespace.
for i := 0; i < width; {
b.WriteRune(r[j])
// Measure the width of the rune we just wrote, ensuring we always
// make progress to avoid infinite loops with zero-width characters
// like tabs.
runeWidth := ansi.StringWidth(string(r[j]))
if runeWidth < 1 {
runeWidth = 1
}
i += runeWidth
j++
if j >= len(r) {
j = 0
}
}
// Fill any extra gaps white spaces. This might be necessary if any runes
// are more than one cell wide, which could leave a one-rune gap.
short := width - ansi.StringWidth(b.String())
if short > 0 {
b.WriteString(strings.Repeat(" ", short))
}
return w.style.Render(b.String())
}
// WhitespaceOption sets a styling rule for rendering whitespace.
type WhitespaceOption func(*whitespace)
// WithWhitespaceStyle sets the style for the whitespace.
func WithWhitespaceStyle(s Style) WhitespaceOption {
return func(w *whitespace) {
w.style = s
}
}
// WithWhitespaceChars sets the characters to be rendered in the whitespace.
func WithWhitespaceChars(s string) WhitespaceOption {
return func(w *whitespace) {
w.chars = s
}
}