-
Notifications
You must be signed in to change notification settings - Fork 261
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
[SuperEditor] Add more specific SelectionChangeTypes (Resolves #2367) #2589
base: main
Are you sure you want to change the base?
[SuperEditor] Add more specific SelectionChangeTypes (Resolves #2367) #2589
Conversation
@JostSchenck Could you please try this PR to see if it works for you? |
@angelosilvestre Thanks a lot. Trying it out now, but will respond to the issue for the context there. |
@angelosilvestre This PR solves my problem, thank you very much. |
@@ -483,12 +483,33 @@ enum SelectionChangeType { | |||
/// dragging with the mouse. | |||
placeExtent, | |||
|
|||
/// Place the caret based on a desire to move the previous caret position upstream or downstream. | |||
pushCaret, | |||
/// Place the caret based on a desire to move the previous caret position downstream. |
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.
I think I/we made these descriptions too verbose to begin with. There are so many words that it actually confuses the meaning.
Let's go with: "Move the caret one unit downstream."
Please attempt to adjust the other descriptions to have similar concision for the sake of clarity.
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.
Updated.
[SuperEditor] Add more specific SelectionChangeTypes (Resolves #2367)
Currently, when moving the caret using up or down arrow, the editor generates a selection change event with the type
SelectionChangeType.collapseSelection
. This makes it difficult for reactions to determine if the selection moved up or down.Also, our
SelectionChangeType
s for pushing the caret or extent don't carry the direction of the selection change.This PR removes
SelectionChangeType.pushCaret
andSelectionChangeType.pushExtent
in favor of more specific types:SelectionChangeType.pushDownstream
SelectionChangeType.pushCaretUpstream
SelectionChangeType.pushCaretDown
SelectionChangeType.pushCaretUp
SelectionChangeType.pushExtentDownstream
SelectionChangeType.pushExtentUpstream
SelectionChangeType.pushExtentDown
SelectionChangeType.pushExtentUp
This is a breaking change, but I think it's much more safer to generate a compilation error instead of keeping
SelectionChangeType.pushCaretUp
and possibly silently failing at runtime.The upgrade should be straightforward:
Before
After:
On Android, we are always generating a selection change type of
SelectionChangeType.pushCaret
. This PR changes it toSelectionChangeType.placeCaret
, but it might be better to let that decision to the touch interactor instead.On web, things are a bit trickier. We handle selection changes by IME deltas, so we don't have information about the intent of the selection change. Should we compare the new selection, with the selection that is expected when the user presses up/down/left/right arrow to determine what is the correct selection change type?