Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Last active March 31, 2018 16:57
Show Gist options
  • Save prabirshrestha/10028584 to your computer and use it in GitHub Desktop.
Save prabirshrestha/10028584 to your computer and use it in GitHub Desktop.
Server side reactjs rendering in Nancy with React.NET
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);
}
}
/** @jsx React.DOM */
// views/hello.jsx
var HelloWorld = React.createClass({
render: function () {
return (
<div>Hello {this.props.firstName} {this.props.lastName}.</div>
);
}
});
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;
};
}
}
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));
}
}
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();
}
}
public class Person
{
public string firstName { get; set; }
public string lastName { get; set; }
}
@zahidmadeel
Copy link

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