Add list page for subscribed blog podcasts#5300
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Blogs “subscribed blogs” list experience in Profile → Blogs by introducing a Room-backed query for subscribed web-feed podcasts and new Compose UI + ViewModel to display them, while preserving the existing empty state when no blogs are subscribed.
Changes:
- Added
PodcastDao.observeSubscribedWebFeedPodcasts()(subscribed + web_feed, ordered by latest episode date with nulls last) and exposed it viaPodcastManager. - Introduced
BlogsViewModeland a new ComposeBlogsListPageto render subscribed blog podcasts and a FAB to start the Add-a-blog (or upsell) flow. - Updated
BlogsFragmentnavigation to start on the list/empty-state destination and to pop back to the list after a blog is added before opening the podcast screen.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| modules/services/repositories/src/main/java/au/com/shiftyjelly/pocketcasts/repositories/podcast/PodcastManagerImpl.kt | Exposes the new DAO flow from the repository layer. |
| modules/services/repositories/src/main/java/au/com/shiftyjelly/pocketcasts/repositories/podcast/PodcastManager.kt | Adds the new public API for observing subscribed web-feed podcasts. |
| modules/services/model/src/main/java/au/com/shiftyjelly/pocketcasts/models/db/dao/PodcastDao.kt | Adds a new Room query/Flow for subscribed web-feed podcasts with ordering. |
| modules/features/profile/src/main/java/au/com/shiftyjelly/pocketcasts/profile/blogs/EmptyBlogsPage.kt | Adds showContent flag to avoid flashing the empty illustration before first DB emission. |
| modules/features/profile/src/main/java/au/com/shiftyjelly/pocketcasts/profile/blogs/BlogsViewModel.kt | New ViewModel holding list state (blogPodcasts) and bottomInset. |
| modules/features/profile/src/main/java/au/com/shiftyjelly/pocketcasts/profile/blogs/BlogsListPage.kt | New Compose list UI with rows + FAB for adding blogs. |
| modules/features/profile/src/main/java/au/com/shiftyjelly/pocketcasts/profile/blogs/BlogsFragment.kt | Updates Compose navigation destinations and back stack behavior after adding a blog. |
Collaborator
Project dependencies changeslist! Upgraded Dependencies
com.automattic:eventhorizon:pocket-casts-2026-05-13_12-14-29, (changed from pocket-casts-2026-05-11_00-19-10)tree +--- project :modules:features:account
| \--- project :modules:features:search
| \--- project :modules:services:analytics
-| +--- com.automattic:eventhorizon:pocket-casts-2026-05-11_00-19-10
+| +--- com.automattic:eventhorizon:pocket-casts-2026-05-13_12-14-29
| +--- project :modules:services:model
-| | +--- com.automattic:eventhorizon:pocket-casts-2026-05-11_00-19-10 (*)
+| | +--- com.automattic:eventhorizon:pocket-casts-2026-05-13_12-14-29 (*)
| | \--- project :modules:services:utils
| | \--- project :modules:services:payment
-| | \--- com.automattic:eventhorizon:pocket-casts-2026-05-11_00-19-10 (*)
+| | \--- com.automattic:eventhorizon:pocket-casts-2026-05-13_12-14-29 (*)
| \--- project :modules:services:preferences
-| \--- com.automattic:eventhorizon:pocket-casts-2026-05-11_00-19-10 (*)
+| \--- com.automattic:eventhorizon:pocket-casts-2026-05-13_12-14-29 (*)
\--- project :modules:features:discover
\--- project :modules:features:podcasts
\--- project :modules:features:player
\--- project :modules:features:transcripts
\--- project :modules:services:sharing
- \--- com.automattic:eventhorizon:pocket-casts-2026-05-11_00-19-10 (*)
+ \--- com.automattic:eventhorizon:pocket-casts-2026-05-13_12-14-29 (*) |
MiSikora
approved these changes
May 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This changes adds the list of blog podcasts in the blogs section.
If there no subscribed blogs it will show the existing empty state.
Fixes https://linear.app/a8c/issue/POC-593/android-add-a-blog-list-page
Testing Instructions
Screenshots
Checklist
./gradlew spotlessApplyto automatically apply formatting/linting)modules/services/localization/src/main/res/values/strings.xmlI have tested any UI changes...