-
Notifications
You must be signed in to change notification settings - Fork 119
/
anim.go
262 lines (225 loc) · 5.98 KB
/
anim.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package main
import (
"math/rand"
"strings"
"time"
"github.com/charmbracelet/bubbles/spinner"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/lucasb-eyer/go-colorful"
"github.com/muesli/termenv"
)
const (
charCyclingFPS = time.Second / 22
colorCycleFPS = time.Second / 5
maxCyclingChars = 120
)
var charRunes = []rune("0123456789abcdefABCDEF~!@#$£€%^&*()+=_")
type charState int
const (
charInitialState charState = iota
charCyclingState
charEndOfLifeState
)
// cyclingChar is a single animated character.
type cyclingChar struct {
finalValue rune // if < 0 cycle forever
currentValue rune
initialDelay time.Duration
lifetime time.Duration
}
func (c cyclingChar) randomRune() rune {
return (charRunes)[rand.Intn(len(charRunes))] //nolint:gosec
}
func (c cyclingChar) state(start time.Time) charState {
now := time.Now()
if now.Before(start.Add(c.initialDelay)) {
return charInitialState
}
if c.finalValue > 0 && now.After(start.Add(c.initialDelay)) {
return charEndOfLifeState
}
return charCyclingState
}
type stepCharsMsg struct{}
func stepChars() tea.Cmd {
return tea.Tick(charCyclingFPS, func(time.Time) tea.Msg {
return stepCharsMsg{}
})
}
type colorCycleMsg struct{}
func cycleColors() tea.Cmd {
return tea.Tick(colorCycleFPS, func(time.Time) tea.Msg {
return colorCycleMsg{}
})
}
// anim is the model that manages the animation that displays while the
// output is being generated.
type anim struct {
start time.Time
cyclingChars []cyclingChar
labelChars []cyclingChar
ramp []lipgloss.Style
label []rune
ellipsis spinner.Model
ellipsisStarted bool
styles styles
}
func newAnim(cyclingCharsSize uint, label string, r *lipgloss.Renderer, s styles) anim {
// #nosec G115
n := int(cyclingCharsSize)
if n > maxCyclingChars {
n = maxCyclingChars
}
gap := " "
if n == 0 {
gap = ""
}
c := anim{
start: time.Now(),
label: []rune(gap + label),
ellipsis: spinner.New(spinner.WithSpinner(spinner.Ellipsis)),
styles: s,
}
// If we're in truecolor mode (and there are enough cycling characters)
// color the cycling characters with a gradient ramp.
const minRampSize = 3
if n >= minRampSize && r.ColorProfile() == termenv.TrueColor {
// Note: double capacity for color cycling as we'll need to reverse and
// append the ramp for seamless transitions.
c.ramp = make([]lipgloss.Style, n, n*2) //nolint:mnd
ramp := makeGradientRamp(n)
for i, color := range ramp {
c.ramp[i] = r.NewStyle().Foreground(color)
}
c.ramp = append(c.ramp, reverse(c.ramp)...) // reverse and append for color cycling
}
makeDelay := func(a int32, b time.Duration) time.Duration {
return time.Duration(rand.Int31n(a)) * (time.Millisecond * b) //nolint:gosec
}
makeInitialDelay := func() time.Duration {
return makeDelay(8, 60) //nolint:mnd
}
// Initial characters that cycle forever.
c.cyclingChars = make([]cyclingChar, n)
for i := 0; i < n; i++ {
c.cyclingChars[i] = cyclingChar{
finalValue: -1, // cycle forever
initialDelay: makeInitialDelay(),
}
}
// Label text that only cycles for a little while.
c.labelChars = make([]cyclingChar, len(c.label))
for i, r := range c.label {
c.labelChars[i] = cyclingChar{
finalValue: r,
initialDelay: makeInitialDelay(),
lifetime: makeDelay(5, 180), //nolint:mnd
}
}
return c
}
// Init initializes the animation.
func (anim) Init() tea.Cmd {
return tea.Batch(stepChars(), cycleColors())
}
// Update handles messages.
func (a anim) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
var cmd tea.Cmd
switch msg.(type) {
case stepCharsMsg:
a.updateChars(&a.cyclingChars)
a.updateChars(&a.labelChars)
if !a.ellipsisStarted {
var eol int
for _, c := range a.labelChars {
if c.state(a.start) == charEndOfLifeState {
eol++
}
}
if eol == len(a.label) {
// If our entire label has reached end of life, start the
// ellipsis "spinner" after a short pause.
a.ellipsisStarted = true
cmd = tea.Tick(time.Millisecond*220, func(time.Time) tea.Msg { //nolint:mnd
return a.ellipsis.Tick()
})
}
}
return a, tea.Batch(stepChars(), cmd)
case colorCycleMsg:
const minColorCycleSize = 2
if len(a.ramp) < minColorCycleSize {
return a, nil
}
a.ramp = append(a.ramp[1:], a.ramp[0])
return a, cycleColors()
case spinner.TickMsg:
var cmd tea.Cmd
a.ellipsis, cmd = a.ellipsis.Update(msg)
return a, cmd
default:
return a, nil
}
}
func (a *anim) updateChars(chars *[]cyclingChar) {
for i, c := range *chars {
switch c.state(a.start) {
case charInitialState:
(*chars)[i].currentValue = '.'
case charCyclingState:
(*chars)[i].currentValue = c.randomRune()
case charEndOfLifeState:
(*chars)[i].currentValue = c.finalValue
}
}
}
// View renders the animation.
func (a anim) View() string {
var b strings.Builder
for i, c := range a.cyclingChars {
if len(a.ramp) > i {
b.WriteString(a.ramp[i].Render(string(c.currentValue)))
continue
}
b.WriteRune(c.currentValue)
}
for _, c := range a.labelChars {
b.WriteRune(c.currentValue)
}
return b.String() + a.ellipsis.View()
}
func makeGradientRamp(length int) []lipgloss.Color {
const startColor = "#F967DC"
const endColor = "#6B50FF"
var (
c = make([]lipgloss.Color, length)
start, _ = colorful.Hex(startColor)
end, _ = colorful.Hex(endColor)
)
for i := 0; i < length; i++ {
step := start.BlendLuv(end, float64(i)/float64(length))
c[i] = lipgloss.Color(step.Hex())
}
return c
}
func makeGradientText(baseStyle lipgloss.Style, str string) string {
const minSize = 3
if len(str) < minSize {
return str
}
b := strings.Builder{}
runes := []rune(str)
for i, c := range makeGradientRamp(len(str)) {
b.WriteString(baseStyle.Foreground(c).Render(string(runes[i])))
}
return b.String()
}
func reverse[T any](in []T) []T {
out := make([]T, len(in))
copy(out, in[:])
for i, j := 0, len(out)-1; i < j; i, j = i+1, j-1 {
out[i], out[j] = out[j], out[i]
}
return out
}