-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Make "bookmark added" dialog specific to that use case #7099
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
CDRussell
merged 1 commit into
develop
from
feature/craig/make_bookmark_added_dialog_less_generic
Nov 19, 2025
Merged
Make "bookmark added" dialog specific to that use case #7099
CDRussell
merged 1 commit into
develop
from
feature/craig/make_bookmark_added_dialog_less_generic
Nov 19, 2025
Conversation
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
Member
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
2b3bf02 to
85c38e1
Compare
85c38e1 to
df9820c
Compare
ca118be to
4ab4dbf
Compare
18 tasks
4ab4dbf to
9158c48
Compare
CrisBarreiro
approved these changes
Nov 18, 2025
| private val bookmarkFolder: BookmarkFolder?, | ||
| ) : BottomSheetDialog(context) { | ||
|
|
||
| abstract class EventListener { |
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: why not an interface?
Member
Author
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
9158c48 to
ce58927
Compare
Member
Author
Merge activity
|
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.


Task/Issue URL: https://app.asana.com/1/137249556945/project/1208273769335188/task/1211910160515992?focus=true
Description
This is taking
BookmarksBottomSheetDialog, which is generic but only ever used for a specific use case (bookmark added confirmation) and just making it specific to that use case. This simplifies it as well as better preparing it for extension to support adding an option to let users know they can enable sync.BookmarksBottomSheetDialog-->BookmarkAddedConfirmationDialogStrings moving to the correct module is done in #7127 to de-noise this one..
Steps to test this PR
Auto-dismisses
Add Bookmark.Edit Bookmarkand delete itEdit (not as favorite)
Add Bookmarkagain, don't toggle theAdd to Favoritesbut do tap onEdit Bookmark. Verify it isn't marked as favorite.Edit (when a favorite)
Add Bookmarkagain, this time toggle theAdd to Favoritesto enabledEdit Bookmark. Verify it is still marked as a favorite.