Skip to content

Commit 767398a

Browse files
committed
Merge pull request #175 from radnor/master
Change React.render() to ReactDOM.render()
2 parents 438c897 + c4c4f54 commit 767398a

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

site/jekyll/getting-started/tutorial.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var CommentBox = React.createClass({
100100
);
101101
}
102102
});
103-
React.render(
103+
ReactDOM.render(
104104
<CommentBox />,
105105
document.getElementById('content')
106106
);
@@ -126,7 +126,7 @@ var CommentBox = React.createClass({displayName: 'CommentBox',
126126
);
127127
}
128128
});
129-
React.render(
129+
ReactDOM.render(
130130
React.createElement(CommentBox, null),
131131
document.getElementById('content')
132132
);
@@ -142,7 +142,7 @@ The `<div>` tags are not actual DOM nodes; they are instantiations of React `div
142142

143143
You do not have to return basic HTML. You can return a tree of components that you (or someone else) built. This is what makes React **composable**: a key tenet of maintainable frontends.
144144

145-
`React.render()` instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument.
145+
`ReactDOM.render()` instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument.
146146

147147
## Composing components
148148

@@ -299,7 +299,7 @@ var data = [
299299
];
300300
```
301301

302-
We need to get this data into `CommentList` in a modular way. Modify `CommentBox` and the `React.render()` call to pass this data into the `CommentList` via props:
302+
We need to get this data into `CommentList` in a modular way. Modify `CommentBox` and the `ReactDOM.render()` call to pass this data into the `CommentList` via props:
303303

304304
```javascript{6,14}
305305
var CommentBox = React.createClass({
@@ -314,7 +314,7 @@ var CommentBox = React.createClass({
314314
}
315315
});
316316
317-
React.render(
317+
ReactDOM.render(
318318
<CommentBox data={data} />,
319319
document.getElementById('content')
320320
);
@@ -452,7 +452,7 @@ If you hit `/comments` in your browser, you should now see the data encoded as J
452452
Now that we have a data source, we can replace the hard-coded data with the dynamic data from the server. We will remove the data prop and replace it with a URL to fetch:
453453

454454
```javascript{2}
455-
React.render(
455+
ReactDOM.render(
456456
<CommentBox url="/comments" />,
457457
document.getElementById('content')
458458
);
@@ -547,7 +547,7 @@ var CommentBox = React.createClass({
547547
}
548548
});
549549
550-
React.render(
550+
ReactDOM.render(
551551
<CommentBox url="/comments" pollInterval={2000} />,
552552
document.getElementById('content')
553553
);
@@ -744,7 +744,7 @@ var CommentBox = React.createClass({
744744
}
745745
});
746746
747-
React.render(
747+
ReactDOM.render(
748748
<CommentBox url="/comments" submitUrl="/comments/new" pollInterval={2000} />,
749749
document.getElementById('content')
750750
);
@@ -921,7 +921,7 @@ var CommentBox = React.createClass({
921921
});
922922
```
923923

924-
In the view, we will accept the list of comments as the model, and use `Html.React` to render the component. This will replace the `React.render` call that currently exists in Tutorial.jsx. All the props from the current `React.render` call should be moved here, and the `React.render` call should be deleted.
924+
In the view, we will accept the list of comments as the model, and use `Html.React` to render the component. This will replace the `ReactDOM.render` call that currently exists in Tutorial.jsx. All the props from the current `ReactDOM.render` call should be moved here, and the `ReactDOM.render` call should be deleted.
925925

926926
```html{1,10-16,21}
927927
@model IEnumerable<ReactDemo.Models.CommentModel>

site/jekyll/guides/server-side-rendering.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ code.
6666
<script src="https://fb.me/react-0.14.0.min.js"></script>
6767
<script src="https://fb.me/react-dom-0.14.0.min.js"></script>
6868
<script src="/Scripts/HelloWorld.js"></script>
69-
<script>React.render(HelloWorld({"name":"Daniel"}), document.getElementById("react1"));</script>
69+
<script>ReactDOM.render(HelloWorld({"name":"Daniel"}), document.getElementById("react1"));</script>
7070
```
7171

7272
The server-rendered HTML will automatically be reused by React client-side,

src/React.Core/ReactComponent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public virtual string RenderHtml(bool renderContainerOnly = false, bool renderSe
121121
public virtual string RenderJavaScript()
122122
{
123123
return string.Format(
124-
"React.render({0}, document.getElementById({1}))",
124+
"ReactDOM.render({0}, document.getElementById({1}))",
125125
GetComponentInitialiser(),
126126
JsonConvert.SerializeObject(ContainerId, _configuration.JsonSerializerSettings) // SerializeObject accepts null settings
127127
);

src/React.Sample.Owin/Content/Index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script src="https://fb.me/react-dom-0.14.0.min.js"></script>
1313
<script type="text/javascript" src="Sample.jsx"></script>
1414
<script type="text/javascript">
15-
React.render(
15+
ReactDOM.render(
1616
React.createElement(CommentsBox),
1717
document.getElementById('container')
1818
);

src/React.Sample.Owin/Content/Sample.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
99

10-
CommentsBox = React.createClass({
10+
var CommentsBox = React.createClass({
1111
propTypes: {
1212
initialComments: React.PropTypes.array.isRequired
1313
},

src/React.Tests/Core/ReactComponentTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void RenderJavaScriptShouldCallRenderComponent()
130130
var result = component.RenderJavaScript();
131131

132132
Assert.AreEqual(
133-
@"React.render(React.createElement(Foo, {""hello"":""World""}), document.getElementById(""container""))",
133+
@"ReactDOM.render(React.createElement(Foo, {""hello"":""World""}), document.getElementById(""container""))",
134134
result
135135
);
136136
}

0 commit comments

Comments
 (0)