mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
6d00239e49
Summary:
Starting on iOS 13, a View Controller presented modally will have a "bottom sheet" style unless it's explicitly presented full screen.
Before this, modals on iOS were only being dismissed programatically by setting `visible={false}`. However, now that the dismissal can happen on the OS side, we need a callback to be able to update the state.
This PR reuses the `onRequestClose` prop already available for tvOS and Android, and makes it work on iOS for this use case.
Should fix https://github.com/facebook/react-native/issues/26892
## Changelog
[iOS] [Added] - Add support for onRequestClose prop to Modal on iOS 13+
Pull Request resolved: https://github.com/facebook/react-native/pull/27618
Test Plan:
I tested this using the RNTester app with the Modal example:
1. Select any presentation style other than the full screen ones
2. Tap Present and the modal is presented
3. Swipe down on the presented modal until dismissed
4. Tap Present again and a second modal should be presented

Differential Revision: D19235758
Pulled By: shergin
fbshipit-source-id: c0f1d946c77ce8d1baab209eaef7eb64697851df
128 lines
3.6 KiB
JavaScript
128 lines
3.6 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import codegenNativeComponent from '../Utilities/codegenNativeComponent';
|
|
import type {HostComponent} from '../Renderer/shims/ReactNativeTypes';
|
|
import type {
|
|
WithDefault,
|
|
DirectEventHandler,
|
|
Int32,
|
|
} from '../Types/CodegenTypes';
|
|
|
|
import type {ViewProps} from '../Components/View/ViewPropTypes';
|
|
|
|
type OrientationChangeEvent = $ReadOnly<{|
|
|
orientation: 'portrait' | 'landscape',
|
|
|}>;
|
|
|
|
type NativeProps = $ReadOnly<{|
|
|
...ViewProps,
|
|
|
|
/**
|
|
* The `animationType` prop controls how the modal animates.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#animationtype
|
|
*/
|
|
animationType?: WithDefault<'none' | 'slide' | 'fade', 'none'>,
|
|
|
|
/**
|
|
* The `presentationStyle` prop controls how the modal appears.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#presentationstyle
|
|
*/
|
|
presentationStyle?: WithDefault<
|
|
'fullScreen' | 'pageSheet' | 'formSheet' | 'overFullScreen',
|
|
'fullScreen',
|
|
>,
|
|
|
|
/**
|
|
* The `transparent` prop determines whether your modal will fill the
|
|
* entire view.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#transparent
|
|
*/
|
|
transparent?: WithDefault<boolean, false>,
|
|
|
|
/**
|
|
* The `statusBarTranslucent` prop determines whether your modal should go under
|
|
* the system statusbar.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#statusBarTranslucent
|
|
*/
|
|
statusBarTranslucent?: WithDefault<boolean, false>,
|
|
|
|
/**
|
|
* The `hardwareAccelerated` prop controls whether to force hardware
|
|
* acceleration for the underlying window.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#hardwareaccelerated
|
|
*/
|
|
hardwareAccelerated?: WithDefault<boolean, false>,
|
|
|
|
/**
|
|
* The `onRequestClose` callback is called when the user taps the hardware
|
|
* back button on Android, the menu button on Apple TV, or a modal is dismissed
|
|
* with a gesture on iOS 13+.
|
|
*
|
|
* This is required on Apple TV and Android.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#onrequestclose
|
|
*/
|
|
onRequestClose?: ?DirectEventHandler<null>,
|
|
|
|
/**
|
|
* The `onShow` prop allows passing a function that will be called once the
|
|
* modal has been shown.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#onshow
|
|
*/
|
|
onShow?: ?DirectEventHandler<null>,
|
|
|
|
/**
|
|
* Deprecated. Use the `animationType` prop instead.
|
|
*/
|
|
animated?: WithDefault<boolean, false>,
|
|
|
|
/**
|
|
* The `supportedOrientations` prop allows the modal to be rotated to any of the specified orientations.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#supportedorientations
|
|
*/
|
|
supportedOrientations?: WithDefault<
|
|
$ReadOnlyArray<
|
|
| 'portrait'
|
|
| 'portrait-upside-down'
|
|
| 'landscape'
|
|
| 'landscape-left'
|
|
| 'landscape-right',
|
|
>,
|
|
'portrait',
|
|
>,
|
|
|
|
/**
|
|
* The `onOrientationChange` callback is called when the orientation changes while the modal is being displayed.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#onorientationchange
|
|
*/
|
|
onOrientationChange?: ?DirectEventHandler<OrientationChangeEvent>,
|
|
|
|
/**
|
|
* The `identifier` is the unique number for identifying Modal components.
|
|
*/
|
|
identifier?: WithDefault<Int32, 0>,
|
|
|}>;
|
|
|
|
export default (codegenNativeComponent<NativeProps>('ModalHostView', {
|
|
interfaceOnly: true,
|
|
paperComponentName: 'RCTModalHostView',
|
|
}): HostComponent<NativeProps>);
|