mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-04-05 06:43:42 +03:00
Progress bars now statisfy the tea.Model interface
This commit is contained in:
parent
8ad268837a
commit
b691d7f07e
@ -176,11 +176,16 @@ func NewModel(opts ...Option) Model {
|
|||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Init exists satisfy the tea.Model interface.
|
||||||
|
func (m Model) Init() tea.Cmd {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Update is used to animation the progress bar during transitions. Use
|
// Update is used to animation the progress bar during transitions. Use
|
||||||
// SetPercent to create the command you'll need to trigger the animation.
|
// SetPercent to create the command you'll need to trigger the animation.
|
||||||
//
|
//
|
||||||
// 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) Update(msg tea.Msg) (Model, tea.Cmd) {
|
func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||||
switch msg := msg.(type) {
|
switch msg := msg.(type) {
|
||||||
case FrameMsg:
|
case FrameMsg:
|
||||||
if msg.id != m.id || msg.tag != m.tag {
|
if msg.id != m.id || msg.tag != m.tag {
|
||||||
|
Loading…
Reference in New Issue
Block a user