Skip to content

Commit 103c2e1

Browse files
dustinsoftwareDaniel15
authored andcommitted
Fix tutorial (#483)
* Update tutorual to .NET Core 2.0 * Update tutorial to use es6 classes
1 parent 546aecd commit 103c2e1

File tree

6 files changed

+123
-160
lines changed

6 files changed

+123
-160
lines changed

tutorial-code/ReactDemo.sln

+30-27
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C71B9157-9688-4CFB-812C-D0DD3AB74F21}"
7-
ProjectSection(SolutionItems) = preProject
8-
global.json = global.json
9-
EndProjectSection
10-
EndProject
11-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ReactDemo", "ReactDemo.xproj", "{F8367AC0-D731-4946-BCA8-972A6DBE9730}"
12-
EndProject
13-
Global
14-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
15-
Debug|Any CPU = Debug|Any CPU
16-
Release|Any CPU = Release|Any CPU
17-
EndGlobalSection
18-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19-
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20-
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Debug|Any CPU.Build.0 = Debug|Any CPU
21-
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Release|Any CPU.ActiveCfg = Release|Any CPU
22-
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Release|Any CPU.Build.0 = Release|Any CPU
23-
EndGlobalSection
24-
GlobalSection(SolutionProperties) = preSolution
25-
HideSolutionNode = FALSE
26-
EndGlobalSection
27-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27004.2002
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C71B9157-9688-4CFB-812C-D0DD3AB74F21}"
7+
ProjectSection(SolutionItems) = preProject
8+
global.json = global.json
9+
EndProjectSection
10+
EndProject
11+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "tutorial-code", "tutorial-code.csproj", "{F8367AC0-D731-4946-BCA8-972A6DBE9730}"
12+
EndProject
13+
Global
14+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
15+
Debug|Any CPU = Debug|Any CPU
16+
Release|Any CPU = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19+
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{F8367AC0-D731-4946-BCA8-972A6DBE9730}.Release|Any CPU.Build.0 = Release|Any CPU
23+
EndGlobalSection
24+
GlobalSection(SolutionProperties) = preSolution
25+
HideSolutionNode = FALSE
26+
EndGlobalSection
27+
GlobalSection(ExtensibilityGlobals) = postSolution
28+
SolutionGuid = {B65CC77E-EFFF-479D-978E-F346AF031352}
29+
EndGlobalSection
30+
EndGlobal

tutorial-code/ReactDemo.xproj

-23
This file was deleted.

tutorial-code/global.json

-5
This file was deleted.

tutorial-code/project.json

-49
This file was deleted.

tutorial-code/tutorial-code.csproj

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<PreserveCompilationContext>true</PreserveCompilationContext>
6+
<AssemblyName>tutorial-code</AssemblyName>
7+
<OutputType>Exe</OutputType>
8+
<PackageId>tutorial-code</PackageId>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<None Include="App.config" />
13+
<None Update="wwwroot\**\*;Views\**\*;Areas\**\Views">
14+
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
15+
</None>
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\src\React.AspNet\React.AspNet.csproj" />
20+
</ItemGroup>
21+
22+
<ItemGroup>
23+
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />
24+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" />
25+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.ViewCompilation" Version="2.0.0" PrivateAssets="All" />
26+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.0" />
27+
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="2.0.0" />
28+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.0.0" PrivateAssets="All" />
29+
</ItemGroup>
30+
31+
</Project>

tutorial-code/wwwroot/js/tutorial.jsx

