list of known feeds needs to update when user adds or deletes feeds #3
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ferrous_sapling/activity-pub-explorer#3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now they need to refresh the page to get the correct/updated list of known feeds displayed on their page.
Technically speaking, this limitation comes from the fact that we read the list of known feeds from IndexedDB inside the root +layout.ts
loadhandle.In theory, nothing needs to be changed from the user's point of view - these updates should happen automatically without further prompting or new UI elements.
On the technical side, we need to implement something approaching tanstack query. In theory, sveltekit's invalidate helper function could do the trick.
We might also investigate directly using tanstack query as a (further) wrapper for IndexedDB interactions.
implemented/solved by #5