mirror of
https://github.com/status-im/react-native.git
synced 2025-01-20 14:29:16 +00:00
60db876f66
Summary: public RCTUIManager is a public module with several useful methods, however, unlike most such modules, it does not have a JS wrapper that would allow it to be required directly. Besides making it more cumbersome to use, this also makes it impossible to modify the UIManager API, or smooth over differences between platforms in the JS layer without breaking all of the call sites. This diff adds a simple JS wrapper file for the UIManager module to make it easier to work with. Reviewed By: tadeuzagallo Differential Revision: D2700348 fb-gh-sync-id: dd9030eface100b1baf756da11bae355dc0f266f
118 lines
3.8 KiB
JavaScript
118 lines
3.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule requireNativeComponent
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var ReactNativeStyleAttributes = require('ReactNativeStyleAttributes');
|
|
var UIManager = require('UIManager');
|
|
var UnimplementedView = require('UnimplementedView');
|
|
|
|
var createReactNativeComponentClass = require('createReactNativeComponentClass');
|
|
var insetsDiffer = require('insetsDiffer');
|
|
var pointsDiffer = require('pointsDiffer');
|
|
var matricesDiffer = require('matricesDiffer');
|
|
var processColor = require('processColor');
|
|
var sizesDiffer = require('sizesDiffer');
|
|
var verifyPropTypes = require('verifyPropTypes');
|
|
var warning = require('warning');
|
|
|
|
/**
|
|
* Used to create React components that directly wrap native component
|
|
* implementations. Config information is extracted from data exported from the
|
|
* UIManager module. You should also wrap the native component in a
|
|
* hand-written component with full propTypes definitions and other
|
|
* documentation - pass the hand-written component in as `componentInterface` to
|
|
* verify all the native props are documented via `propTypes`.
|
|
*
|
|
* If some native props shouldn't be exposed in the wrapper interface, you can
|
|
* pass null for `componentInterface` and call `verifyPropTypes` directly
|
|
* with `nativePropsToIgnore`;
|
|
*
|
|
* Common types are lined up with the appropriate prop differs with
|
|
* `TypeToDifferMap`. Non-scalar types not in the map default to `deepDiffer`.
|
|
*/
|
|
import type { ComponentInterface } from 'verifyPropTypes';
|
|
|
|
function requireNativeComponent(
|
|
viewName: string,
|
|
componentInterface?: ?ComponentInterface,
|
|
extraConfig?: ?{nativeOnly?: Object},
|
|
): Function {
|
|
var viewConfig = UIManager[viewName];
|
|
if (!viewConfig || !viewConfig.NativeProps) {
|
|
warning(false, 'Native component for "%s" does not exist', viewName);
|
|
return UnimplementedView;
|
|
}
|
|
var nativeProps = {
|
|
...UIManager.RCTView.NativeProps,
|
|
...viewConfig.NativeProps,
|
|
};
|
|
viewConfig.uiViewClassName = viewName;
|
|
viewConfig.validAttributes = {};
|
|
viewConfig.propTypes = componentInterface && componentInterface.propTypes;
|
|
for (var key in nativeProps) {
|
|
var useAttribute = false;
|
|
var attribute = {};
|
|
|
|
var differ = TypeToDifferMap[nativeProps[key]];
|
|
if (differ) {
|
|
attribute.diff = differ;
|
|
useAttribute = true;
|
|
}
|
|
|
|
var processor = TypeToProcessorMap[nativeProps[key]];
|
|
if (processor) {
|
|
attribute.process = processor;
|
|
useAttribute = true;
|
|
}
|
|
|
|
viewConfig.validAttributes[key] = useAttribute ? attribute : true;
|
|
}
|
|
|
|
// Unfortunately, the current set up puts the style properties on the top
|
|
// level props object. We also need to add the nested form for API
|
|
// compatibility. This allows these props on both the top level and the
|
|
// nested style level. TODO: Move these to nested declarations on the
|
|
// native side.
|
|
viewConfig.validAttributes.style = ReactNativeStyleAttributes;
|
|
|
|
if (__DEV__) {
|
|
componentInterface && verifyPropTypes(
|
|
componentInterface,
|
|
viewConfig,
|
|
extraConfig && extraConfig.nativeOnly
|
|
);
|
|
}
|
|
return createReactNativeComponentClass(viewConfig);
|
|
}
|
|
|
|
var TypeToDifferMap = {
|
|
// iOS Types
|
|
CATransform3D: matricesDiffer,
|
|
CGPoint: pointsDiffer,
|
|
CGSize: sizesDiffer,
|
|
UIEdgeInsets: insetsDiffer,
|
|
// Android Types
|
|
// (not yet implemented)
|
|
};
|
|
|
|
var TypeToProcessorMap = {
|
|
// iOS Types
|
|
CGColor: processColor,
|
|
CGColorArray: processColor,
|
|
UIColor: processColor,
|
|
UIColorArray: processColor,
|
|
// Android Types
|
|
Color: processColor,
|
|
};
|
|
|
|
module.exports = requireNativeComponent;
|