mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright 2013 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* @typechecks static-only
|
|
* @providesModule ReactServerRendering
|
|
*/
|
|
"use strict";
|
|
|
|
var ReactComponent = require('ReactComponent');
|
|
var ReactInstanceHandles = require('ReactInstanceHandles');
|
|
var ReactMarkupChecksum = require('ReactMarkupChecksum');
|
|
var ReactReconcileTransaction = require('ReactReconcileTransaction');
|
|
|
|
var invariant = require('invariant');
|
|
|
|
/**
|
|
* @param {ReactComponent} component
|
|
* @return {string} the markup
|
|
*/
|
|
function renderComponentToString(component) {
|
|
invariant(
|
|
ReactComponent.isValidComponent(component),
|
|
'renderComponentToString(): You must pass a valid ReactComponent.'
|
|
);
|
|
|
|
invariant(
|
|
!(arguments.length === 2 && typeof arguments[1] === 'function'),
|
|
'renderComponentToString(): This function became synchronous and now ' +
|
|
'returns the generated markup. Please remove the second parameter.'
|
|
);
|
|
|
|
var id = ReactInstanceHandles.createReactRootID();
|
|
var transaction = ReactReconcileTransaction.getPooled();
|
|
transaction.reinitializeTransaction();
|
|
try {
|
|
return transaction.perform(function() {
|
|
var markup = component.mountComponent(id, transaction, 0);
|
|
return ReactMarkupChecksum.addChecksumToMarkup(markup);
|
|
}, null);
|
|
} finally {
|
|
ReactReconcileTransaction.release(transaction);
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
renderComponentToString: renderComponentToString
|
|
};
|