Skip to content
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

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

satkh
Copy link

@satkh satkh commented Apr 3, 2025

Description

Type of Change

  • Bug fix (non-breaking change which fixes an issue)

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,

  1. Adding text till it over flows the input text size.
  2. Dragging the app window (increases the width of the input text component)

Changelog

Yes

Add a brief summary of the change to use in the release notes for the next release.

  • Implementation for onContentSizeChange property for TextInput for fabric
Microsoft Reviewers: Open in CodeFlow

@satkh satkh requested review from sharath2727 and anupriya13 April 3, 2025 12:51
@satkh satkh changed the title User/satkh/text input on content size change prop 1 Implementation for onContentSizeChange property for TextInput for fabric Apr 3, 2025
@anupriya13
Copy link
Contributor

Can you cross check on the lint issue pipeline?

@anupriya13
Copy link
Contributor

anupriya13 commented Apr 3, 2025

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?

Copy link
Contributor

@anupriya13 anupriya13 left a 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.

@satkh
Copy link
Author

satkh commented Apr 3, 2025

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?

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

@satkh satkh marked this pull request as ready for review April 3, 2025 16:37
@satkh satkh requested a review from a team as a code owner April 3, 2025 16:37
@chiaramooney
Copy link
Contributor

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?

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.

@chiaramooney
Copy link
Contributor

Looks like you have some linting errors. Running yarn lint:fix from the root of the repo should fix this.

Copy link
Contributor

@chiaramooney chiaramooney left a 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.

@satkh
Copy link
Author

satkh commented Apr 4, 2025

👍

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.

@satkh
Copy link
Author

satkh commented Apr 4, 2025

Looks like you have some linting errors. Running yarn lint:fix from the root of the repo should fix this.

Fixed the linting errors and pipelines are green now.

@satkh
Copy link
Author

satkh commented Apr 4, 2025

👍

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.

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;
Copy link
Collaborator

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.

Copy link
Collaborator

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;
Copy link
Collaborator

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.

@microsoft-github-policy-service microsoft-github-policy-service bot added the Needs: Author Feedback The issue/PR needs activity from its author (label drives bot activity) label Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs: Author Feedback The issue/PR needs activity from its author (label drives bot activity)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement onContentSizeChange property for TextInput for fabric
5 participants