-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Implemented on onEndEditing for TextInput component #14489
base: main
Are you sure you want to change the base?
Conversation
@@ -933,6 +933,19 @@ void WindowsTextInputComponentView::onLostFocus( | |||
m_textServices->TxSendMessage(WM_KILLFOCUS, 0, 0, &lresult); | |||
} | |||
m_caretVisual.IsVisible(false); | |||
|
|||
// Call onEndEditing when focus is lost | |||
if (m_eventEmitter && !m_comingFromJS) { |
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.
Why !m_comingFromJS?
I'm also not sure that we get onLostFocus from JS?
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.
correct JS does not directly call onLostFocus in native code , JS does not directly dispatch this event
but it can cause focus loss by calling .blur() on a TextInput thats where m_comingFromJS helps -> it prevents firing onEndEditing again when JS initiates focus loss.
"when the keyboard is dismissed" That said, that aligns with what the PR here actually does. I'd probably remove the "when the keyboard is dismissed" from your PR description, and remove the keyboard touchable in the sample. |
…ause blur or lost focus implicitly
Description
Implemented on onEndEditing for TextInput component
Captures the final text when the input loses focus
input loses focus
Type of Change
Why
What is the motivation for this change? Add a few sentences describing the context and overall goals of the pull request's commits.
Fabric implementation of onEndEditing for TextInput component
Resolves [Add Relevant Issue Here]
#13126
What
What changes were made to the codebase to solve the bug, add the functionality, etc. that you specified above.
added new emitter for onEndEditing , when lost focus in component view this emitter is triggered .
Screenshots
Three scenarios
onEndEditing.mp4
Testing
Tested using Sample/textInput
Changelog
yes
Add a brief summary of the change to use in the release notes for the next release.