hide progress stats on completion

This commit is contained in:
Jeffrey Morgan 2023-11-20 14:22:39 -05:00
parent 6066c70edd
commit 433702f421

View file

@ -118,17 +118,25 @@ func (b *Bar) percent() float64 {
} }
func (b *Bar) Stats() Stats { func (b *Bar) Stats() Stats {
if time.Since(b.statted) < time.Second || b.currentValue >= b.maxValue { if time.Since(b.statted) < time.Second {
return b.stats return b.stats
} }
if b.statted.IsZero() { switch {
case b.statted.IsZero():
case b.currentValue >= b.maxValue:
b.stats = Stats{
value: b.maxValue,
rate: 0,
remaining: 0,
}
case b.statted.IsZero():
b.stats = Stats{ b.stats = Stats{
value: b.initialValue, value: b.initialValue,
rate: 0, rate: 0,
remaining: 0, remaining: 0,
} }
} else { default:
rate := b.currentValue - b.stats.value rate := b.currentValue - b.stats.value
var remaining time.Duration var remaining time.Duration
if rate > 0 { if rate > 0 {