File tree 6 files changed +96
-1
lines changed
6 files changed +96
-1
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2014-2015, Facebook, Inc.
3
+ * All rights reserved.
4
+ *
5
+ * This source code is licensed under the BSD-style license found in the
6
+ * LICENSE file in the root directory of this source tree. An additional grant
7
+ * of patent rights can be found in the PATENTS file in the same directory.
8
+ */
9
+
10
+ using System ;
11
+ using System . Runtime . Serialization ;
12
+
13
+ namespace React . Exceptions
14
+ {
15
+ /// <summary>
16
+ /// Thrown when Babel is required but has not been loaded.
17
+ /// </summary>
18
+ [ Serializable ]
19
+ public class BabelNotLoadedException : ReactException
20
+ {
21
+ /// <summary>
22
+ /// Initializes a new instance of the <see cref="BabelNotLoadedException"/> class.
23
+ /// </summary>
24
+ public BabelNotLoadedException ( ) : base ( GetMessage ( ) ) { }
25
+
26
+ /// <summary>
27
+ /// Used by deserialization
28
+ /// </summary>
29
+ protected BabelNotLoadedException ( SerializationInfo info , StreamingContext context )
30
+ : base ( info , context )
31
+ { }
32
+
33
+ /// <summary>
34
+ /// Gets a message that describes the current exception.
35
+ /// </summary>
36
+ private static string GetMessage ( )
37
+ {
38
+ return
39
+ "Babel has not been loaded, so JSX transformation can not be done. Please either " +
40
+ "transform your JavaScript files through an external tool (such as Babel, " +
41
+ "Webpack, Browserify or Gulp) and use the \" AddScriptWithoutTransform\" method to load " +
42
+ "them for server-side rendering, or enable the \" LoadBabel\" option in the ReactJS.NET " +
43
+ "configuration. Refer to the ReactJS.NET documentation for more details." ;
44
+ }
45
+ }
46
+ }
Original file line number Diff line number Diff line change 7
7
* of patent rights can be found in the PATENTS file in the same directory.
8
8
*/
9
9
10
+ using System ;
10
11
using Newtonsoft . Json ;
11
12
using System . Collections . Generic ;
12
13
@@ -123,6 +124,19 @@ public interface IReactSiteConfiguration
123
124
/// <returns>The configuration, for chaining</returns>
124
125
IReactSiteConfiguration SetLoadReact ( bool loadReact ) ;
125
126
127
+ /// <summary>
128
+ /// Gets or sets whether Babel is loading. Disabling the loading of Babel can improve startup
129
+ /// performance, but all your JSX files must be transformed beforehand (eg. through Babel,
130
+ /// Webpack or Browserify).
131
+ /// </summary>
132
+ bool LoadBabel { get ; set ; }
133
+ /// <summary>
134
+ /// Sets whether Babel is loading. Disabling the loading of Babel can improve startup
135
+ /// performance, but all your JSX files must be transformed beforehand (eg. through Babel,
136
+ /// Webpack or Browserify).
137
+ /// </summary>
138
+ IReactSiteConfiguration SetLoadBabel ( bool loadBabel ) ;
139
+
126
140
/// <summary>
127
141
/// Gets or sets the Babel configuration to use.
128
142
/// </summary>
Original file line number Diff line number Diff line change @@ -100,7 +100,9 @@ protected virtual void InitialiseEngine(IJsEngine engine)
100
100
{
101
101
engine . ExecuteResource ( "React.Resources.react-with-addons.js" , thisAssembly ) ;
102
102
engine . Execute ( "React = global.React" ) ;
103
- // TODO: Make this configurable, so we don't load Babel if it's not needed.
103
+ }
104
+ if ( _config . LoadBabel )
105
+ {
104
106
engine . ExecuteResource ( "React.node_modules.babel_core.browser.js" , thisAssembly ) ;
105
107
}
106
108
Original file line number Diff line number Diff line change @@ -253,6 +253,7 @@ protected virtual JavaScriptWithSourceMap TransformJsxWithHeader(
253
253
/// <returns>JavaScript</returns>
254
254
public virtual string TransformJsx ( string input , string filename = "unknown" )
255
255
{
256
+ EnsureBabelLoaded ( ) ;
256
257
try
257
258
{
258
259
var output = _environment . ExecuteWithLargerStackIfRequired < string > (
@@ -281,6 +282,7 @@ public virtual JavaScriptWithSourceMap TransformJsxWithSourceMap(
281
282
string filename = "unknown"
282
283
)
283
284
{
285
+ EnsureBabelLoaded ( ) ;
284
286
try
285
287
{
286
288
return _environment . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
@@ -356,5 +358,16 @@ string filename
356
358
_fileSystem . WriteAsString ( sourceMapPath , result . SourceMap == null ? string . Empty : result . SourceMap . ToJson ( ) ) ;
357
359
return outputPath ;
358
360
}
361
+
362
+ /// <summary>
363
+ /// Ensures that Babel has been loaded into the JavaScript engine.
364
+ /// </summary>
365
+ private void EnsureBabelLoaded ( )
366
+ {
367
+ if ( ! _config . LoadBabel )
368
+ {
369
+ throw new BabelNotLoadedException ( ) ;
370
+ }
371
+ }
359
372
}
360
373
}
Original file line number Diff line number Diff line change 90
90
</Compile >
91
91
<Compile Include =" AssemblyRegistration.cs" />
92
92
<Compile Include =" BabelConfig.cs" />
93
+ <Compile Include =" Exceptions\BabelNotLoadedException.cs" />
93
94
<Compile Include =" Exceptions\ReactNotInitialisedException.cs" />
94
95
<Compile Include =" FileSystemExtensions.cs" />
95
96
<Compile Include =" JavaScriptEngineUtils.cs" />
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ public ReactSiteConfiguration()
36
36
BabelConfig = new BabelConfig ( ) ;
37
37
ReuseJavaScriptEngines = true ;
38
38
AllowMsieEngine = true ;
39
+ LoadBabel = true ;
39
40
LoadReact = true ;
40
41
JsonSerializerSettings = new JsonSerializerSettings
41
42
{
@@ -220,6 +221,24 @@ public IReactSiteConfiguration SetLoadReact(bool loadReact)
220
221
return this ;
221
222
}
222
223
224
+ /// <summary>
225
+ /// Gets or sets whether Babel is loading. Disabling the loading of Babel can improve startup
226
+ /// performance, but all your JSX files must be transformed beforehand (eg. through Babel,
227
+ /// Webpack or Browserify).
228
+ /// </summary>
229
+ public bool LoadBabel { get ; set ; }
230
+
231
+ /// <summary>
232
+ /// Sets whether Babel is loading. Disabling the loading of Babel can improve startup
233
+ /// performance, but all your JSX files must be transformed beforehand (eg. through Babel,
234
+ /// Webpack or Browserify).
235
+ /// </summary>
236
+ public IReactSiteConfiguration SetLoadBabel ( bool loadBabel )
237
+ {
238
+ LoadBabel = loadBabel ;
239
+ return this ;
240
+ }
241
+
223
242
/// <summary>
224
243
/// Gets or sets the Babel configuration to use.
225
244
/// </summary>
You can’t perform that action at this time.
0 commit comments