Skip to content

Commit 1553b2f

Browse files
Support serving TSX files from ASP.NET bundle transforms
1 parent 39eb7c3 commit 1553b2f

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

src/React.AspNet.Middleware/BabelFileOptions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* Copyright (c) Facebook, Inc. and its affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
@@ -37,7 +37,7 @@ public class BabelFileOptions
3737
/// </summary>
3838
public BabelFileOptions()
3939
{
40-
Extensions = new[] { ".jsx" };
40+
Extensions = new[] { ".jsx", ".tsx" };
4141
StaticFileOptions = new StaticFileOptions();
4242
}
4343
}

src/React.Sample.Mvc4/App_Start/BundleConfig.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* Copyright (c) Facebook, Inc. and its affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
@@ -17,7 +17,7 @@ public static void RegisterBundles(BundleCollection bundles)
1717
{
1818
bundles.Add(new BabelBundle("~/bundles/main").Include(
1919
// Add your JSX files here
20-
"~/Content/Sample.jsx"
20+
"~/Content/Sample.tsx"
2121
));
2222

2323
// Force minification/combination even in debug mode

src/React.Sample.Mvc4/App_Start/ReactConfig.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public static void Configure()
2020
.SetReuseJavaScriptEngines(true)
2121
.SetAllowJavaScriptPrecompilation(true)
2222
.AddScriptWithoutTransform("~/Content/lib/reactstrap.min.js")
23-
.AddScript("~/Content/Sample.jsx");
23+
.SetBabelVersion("babel-7")
24+
.AddScript("~/Content/Sample.tsx");
2425

2526
JsEngineSwitcher.Current.DefaultEngineName = V8JsEngine.EngineName;
2627
JsEngineSwitcher.Current.EngineFactories.AddV8();

src/React.Sample.Mvc4/Content/Sample.jsx src/React.Sample.Mvc4/Content/Sample.tsx

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

10+
type Foo = {}
11+
1012
function CommentsBox(props) {
1113
let [state, updateState] = React.useState({
1214
comments: props.initialComments,

src/React.Sample.Mvc4/React.Sample.Mvc4.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
<Content Include="Views\Home\Index.cshtml" />
176176
</ItemGroup>
177177
<ItemGroup>
178-
<Content Include="Content\Sample.jsx" />
178+
<None Include="Content\Sample.tsx" />
179179
</ItemGroup>
180180
<ItemGroup>
181181
<Content Include="TransformBabel.proj" />

src/React.Sample.Mvc4/Web.config

+1-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@
3333
<add namespace="System.Web.WebPages" />
3434
</namespaces>
3535
</pages>
36-
37-
<httpHandlers>
38-
<add verb="GET" path="*.jsx" type="React.Web.BabelHandlerFactory, React.Web" />
39-
</httpHandlers>
4036
</system.web>
4137

4238
<system.webServer>
@@ -47,6 +43,7 @@
4743
<handlers>
4844
<remove name="babel" />
4945
<add name="babel" verb="GET" path="*.jsx" type="React.Web.BabelHandlerFactory, React.Web" preCondition="integratedMode" />
46+
<add name="babel-tsx" verb="GET" path="*.tsx" type="React.Web.BabelHandlerFactory, React.Web" preCondition="integratedMode" />
5047
</handlers>
5148

5249
</system.webServer>

src/System.Web.Optimization.React/BabelTransform.cs

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
/*
1+
/*
22
* Copyright (c) Facebook, Inc. and its affiliates.
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*/
77

88
using React;
9+
using System.Linq;
910

1011
namespace System.Web.Optimization.React
1112
{
@@ -23,7 +24,10 @@ public class BabelTransform : IBundleTransform
2324
public void Process(BundleContext context, BundleResponse response)
2425
{
2526
var environment = ReactEnvironment.Current;
26-
response.Content = environment.Babel.Transform(response.Content);
27+
response.Content = environment.Babel.Transform(
28+
response.Content,
29+
response.Files.Any(x => x.IncludedVirtualPath.Contains("tsx")) ? "components.tsx" : "components.jsx"
30+
);
2731
}
2832
}
2933
}

tutorial-code/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Threading.Tasks;

0 commit comments

Comments
 (0)