mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-04-04 06:23:43 +03:00
Add minimum percent change needed to trigger an animation in progress
This commit is contained in:
parent
430b7b5d36
commit
00d61decf4
@ -31,10 +31,11 @@ func nextID() int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
fps = 60
|
fps = 60
|
||||||
defaultWidth = 40
|
defaultWidth = 40
|
||||||
defaultFrequency = 18.0
|
defaultFrequency = 18.0
|
||||||
defaultDamping = 1.0
|
defaultDamping = 1.0
|
||||||
|
defaultAnimThreshold = 0.08
|
||||||
)
|
)
|
||||||
|
|
||||||
var color func(string) termenv.Color = termenv.ColorProfile().Color
|
var color func(string) termenv.Color = termenv.ColorProfile().Color
|
||||||
@ -110,6 +111,14 @@ func WithSpringOptions(frequency, damping float64) Option {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithAnimationThreshold sets the percent chagne threshold necessary to
|
||||||
|
// trigger an animated transition.
|
||||||
|
func WithAnimationThreshold(ratio float64) Option {
|
||||||
|
return func(m *Model) {
|
||||||
|
m.SetAnimationThreshold(ratio)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// FrameMsg indicates that an animation step should occur.
|
// FrameMsg indicates that an animation step should occur.
|
||||||
type FrameMsg struct {
|
type FrameMsg struct {
|
||||||
id int
|
id int
|
||||||
@ -141,13 +150,17 @@ type Model struct {
|
|||||||
PercentFormat string // a fmt string for a float
|
PercentFormat string // a fmt string for a float
|
||||||
PercentageStyle lipgloss.Style
|
PercentageStyle lipgloss.Style
|
||||||
|
|
||||||
// Members for animated transitions.
|
// Settings for animated transitions.
|
||||||
spring harmonica.Spring
|
spring harmonica.Spring
|
||||||
springCustomized bool
|
springCustomized bool
|
||||||
percentShown float64 // percent currently displaying
|
percentShown float64 // percent currently displaying
|
||||||
targetPercent float64 // percent to which we're animating
|
targetPercent float64 // percent to which we're animating
|
||||||
velocity float64
|
velocity float64
|
||||||
|
|
||||||
|
// The amount of change required to trigger an animated transition. Should
|
||||||
|
// be a float between 0 and 1.
|
||||||
|
animThreshold float64
|
||||||
|
|
||||||
// Gradient settings
|
// Gradient settings
|
||||||
useRamp bool
|
useRamp bool
|
||||||
rampColorA colorful.Color
|
rampColorA colorful.Color
|
||||||
@ -237,7 +250,14 @@ func (m Model) Percent() float64 {
|
|||||||
//
|
//
|
||||||
// If you're rendering with ViewAs you won't need this.
|
// If you're rendering with ViewAs you won't need this.
|
||||||
func (m *Model) SetPercent(p float64) tea.Cmd {
|
func (m *Model) SetPercent(p float64) tea.Cmd {
|
||||||
m.targetPercent = math.Max(0, math.Min(1, p))
|
// If the value is at or below the animation threshold, don't animate
|
||||||
|
if math.Abs(p-m.percent) <= m.animThreshold {
|
||||||
|
m.percent = asRatio(p)
|
||||||
|
m.targetPercent = asRatio(p)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
m.targetPercent = asRatio(p)
|
||||||
m.tag++
|
m.tag++
|
||||||
return m.nextFrame()
|
return m.nextFrame()
|
||||||
}
|
}
|
||||||
@ -258,6 +278,18 @@ func (m *Model) DecrPercent(v float64) tea.Cmd {
|
|||||||
return m.SetPercent(m.Percent() - v)
|
return m.SetPercent(m.Percent() - v)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetAnimationThreshold sets the percent chagne threshold necessary to trigger
|
||||||
|
// an animated transition.
|
||||||
|
func (m *Model) SetAnimationThreshold(v float64) {
|
||||||
|
m.animThreshold = asRatio(v)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AnimationThreshold returns the percent change necessary to trigger an
|
||||||
|
// animated transition.
|
||||||
|
func (m *Model) AnimationThreshold() float64 {
|
||||||
|
return m.animThreshold
|
||||||
|
}
|
||||||
|
|
||||||
// View renders the an animated progress bar in its current state. To render
|
// View renders the an animated progress bar in its current state. To render
|
||||||
// a static progress bar based on your own calculations use ViewAs instead.
|
// a static progress bar based on your own calculations use ViewAs instead.
|
||||||
func (m Model) View() string {
|
func (m Model) View() string {
|
||||||
@ -351,3 +383,7 @@ func min(a, b int) int {
|
|||||||
}
|
}
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func asRatio(v float64) float64 {
|
||||||
|
return math.Max(math.Min(v, 1), 0)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user