mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-01-27 15:14:30 +00:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
|
/**
|
||
|
* 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;
|