-
Notifications
You must be signed in to change notification settings - Fork 24.6k
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
Allows interactive dismissal of modals on iOS #42309
base: main
Are you sure you want to change the base?
Allows interactive dismissal of modals on iOS #42309
Conversation
Hi @ChrisSchofieldCheckatrade! Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at [email protected]. Thanks! |
Base commit: 26e33a5 |
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks! |
Hi @ChrisSchofieldCheckatrade, thanks for your contribution. |
Absolutely. I'll refactor it. |
@cipolleschi all done and CI passing |
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.
Hi @ChrisSchofieldCheckatrade, thank you again to work on the PR.
The code looks good to me but, If I understand correctly, it is only working in the Old Architecture.
Have you tried with the New Architecture also? If not, could you perhaps try to implement the same behavior there as well? 🙏
Thank you so much!
I'll check that out and update here once done. |
…e dismissal calls onDismiss
@cipolleschi All done, CI was passing I've just had to write a new commit to revert to not using src dir for specs as per: edit: |
@@ -158,6 +158,12 @@ public Map<String, Object> getExportedCustomDirectEventTypeConstants() { | |||
return eventTypeConstants; | |||
} | |||
|
|||
@Override | |||
@ReactProp(name = "interactiveDismissal") |
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.
enableGesture
like RNSScreen seems like a better name?
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.
interactiveDismissal
matches the terminology Apple uses for this feature, so I'd argue no, but happy to revise to match consensus. (Reference)
Hi @ChrisSchofieldCheckatrade, just an update not to keep you hanging. The root problem is that, for internal reasons, we can't land code that changes both the Native and the JS side at the side time. We need these changes to be split in Native and JS, to make sure they will not cause any issue. To set expectations, I can take care of that after the other changes lands, but it will take some weeks. I hope this is ok with your timelines. |
@cipolleschi our situation is that we need this feature for something in our application, and so long as you guys intend to merge this, we can continue to simply patch react-native in our own code base. I'm happy to continue to maintain this PR for the coming weeks if it'll help you! Just give me an update when you're happy with the changes on your end. 😀 |
@ChrisSchofieldCheckatrade many thanks for your understanding, I really appreciate it. |
@cipolleschi has there been any movement? 😄 |
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.
Hi @ChrisSchofieldCheckatrade thanks for the contribution. We are good to proceed now.
For how things work internally, we will have to split the RP in two parts (native and JS) and land them in two different steps.
@cipolleschi has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Grand, anything needed on my end? |
Not for now, I think I can split it pretty easily, thanks! |
I don't mind, whichever is easier. 😄 |
This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
@ChrisSchofieldCheckatrade Sorry for making you wait so long on this, but we can try to land it now. Would you mind to rebase on top of main, first? |
Sure, I'll try to get to it over the next few days! |
I need this |
the code is very outdated now ad we can't import this pr. if @ChrisSchofieldCheckatrade as the original author would like to work on this, I can support landing it. |
Summary:
This pull request allows the user to dismiss a modal using either
pageSheet
orformSheet
presentation style whilst usingslide
animation type on iOS with an interactive gesture by explicitly opting in by settinginteractiveDismissal
property. Supports both old and new architectures.Changelog:
[GENERAL] [ADDED] - Added new property
interactiveDismissal
to Modal props[ANDROID] [ADDED] - Stubs a noop android method
[IOS] [ADDED] - Allows setting of modalInPresentation value in Modal UIKit files
[IOS] [ADDED] - Adds conformance to UIAdaptivePresentationControllerDelegate for the Fabric
RCTModalHostViewComponentView
.[INTERNAL] [ADDED] - Adds an example to the RNTester package
Test Plan:
Clone, run the RNTester package on iOS and Android, test the
interactiveDismissal
prop (for which there are instructions on the modal example screen)iOS
Screen.Recording.2024-01-16.at.14.56.16.mov