2015-02-19 20:10:52 -08:00
|
|
|
/**
|
2015-03-23 13:35:08 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08: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-19 20:10:52 -08:00
|
|
|
*
|
2018-01-14 19:32:26 -08:00
|
|
|
* @format
|
2018-05-09 00:47:48 -07:00
|
|
|
* @flow
|
2015-02-19 20:10:52 -08:00
|
|
|
*/
|
2018-05-09 00:47:46 -07:00
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
'use strict';
|
|
|
|
|
2016-12-19 06:26:07 -08:00
|
|
|
const Platform = require('Platform');
|
2017-05-23 07:55:52 -07:00
|
|
|
const React = require('React');
|
2016-01-27 09:04:14 -08:00
|
|
|
const ReactNativeStyleAttributes = require('ReactNativeStyleAttributes');
|
2018-05-09 00:47:46 -07:00
|
|
|
const TextAncestor = require('TextAncestor');
|
2017-03-23 09:08:46 -07:00
|
|
|
const ViewPropTypes = require('ViewPropTypes');
|
2018-05-09 00:47:46 -07:00
|
|
|
|
2017-01-25 10:31:40 -08:00
|
|
|
const invariant = require('fbjs/lib/invariant');
|
2017-05-23 07:55:52 -07:00
|
|
|
const requireNativeComponent = require('requireNativeComponent');
|
2016-02-15 15:13:42 -08:00
|
|
|
|
2018-05-09 00:47:48 -07:00
|
|
|
import type {NativeComponent} from 'ReactNative';
|
2017-05-23 07:55:52 -07:00
|
|
|
import type {ViewProps} from 'ViewPropTypes';
|
|
|
|
|
|
|
|
export type Props = ViewProps;
|
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
/**
|
2018-03-09 18:26:58 -08: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-19 20:10:52 -08:00
|
|
|
*
|
2018-03-09 18:26:58 -08:00
|
|
|
* @see http://facebook.github.io/react-native/docs/view.html
|
2015-02-19 20:10:52 -08:00
|
|
|
*/
|
2018-05-09 00:47:48 -07:00
|
|
|
const RCTView = requireNativeComponent(
|
|
|
|
'RCTView',
|
|
|
|
{
|
|
|
|
propTypes: ViewPropTypes,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
nativeOnly: {
|
|
|
|
nativeBackgroundAndroid: true,
|
|
|
|
nativeForegroundAndroid: true,
|
|
|
|
},
|
2018-01-14 19:32:26 -08:00
|
|
|
},
|
2018-05-09 00:47:48 -07:00
|
|
|
);
|
2015-11-20 00:47:24 -08:00
|
|
|
|
2015-04-21 21:07:17 -07:00
|
|
|
if (__DEV__) {
|
2016-10-27 04:17:41 -07:00
|
|
|
const UIManager = require('UIManager');
|
2018-01-14 19:32:26 -08:00
|
|
|
const viewConfig =
|
|
|
|
(UIManager.viewConfigs && UIManager.viewConfigs.RCTView) || {};
|
2016-01-27 09:04:14 -08:00
|
|
|
for (const prop in viewConfig.nativeProps) {
|
2018-05-09 00:47:48 -07:00
|
|
|
if (!ViewPropTypes[prop] && !ReactNativeStyleAttributes[prop]) {
|
2015-04-21 21:07:17 -07:00
|
|
|
throw new Error(
|
2018-01-14 19:32:26 -08:00
|
|
|
'View is missing propType for native prop `' + prop + '`',
|
2015-04-21 21:07:17 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2016-01-27 09:04:14 -08:00
|
|
|
let ViewToExport = RCTView;
|
2017-06-21 12:23:58 -07:00
|
|
|
if (__DEV__) {
|
2018-05-09 00:47:48 -07:00
|
|
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
|
|
|
ViewToExport = React.forwardRef((props, ref) => (
|
|
|
|
<TextAncestor.Consumer>
|
|
|
|
{hasTextAncestor => {
|
|
|
|
invariant(
|
2018-05-09 00:47:50 -07:00
|
|
|
!hasTextAncestor,
|
|
|
|
'Nesting of <View> within <Text> is not currently supported.',
|
2018-05-09 00:47:48 -07:00
|
|
|
);
|
|
|
|
return <RCTView {...props} ref={ref} />;
|
|
|
|
}}
|
|
|
|
</TextAncestor.Consumer>
|
|
|
|
));
|
|
|
|
ViewToExport.displayName = 'View';
|
2015-02-19 20:10:52 -08:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:47:48 -07:00
|
|
|
module.exports = ((ViewToExport: any): Class<NativeComponent<ViewProps, any>>);
|