mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
45
react-app/node_modules/react/lib/ReactComponentBrowserEnvironment.js
generated
vendored
Normal file
45
react-app/node_modules/react/lib/ReactComponentBrowserEnvironment.js
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
/**
|
||||
* Copyright 2013-2015, 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 ReactComponentBrowserEnvironment
|
||||
*/
|
||||
|
||||
/*jslint evil: true */
|
||||
|
||||
'use strict';
|
||||
|
||||
var ReactDOMIDOperations = require("./ReactDOMIDOperations");
|
||||
var ReactMount = require("./ReactMount");
|
||||
|
||||
/**
|
||||
* Abstracts away all functionality of the reconciler that requires knowledge of
|
||||
* the browser context. TODO: These callers should be refactored to avoid the
|
||||
* need for this injection.
|
||||
*/
|
||||
var ReactComponentBrowserEnvironment = {
|
||||
|
||||
processChildrenUpdates:
|
||||
ReactDOMIDOperations.dangerouslyProcessChildrenUpdates,
|
||||
|
||||
replaceNodeWithMarkupByID:
|
||||
ReactDOMIDOperations.dangerouslyReplaceNodeWithMarkupByID,
|
||||
|
||||
/**
|
||||
* If a particular environment requires that some resources be cleaned up,
|
||||
* specify this in the injected Mixin. In the DOM, we would likely want to
|
||||
* purge any cached node ID lookups.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
unmountIDFromEnvironment: function(rootNodeID) {
|
||||
ReactMount.purgeID(rootNodeID);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
module.exports = ReactComponentBrowserEnvironment;
|
Reference in New Issue
Block a user