forked from reactjs/React.NET
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReactComponent.cs
231 lines (209 loc) · 6.73 KB
/
ReactComponent.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
* Copyright (c) 2014-Present, 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.
*/
using System;
using System.Linq;
using System.Text.RegularExpressions;
using JavaScriptEngineSwitcher.Core;
using Newtonsoft.Json;
using React.Exceptions;
namespace React
{
/// <summary>
/// Represents a React JavaScript component.
/// </summary>
public class ReactComponent : IReactComponent
{
/// <summary>
/// Regular expression used to validate JavaScript identifiers. Used to ensure component
/// names are valid.
/// Based off https://gist.github.com/Daniel15/3074365
/// </summary>
private static readonly Regex _identifierRegex = new Regex(@"^[a-zA-Z_$][0-9a-zA-Z_$]*(?:\[(?:"".+""|\'.+\'|\d+)\])*?$", RegexOptions.Compiled);
/// <summary>
/// Environment this component has been created in
/// </summary>
protected readonly IReactEnvironment _environment;
/// <summary>
/// Global site configuration
/// </summary>
protected readonly IReactSiteConfiguration _configuration;
/// <summary>
/// Raw props for this component
/// </summary>
protected object _props;
/// <summary>
/// JSON serialized props for this component
/// </summary>
protected string _serializedProps;
/// <summary>
/// Gets or sets the name of the component
/// </summary>
public string ComponentName { get; set; }
/// <summary>
/// Gets or sets the unique ID for the DIV container of this component
/// </summary>
public string ContainerId { get; set; }
/// <summary>
/// Gets or sets the HTML tag the component is wrapped in
/// </summary>
public string ContainerTag { get; set; }
/// <summary>
/// Gets or sets the HTML class for the container of this component
/// </summary>
public string ContainerClass { get; set; }
/// <summary>
/// Gets or sets the props for this component
/// </summary>
public object Props
{
get { return _props; }
set
{
_props = value;
_serializedProps = JsonConvert.SerializeObject(
value,
_configuration.JsonSerializerSettings
);
}
}
/// <summary>
/// Initializes a new instance of the <see cref="ReactComponent"/> class.
/// </summary>
/// <param name="environment">The environment.</param>
/// <param name="configuration">Site-wide configuration.</param>
/// <param name="componentName">Name of the component.</param>
/// <param name="containerId">The ID of the container DIV for this component</param>
public ReactComponent(IReactEnvironment environment, IReactSiteConfiguration configuration, string componentName, string containerId)
{
EnsureComponentNameValid(componentName);
_environment = environment;
_configuration = configuration;
ComponentName = componentName;
ContainerId = string.IsNullOrEmpty(containerId) ? GenerateId() : containerId;
ContainerTag = "div";
}
/// <summary>
/// Renders the HTML for this component. This will execute the component server-side and
/// return the rendered HTML.
/// </summary>
/// <param name="renderContainerOnly">Only renders component container. Used for client-side only rendering.</param>
/// <param name="renderServerOnly">Only renders the common HTML mark up and not any React specific data attributes. Used for server-side only rendering.</param>
/// <returns>HTML</returns>
public virtual string RenderHtml(bool renderContainerOnly = false, bool renderServerOnly = false)
{
if (!_configuration.UseServerSideRendering)
{
renderContainerOnly = true;
}
if (!renderContainerOnly)
{
EnsureComponentExists();
}
try
{
var html = string.Empty;
if (!renderContainerOnly)
{
var reactRenderCommand = renderServerOnly
? string.Format("ReactDOMServer.renderToStaticMarkup({0})", GetComponentInitialiser())
: string.Format("ReactDOMServer.renderToString({0})", GetComponentInitialiser());
html = _environment.Execute<string>(reactRenderCommand);
}
string attributes = string.Format("id=\"{0}\"", ContainerId);
if (!string.IsNullOrEmpty(ContainerClass))
{
attributes += string.Format(" class=\"{0}\"", ContainerClass);
}
return string.Format(
"<{2} {0}>{1}</{2}>",
attributes,
html,
ContainerTag
);
}
catch (JsRuntimeException ex)
{
throw new ReactServerRenderingException(string.Format(
"Error while rendering \"{0}\" to \"{2}\": {1}",
ComponentName,
ex.Message,
ContainerId
));
}
}
/// <summary>
/// Renders the JavaScript required to initialise this component client-side. This will
/// initialise the React component, which includes attach event handlers to the
/// server-rendered HTML.
/// </summary>
/// <returns>JavaScript</returns>
public virtual string RenderJavaScript()
{
return string.Format(
"ReactDOM.hydrate({0}, document.getElementById({1}))",
GetComponentInitialiser(),
JsonConvert.SerializeObject(ContainerId, _configuration.JsonSerializerSettings) // SerializeObject accepts null settings
);
}
/// <summary>
/// Ensures that this component exists in global scope
/// </summary>
protected virtual void EnsureComponentExists()
{
// This is safe as componentName was validated via EnsureComponentNameValid()
var componentExists = _environment.Execute<bool>(string.Format(
"typeof {0} !== 'undefined'",
ComponentName
));
if (!componentExists)
{
throw new ReactInvalidComponentException(string.Format(
"Could not find a component named '{0}'. Did you forget to add it to " +
"App_Start\\ReactConfig.cs?",
ComponentName
));
}
}
/// <summary>
/// Gets the JavaScript code to initialise the component
/// </summary>
/// <returns>JavaScript for component initialisation</returns>
protected virtual string GetComponentInitialiser()
{
return string.Format(
"React.createElement({0}, {1})",
ComponentName,
_serializedProps
);
}
/// <summary>
/// Validates that the specified component name is valid
/// </summary>
/// <param name="componentName"></param>
internal static void EnsureComponentNameValid(string componentName)
{
var isValid = componentName.Split('.').All(segment => _identifierRegex.IsMatch(segment));
if (!isValid)
{
throw new ReactInvalidComponentException(string.Format(
"Invalid component name '{0}'",
componentName
));
}
}
/// <summary>
/// Generates a unique identifier for this component, if one was not passed in.
/// </summary>
/// <returns></returns>
private static string GenerateId()
{
return "react_" + Guid.NewGuid().ToShortGuid();
}
}
}