Return an error if we could not initialize a new gradient ramp

This commit is contained in:
Christian Rocha 2020-11-18 18:33:45 -05:00 committed by Christian Rocha
parent 5d6d8cb0fb
commit f48e53556a
2 changed files with 34 additions and 19 deletions

View File

@ -18,9 +18,11 @@ const (
) )
func main() { func main() {
progress := progress.NewModel( progress, err := progress.NewModel(progress.WithDefaultRamp())
progress.WithDefaultRamp(), if err != nil {
) fmt.Println("Could not initialize progress model:", err)
os.Exit(1)
}
if err := tea.NewProgram(example{progress: progress}).Start(); err != nil { if err := tea.NewProgram(example{progress: progress}).Start(); err != nil {
fmt.Println("Oh no!", err) fmt.Println("Oh no!", err)

View File

@ -17,7 +17,7 @@ var color func(string) termenv.Color = termenv.ColorProfile().Color
// WithRamp("#ff0000", "#0000ff"), // WithRamp("#ff0000", "#0000ff"),
// WithoutPercentage(), // WithoutPercentage(),
// ) // )
type Option func(*Model) type Option func(*Model) error
// WithDefaultRamp sets a gradient fill with default colors. // WithDefaultRamp sets a gradient fill with default colors.
func WithDefaultRamp() Option { func WithDefaultRamp() Option {
@ -26,8 +26,8 @@ func WithDefaultRamp() Option {
// WithRamp sets a gradient fill blending between two colors. // WithRamp sets a gradient fill blending between two colors.
func WithRamp(colorA, colorB string) Option { func WithRamp(colorA, colorB string) Option {
return func(m *Model) { return func(m *Model) error {
m.setRamp(colorA, colorB, false) return m.setRamp(colorA, colorB, false)
} }
} }
@ -40,23 +40,25 @@ func WithDefaultScaledRamp() Option {
// WithScaledRamp scales the gradient to fit the width of the filled portion of // WithScaledRamp scales the gradient to fit the width of the filled portion of
// the progress bar. // the progress bar.
func WithScaledRamp(colorA, colorB string) Option { func WithScaledRamp(colorA, colorB string) Option {
return func(m *Model) { return func(m *Model) error {
m.setRamp(colorA, colorB, true) return m.setRamp(colorA, colorB, true)
} }
} }
// WithSoildFill sets the progress to use a solid fill with the given color. // WithSoildFill sets the progress to use a solid fill with the given color.
func WithSolidFill(color string) Option { func WithSolidFill(color string) Option {
return func(m *Model) { return func(m *Model) error {
m.FullColor = color m.FullColor = color
m.useRamp = false m.useRamp = false
return nil
} }
} }
// WithoutPercentage hides the numeric percentage. // WithoutPercentage hides the numeric percentage.
func WithoutPercentage() Option { func WithoutPercentage() Option {
return func(m *Model) { return func(m *Model) error {
m.ShowPercentage = false m.ShowPercentage = false
return nil
} }
} }
@ -64,8 +66,9 @@ func WithoutPercentage() Option {
// set the width via the Width property, which can come in handy if you're // set the width via the Width property, which can come in handy if you're
// waiting for a tea.WindowSizeMsg. // waiting for a tea.WindowSizeMsg.
func WithWidth(w int) Option { func WithWidth(w int) Option {
return func(m *Model) { return func(m *Model) error {
m.Width = w m.Width = w
return nil
} }
} }
@ -98,7 +101,7 @@ type Model struct {
} }
// NewModel returns a model with default values. // NewModel returns a model with default values.
func NewModel(opts ...Option) *Model { func NewModel(opts ...Option) (*Model, error) {
m := &Model{ m := &Model{
Width: 40, Width: 40,
Full: '█', Full: '█',
@ -110,10 +113,12 @@ func NewModel(opts ...Option) *Model {
} }
for _, opt := range opts { for _, opt := range opts {
opt(m) if err := opt(m); err != nil {
return nil, err
}
} }
return m return m, nil
} }
// view renders the progress bar as a given percentage. // view renders the progress bar as a given percentage.
@ -121,8 +126,7 @@ func (m Model) View(percent float64) string {
b := strings.Builder{} b := strings.Builder{}
if m.ShowPercentage { if m.ShowPercentage {
s := fmt.Sprintf(m.PercentFormat, percent*100) s := fmt.Sprintf(m.PercentFormat, percent*100)
w := ansi.PrintableRuneWidth(s) m.bar(&b, percent, ansi.PrintableRuneWidth(s))
m.bar(&b, percent, w)
b.WriteString(s) b.WriteString(s)
} else { } else {
m.bar(&b, percent, 0) m.bar(&b, percent, 0)
@ -163,11 +167,20 @@ func (m Model) bar(b *strings.Builder, percent float64, textWidth int) {
b.WriteString(strings.Repeat(e, tw-fw)) b.WriteString(strings.Repeat(e, tw-fw))
} }
func (m *Model) setRamp(colorA, colorB string, scaled bool) { func (m *Model) setRamp(colorA, colorB string, scaled bool) error {
a, _ := colorful.Hex(colorA) a, err := colorful.Hex(colorA)
b, _ := colorful.Hex(colorB) if err != nil {
return err
}
b, err := colorful.Hex(colorB)
if err != nil {
return err
}
m.useRamp = true m.useRamp = true
m.scaleRamp = scaled m.scaleRamp = scaled
m.rampColorA = a m.rampColorA = a
m.rampColorB = b m.rampColorB = b
return nil
} }