-
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
Implementation for onContentSizeChange property for TextInput for fabric #14479
base: main
Are you sure you want to change the base?
Conversation
…ion of TextInput.
…lementation of TextInput." This reverts commit bbe8b68.
Can you cross check on the lint issue pipeline? |
Just for clarification, should it be invoked on every text character input (everytime you typed the character 'h') as the content or the box height and width is the content that triggers on every new line? |
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.
If the content is triggered on box dimension change then looks good! Please do double check once on my previous comment.
It should be any kind of change to Text Input component. On paper this event is triggered even when you re size (drag) the app window. I think it should be based on any size change not necessarily when "change in size due to text overflow". I am open for better approaches |
Did some testing using Expo snack to verify the behavior on Android/iOS and looks like the event should be triggered when the TextInput box size changes or if the content size grows beyond what fits in the TextInput box and now must be scrolled in either direction. |
Looks like you have some linting errors. Running |
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.
👍
Happy to approve. If you have the capacity to add a test case to validate this new functionality that would be great. I believe Anupriya has learned how to add tests to the repo.
Will learn and add test cases. |
Fixed the linting errors and pipelines are green now. |
Can we add the tests part of this issue: #11309 ? |
// call onContentSizeChange event for multiline TextInput | ||
if (m_eventEmitter && !m_comingFromJS && m_multiline) { | ||
auto emitter = std::static_pointer_cast<const facebook::react::WindowsTextInputEventEmitter>(m_eventEmitter); | ||
facebook::react::WindowsTextInputEventEmitter::OnContentSizeChange onContentSizeChangeArgs; |
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 dont think this is the content size. This is the size of the textinput - But I think onContentSize is supposed to be the size of the text content. So if there is more text that fits within the TextInput bounds, and the TextInput starts scrolling, then onContentSize would report a value larger than the layoutMetrics.frame.size.
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.
Yeah, verified in Expo Snack - In 2 line multiline textinput, as I add more and more lines of text the contentSize increases even through the textinput itself does not increase in size.
// call onContentSizeChange event for multiline TextInput | ||
if (m_eventEmitter && !m_comingFromJS && m_multiline) { | ||
auto emitter = std::static_pointer_cast<const facebook::react::WindowsTextInputEventEmitter>(m_eventEmitter); | ||
facebook::react::WindowsTextInputEventEmitter::OnContentSizeChange onContentSizeChangeArgs; |
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.
Yeah, verified in Expo Snack - In 2 line multiline textinput, as I add more and more lines of text the contentSize increases even through the textinput itself does not increase in size.
Description
Type of Change
Why
Implementation for onContentSizeChange property for TextInput for fabric
This property was available in RNW Paper via TextInputViewManager.
See https://reactnative.dev/docs/textinput#oncontentsizechange for details.
Resolves #13125
What
Implemented onContentSizeChange property for TextInput for fabric
Screenshots
oncontentsizeChanged_textinput_1.mp4
Testing
Tested using playground-composition App,
Changelog
Yes
Add a brief summary of the change to use in the release notes for the next release.
Microsoft Reviewers: Open in CodeFlow