mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
0f83dfab8e
Summary: It appears that `(e: BubblingEvent<T>) = mixed` exists only in given context and it's pointless to keep in this way. It could be simplified to `BubblingEventHandler<T>` without any negative consequences and that's the motivation of this diff. The only tradeoff of this decision is leaving an opportunity to declare Bubbling/Direct event in the top of the file bc then analysing the code becomes much more difficult. However, it's not used anywhere so it's not a problem now and probably any time. Also, changes the names to `DirectEventHandler` and `BubblingEventHandler` which are more related to current state. The names were updated in many places in code. Reviewed By: rubennorte Differential Revision: D16054571 fbshipit-source-id: 741d075eb46b80bac8eb73a6b30fc0b448cb3902
134 lines
3.7 KiB
JavaScript
134 lines
3.7 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
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import codegenNativeComponent from '../Utilities/codegenNativeComponent';
|
|
import type {
|
|
WithDefault,
|
|
BubblingEventHandler,
|
|
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 `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 `visible` prop determines whether your modal is visible.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#visible
|
|
*/
|
|
visible?: ?WithDefault<boolean, false>,
|
|
|
|
/**
|
|
* The `onRequestClose` callback is called when the user taps the hardware
|
|
* back button on Android or the menu button on Apple TV.
|
|
*
|
|
* 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>,
|
|
|
|
/**
|
|
* The `onDismiss` prop allows passing a function that will be called once
|
|
* the modal has been dismissed.
|
|
*
|
|
* See https://facebook.github.io/react-native/docs/modal.html#ondismiss
|
|
*/
|
|
onDismiss?: ?BubblingEventHandler<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',
|
|
});
|