feat: add batch unsubscribe UI to sidebar - #5075
Open
devwez wants to merge 1 commit into
Open
Conversation
Adds a visible multi-select mode indicator and batch action bar to the subscription column sidebar. When feeds are selected (via Cmd/Ctrl+Click), a bar appears at the bottom showing the selection count with options to cancel or unfollow all selected feeds. This makes the existing batch unsubscribe feature discoverable without requiring users to know about the keyboard shortcut or context menu. Closes RSSNext#5053
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.
Summary
Adds a visible multi-select mode indicator and batch action bar to the subscription column sidebar for easy multi-feed management.
Problem
Issue #5053 requests the ability to delete multiple RSS feeds at once. The batch unsubscribe functionality already exists (Cmd/Ctrl+Click to select, then right-click > Unfollow), but it is not discoverable - users have no visual indication that multi-select is possible.
Solution
Multi-select mode indicator: When feeds are selected, a checkbox icon appears in the header showing that multi-select mode is active. Clicking it exits the mode.
Batch action bar: When one or more feeds are selected, a bar slides up from the bottom of the sidebar showing:
i18n: Added translation keys for the new UI elements.
Changes
SubscriptionColumnHeader.tsx- Added multi-select mode indicator buttonindex.tsx- AddedBatchActionBarcomponent with selection count, cancel, and unfollow actionslocales/app/en.json- Added translation keysTesting