From 7b3078dc611e5710aea17b8329566689987ee1c1 Mon Sep 17 00:00:00 2001 From: Cam Sweeney Date: Sun, 9 Jun 2024 20:22:36 -0700 Subject: [PATCH] fix feed refresh --- ui/app.go | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/ui/app.go b/ui/app.go index 441e3e0..92b84e3 100644 --- a/ui/app.go +++ b/ui/app.go @@ -187,6 +187,7 @@ func (a *App) SetFocus(name string) tea.Cmd { a.focusedModel = m a.focused = name a.sidebar.SetActive(false) + return nil return m.Init() } @@ -268,14 +269,19 @@ func (a *App) Update(msg tea.Msg) (tea.Model, tea.Cmd) { a.splash.SetInfo(msg.channel.Name) case *api.FeedResponse: // allow msg to pass through to profile's embedded feed + fm := a.GetFocused() if a.focused == "profile" { - _, cmd := a.GetFocused().Update(msg) + if p, ok := fm.(*Profile); ok { + p.feed.Clear() + } + _, cmd := fm.Update(msg) return a, cmd } - feed := a.GetModel("feed").(*FeedView) - if a.focused == "feed" { - feed.Clear() + if a.focused == "feed" && a.prev == "feed" { + return a, nil } + feed := a.GetModel("feed").(*FeedView) + feed.Clear() focusCmd := a.SetFocus("feed") a.splash.SetInfo("loading channels...") return a, tea.Batch(feed.setItems(msg.Casts), focusCmd) @@ -358,7 +364,7 @@ func (a *App) Update(msg tea.Msg) (tea.Model, tea.Cmd) { case *currentAccountMsg: _, cmd := a.sidebar.Update(msg) - a.splash.ShowSignin(false) + a.splash.ShowSignin(false) return a, cmd } if a.publish.Active() {