Last active
March 31, 2018 16:57
-
-
Save prabirshrestha/10028584 to your computer and use it in GitHub Desktop.
Server side reactjs rendering in Nancy with React.NET
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Bootstrapper : DefaultNancyBootstrapper | |
{ | |
protected override void RequestStartup(TinyIoCContainer container, IPipelines pipelines, NancyContext context) | |
{ | |
base.RequestStartup(container, pipelines, context); | |
var react = new ReactEnvironment( | |
new JavaScriptEngineFactory(), | |
new ReactSiteConfiguration(), | |
new NullReactCache(), | |
new NancyReactFileSystem(container.Resolve<IRootPathProvider>())); | |
container.Register<IReactEnvironment>(react); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx React.DOM */ | |
// views/hello.jsx | |
var HelloWorld = React.createClass({ | |
render: function () { | |
return ( | |
<div>Hello {this.props.firstName} {this.props.lastName}.</div> | |
); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HelloWorldModule : NancyModule | |
{ | |
public HelloWorldModule(IReactEnvironment react) | |
{ | |
Get["/"] = _ => { | |
var hellojs = react.LoadJsxFile("~/views/hello.jsx"); | |
react.Execute(hellojs); | |
var component = react.CreateComponent("HelloWorld", new Person { firstName = "Prabir", lastName = "Shrestha"}); | |
/// var component = react.CreateComponent("HelloWorld", new { firstName = "Prabir", lastName = "Shrestha" }); | |
var html = component.RenderHtml(); | |
return html; | |
}; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NancyReactFileSystem : IFileSystem | |
{ | |
private readonly IRootPathProvider _rootPathProvider; | |
public NancyReactFileSystem(IRootPathProvider rootPathProvider) | |
{ | |
_rootPathProvider = rootPathProvider; | |
} | |
public string MapPath(string relativePath) | |
{ | |
if (relativePath.StartsWith("~/")) | |
{ | |
return Path.Combine(_rootPathProvider.GetRootPath(), relativePath.Substring(2)); | |
} | |
return relativePath; | |
} | |
public string ReadAsString(string relativePath) | |
{ | |
return File.ReadAllText(MapPath(relativePath)); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NullReactCache : ICache | |
{ | |
public T GetOrInsert<T>(string key, TimeSpan slidingExpiration, Func<T> getData, IEnumerable<string> cacheDependencyFiles = null, | |
IEnumerable<string> cacheDependencyKeys = null) | |
{ | |
return getData(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Person | |
{ | |
public string firstName { get; set; } | |
public string lastName { get; set; } | |
} |
Hi guys,
We are using nancyfx for our current web application and we need to integrate reactjs big calendar component. The problem is that the said component is using webpack, babel and node.js for transpiliing to javascript and I have no idea how to achieve this in .net especially in NancyFx environmnet. Can your repository/code convert the pieces from bigcalendar repository and make them available for use in nancyfx project.
Thanking in anticipation
Adeel
and plz let me know what github repository the above code is using?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Everything in a container that implements IDisposable is disposed when the container is disposed. Nancy uses two containers for lifetimes, the app container, which is disposed when the host is disposed (for hosts that support that), and the request container, which is disposed at the end of the request. The "asp.net" lifetime doesn't do this because, as far as I know, it's not possible to do generically, which has always been a major beef with how asp.net mvc/webapi handle containers and lifetimes.