2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-03-23 20:35:08 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-02-20 04:10:52 +00:00
|
|
|
*
|
2018-01-15 03:32:26 +00:00
|
|
|
* @format
|
2018-05-09 07:47:48 +00:00
|
|
|
* @flow
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
2018-05-09 07:47:46 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-05-23 14:55:52 +00:00
|
|
|
const React = require('React');
|
2018-05-09 07:47:46 +00:00
|
|
|
const TextAncestor = require('TextAncestor');
|
2018-08-09 01:34:26 +00:00
|
|
|
const ViewNativeComponent = require('ViewNativeComponent');
|
2018-05-09 07:47:46 +00:00
|
|
|
|
2017-01-25 18:31:40 +00:00
|
|
|
const invariant = require('fbjs/lib/invariant');
|
2016-02-15 23:13:42 +00:00
|
|
|
|
2017-05-23 14:55:52 +00:00
|
|
|
import type {ViewProps} from 'ViewPropTypes';
|
|
|
|
|
|
|
|
export type Props = ViewProps;
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2018-03-10 02:26:58 +00:00
|
|
|
* The most fundamental component for building a UI, View is a container that
|
|
|
|
* supports layout with flexbox, style, some touch handling, and accessibility
|
|
|
|
* controls.
|
2015-02-20 04:10:52 +00:00
|
|
|
*
|
2018-03-10 02:26:58 +00:00
|
|
|
* @see http://facebook.github.io/react-native/docs/view.html
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
|
2018-08-09 01:34:26 +00:00
|
|
|
let ViewToExport = ViewNativeComponent;
|
2017-06-21 19:23:58 +00:00
|
|
|
if (__DEV__) {
|
2018-08-09 01:34:26 +00:00
|
|
|
const View = (
|
|
|
|
props: Props,
|
|
|
|
forwardedRef: React.Ref<typeof ViewNativeComponent>,
|
|
|
|
) => {
|
2018-06-12 02:10:27 +00:00
|
|
|
return (
|
|
|
|
<TextAncestor.Consumer>
|
|
|
|
{hasTextAncestor => {
|
|
|
|
invariant(
|
|
|
|
!hasTextAncestor,
|
|
|
|
'Nesting of <View> within <Text> is not currently supported.',
|
|
|
|
);
|
2018-08-09 01:34:26 +00:00
|
|
|
return <ViewNativeComponent {...props} ref={forwardedRef} />;
|
2018-06-12 02:10:27 +00:00
|
|
|
}}
|
|
|
|
</TextAncestor.Consumer>
|
|
|
|
);
|
|
|
|
};
|
2018-05-09 07:47:48 +00:00
|
|
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
2018-06-12 02:10:27 +00:00
|
|
|
ViewToExport = React.forwardRef(View);
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 01:34:26 +00:00
|
|
|
module.exports = ((ViewToExport: $FlowFixMe): typeof ViewNativeComponent);
|