-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmargin.go
More file actions
128 lines (99 loc) · 2.21 KB
/
margin.go
File metadata and controls
128 lines (99 loc) · 2.21 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package lipbalm
import "strings"
type marginPos int
const (
top marginPos = iota
bottom
left
right
)
// Adds margin to top,bottom,left,right
func Margin(margin int, str string) string {
return applyMargin(margin, str, top, bottom, left, right)
}
// Adds margin to top,bottom
func MarginVertical(margin int, str string) string {
return applyMargin(margin, str, top, bottom)
}
// Adds margin to left,right
func MarginHorizontal(margin int, str string) string {
return applyMargin(margin, str, left, right)
}
// Adds margin to left
func MarginLeft(margin int, str string) string {
return applyMargin(margin, str, left)
}
// Adds margin to right
func MarginRight(margin int, str string) string {
return applyMargin(margin, str, right)
}
// Adds margin to top
func MarginTop(margin int, str string) string {
return applyMargin(margin, str, top)
}
// Adds margin to bottom
func MarginBottom(margin int, str string) string {
return applyMargin(margin, str, bottom)
}
func applyMargin(margin int, str string, pos ...marginPos) string {
var (
hasBottom = false
hasTop = false
hasLeft = false
hasRight = false
)
for _, p := range pos {
switch p {
case top:
hasTop = true
case bottom:
hasBottom = true
case left:
hasLeft = true
case right:
hasRight = true
}
}
lines, _, maxWidth := GetLines(str)
// horizontal
if hasLeft || hasRight {
var (
b strings.Builder
numLines = len(lines)
horizontalMargin = strings.Repeat(" ", margin)
numAddedChars = margin * numLines
lastLineIdx = numLines - 1
)
b.Grow(len(str) +
iff(hasLeft, numAddedChars, 0) +
iff(hasRight, numAddedChars, 0))
for i, line := range lines {
if hasLeft {
b.WriteString(horizontalMargin)
}
b.WriteString(line)
if hasRight {
b.WriteString(horizontalMargin)
}
if i == lastLineIdx {
break
}
b.WriteByte('\n')
}
str = b.String()
}
// vertical
if hasTop || hasBottom {
maxWidth = maxWidth +
iff(hasLeft, margin, 0) +
iff(hasRight, margin, 0)
padding := strings.Repeat(" ", maxWidth)
if hasTop {
str = strings.Repeat(padding+"\n", margin) + str
}
if hasBottom {
str = str + strings.Repeat("\n"+padding, margin)
}
}
return str
}