+62-56
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
var CommentBox = React.createClass({
2-
loadCommentsFromServer: function () {
1+
class CommentBox extends React.Component {
2+
state = { data: this.props.initialData };
3+
4+
loadCommentsFromServer = () => {
35
var xhr = new XMLHttpRequest();
46
xhr.open('get', this.props.url, true);
5-
xhr.onload = function () {
7+
xhr.onload = function() {
68
var data = JSON.parse(xhr.responseText);
79
this.setState({ data: data });
810
}.bind(this);
911
xhr.send();
10-
},
11-
handleCommentSubmit: function (comment) {
12+
};
13+
14+
handleCommentSubmit = comment => {
1215
var comments = this.state.data;
1316
// Optimistically set an id on the new comment. It will be replaced by an
1417
// id generated by the server. In a production application you would likely
@@ -23,56 +26,55 @@
2326

2427
var xhr = new XMLHttpRequest();
2528
xhr.open('post', this.props.submitUrl, true);
26-
xhr.onload = function () {
29+
xhr.onload = function() {
2730
this.loadCommentsFromServer();
2831
}.bind(this);
2932
xhr.send(data);
30-
},
31-
getInitialState: function () {
32-
return { data: this.props.initialData };
33-
},
34-
componentDidMount: function () {
33+
};
34+
35+
componentDidMount() {
3536
window.setInterval(this.loadCommentsFromServer, this.props.pollInterval);
36-
},
37-
render: function() {
37+
}
38+
39+
render() {
3840
return (
3941
<div className="commentBox">
4042
<h1>Comments</h1>
4143
<CommentList data={this.state.data} />
42-
<CommentForm onCommentSubmit={this.handleCommentSubmit} />
44+
<CommentForm onCommentSubmit={this.handleCommentSubmit} />
4345
</div>
44-
);
46+
);
4547
}
46-
});
48+
}
4749

48-
var CommentList = React.createClass({
49-
render: function () {
50+
class CommentList extends React.Component {
51+
render() {
5052
var commentNodes = this.props.data.map(function(comment) {
5153
return (
52-
<Comment author={comment.author} key={comment.id}>
53-
{comment.text}
54+
<Comment author={comment.author} key={comment.id}>
55+
{comment.text}
5456
</Comment>
55-
);
57+
);
5658
});
57-
return (
58-
<div className="commentList">
59-
{commentNodes}
60-
</div>
61-
);
59+
return <div className="commentList">{commentNodes}</div>;
6260
}
63-
});
64-
65-
var CommentForm = React.createClass({
66-
getInitialState: function() {
67-
return {author: '', text: ''};
68-
},
69-
handleAuthorChange: function(e) {
70-
this.setState({author: e.target.value});
71-
},
72-
handleTextChange: function(e) {
73-
this.setState({text: e.target.value});
74-
},
75-
handleSubmit: function (e) {
61+
}
62+
63+
class CommentForm extends React.Component {
64+
state = {
65+
author: '',
66+
text: ''
67+
};
68+
69+
handleAuthorChange = e => {
70+
this.setState({ author: e.target.value });
71+
};
72+
73+
handleTextChange = e => {
74+
this.setState({ text: e.target.value });
75+
};
76+
77+
handleSubmit = e => {
7678
e.preventDefault();
7779
var author = this.state.author.trim();
7880
var text = this.state.text.trim();
@@ -81,8 +83,9 @@ var CommentForm = React.createClass({
8183
}
8284
this.props.onCommentSubmit({ author: author, text: text });
8385
this.setState({ author: '', text: '' });
84-
},
85-
render: function() {
86+
};
87+
88+
render() {
8689
return (
8790
<form className="commentForm" onSubmit={this.handleSubmit}>
8891
<input
@@ -101,27 +104,30 @@ var CommentForm = React.createClass({
101104
</form>
102105
);
103106
}
104-
});
107+
}
105108

106109
function createRemarkable() {
107-
var remarkable = (("undefined" != typeof global) && (global.Remarkable)) ? global.Remarkable : window.Remarkable;
108-
return new remarkable();
110+
var remarkable =
111+
'undefined' != typeof global && global.Remarkable
112+
? global.Remarkable
113+
: window.Remarkable;
114+
115+
return new remarkable();
109116
}
110117

111-
var Comment = React.createClass({
112-
rawMarkup: function () {
118+
class Comment extends React.Component {
119+
rawMarkup = () => {
113120
var md = createRemarkable();
114121
var rawMarkup = md.render(this.props.children.toString());
115122
return { __html: rawMarkup };
116-
},
117-
render: function () {
123+
};
124+
125+
render() {
118126
return (
119-
<div className="comment">
120-
<h2 className="commentAuthor">
121-
{this.props.author}
122-
</h2>
123-
<span dangerouslySetInnerHTML={this.rawMarkup()} />
124-
</div>
125-
);
127+
<div className="comment">
128+
<h2 className="commentAuthor">{this.props.author}</h2>
129+
<span dangerouslySetInnerHTML={this.rawMarkup()} />
130+
</div>
131+
);
126132
}
127-
});
133+
}

0 commit comments

Comments
 (0)