[RN] Move new event dispatching pipeline to RN#36266
Merged
rubennorte merged 1 commit intofacebook:mainfrom Apr 14, 2026
Merged
[RN] Move new event dispatching pipeline to RN#36266rubennorte merged 1 commit intofacebook:mainfrom
rubennorte merged 1 commit intofacebook:mainfrom
Conversation
|
Comparing: 5682442...3902c46 Critical size changesIncludes critical production bundles, as well as any change greater than 2%: Significant size changesIncludes any change greater than 0.2%: Expand to show
|
da016ec to
3902c46
Compare
Member
|
This logic deals with |
jackpope
approved these changes
Apr 14, 2026
Contributor
Author
The implementation in RN has changed to not use fibers and traverse via public instances instead, as we do for regular event dispatching. |
github-actions bot
pushed a commit
that referenced
this pull request
Apr 14, 2026
## Summary We found a bug in the logic in #36253 and we realized it's very inconvenient to iterate on the implementation when it's in this repository, as we're forced to then synchronize it to RN to test changes. This moves the entire implementation to RN for simplicity and also to simplify some clean ups in the future (like removing `top` prefixes from native event types). ## How did you test this change? The changes are gated. Will test e2e in RN. DiffTrain build for [0418c8a](0418c8a)
github-actions bot
pushed a commit
to code/lib-react
that referenced
this pull request
Apr 19, 2026
## Summary We found a bug in the logic in facebook#36253 and we realized it's very inconvenient to iterate on the implementation when it's in this repository, as we're forced to then synchronize it to RN to test changes. This moves the entire implementation to RN for simplicity and also to simplify some clean ups in the future (like removing `top` prefixes from native event types). ## How did you test this change? The changes are gated. Will test e2e in RN. DiffTrain build for [0418c8a](facebook@0418c8a)
github-actions bot
pushed a commit
to code/lib-react
that referenced
this pull request
Apr 19, 2026
## Summary We found a bug in the logic in facebook#36253 and we realized it's very inconvenient to iterate on the implementation when it's in this repository, as we're forced to then synchronize it to RN to test changes. This moves the entire implementation to RN for simplicity and also to simplify some clean ups in the future (like removing `top` prefixes from native event types). ## How did you test this change? The changes are gated. Will test e2e in RN. DiffTrain build for [0418c8a](facebook@0418c8a)
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
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.
Summary
We found a bug in the logic in #36253 and we realized it's very inconvenient to iterate on the implementation when it's in this repository, as we're forced to then synchronize it to RN to test changes.
This moves the entire implementation to RN for simplicity and also to simplify some clean ups in the future (like removing
topprefixes from native event types).How did you test this change?
The changes are gated. Will test e2e in RN.