mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
42 lines
1.2 KiB
JavaScript
42 lines
1.2 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 createReactNativeComponentClass
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var ReactNativeBaseComponent = require('./ReactNativeBaseComponent');
|
|
|
|
// See also ReactNativeBaseComponent
|
|
|
|
|
|
/**
|
|
* @param {string} config iOS View configuration.
|
|
* @private
|
|
*/
|
|
var createReactNativeComponentClass = function (viewConfig) {
|
|
var Constructor = function (element) {
|
|
this._currentElement = element;
|
|
this._topLevelWrapper = null;
|
|
this._hostParent = null;
|
|
this._hostContainerInfo = null;
|
|
this._rootNodeID = 0;
|
|
this._renderedChildren = null;
|
|
};
|
|
Constructor.displayName = viewConfig.uiViewClassName;
|
|
Constructor.viewConfig = viewConfig;
|
|
Constructor.propTypes = viewConfig.propTypes;
|
|
Constructor.prototype = new ReactNativeBaseComponent(viewConfig);
|
|
Constructor.prototype.constructor = Constructor;
|
|
|
|
return Constructor;
|
|
};
|
|
|
|
module.exports = createReactNativeComponentClass; |