JsRender is an unopinionated Ruby library for rendering JavaScript "components" on the server side. This approach works with React, Angular, Ember, or any other library of your choice. The only requirement is that there is a JavaScript function that returns HTML for the component or view such that it can be properly rendered on the server side (e.g. ReactDOMServer.renderToString
in React).
The library works in two essential parts:
- Calls a JavaScript function (defined by the user) that returns HTML. This allows us to render our JS component/view when the page initially loads, rather than having the delay of doing it solely on the client side.
- Optionally calls a JavaScript function on the client (also defined by the user) that does any initialization that needs to happen on the client side. This generally will initialize the existing component HTML that has been rendered with the library of choice to make it interactive and attach behaviors.
Add this line to your application's Gemfile:
gem 'js_render'
And then execute:
$ bundle
Or install it yourself as:
$ gem install js_render
You can render a component like:
<div>
<%= render_component 'TodoList', {items: ['Build a gem', 'Add docs']} %>
</div>
render_component
takes 2 arguments, a String component_name
and data
, which is either a JSON String or an Object that responds to to_json
.
After calling render_component
here is what happens:
Initial Server Render
- find a file named
TodoList.js
in the pathapp/assets/javascripts/**/*
- if this file contains a function named
window.renderTodoListServer
, it will call it, passing to it the JSON data as an argument. the result of the function should be an HTML string - the result of the function is wrapped in a span tag with a unique ID
- finally the HTML is inserted inline into our template and be rendered with the initial server render
- if this file contains a function named
This takes care of the initial server render of our component. You can configure the suffix of the component lookup from .js
, the lookup paths, and the name of the server render function. Check out the configuration section below.
Client Side Render
The other thing that happens when you call render_component
is that a script tag is rendered inline. The script tag calls a function, window.renderTodoListClient
, that takes the unique ID of the span the component has been rendered in, and the JSON data as arguments. The client render function can handle any initialization that needs to happen after the server render. JsRender expects this function to already be in scope by the time the script tag is called. Putting this in the user's hands prevents duplication of any library code and allows the user to expose the framework as well as the client render functions in whatever way they choose and that works best in their JS setup/build process. (that said this is a desired place for improvement in the future for JsRender)
You can configure the name of the client render function. Check out the configuration section below.
JsRender exposes its methods as view helper methods via a Railtie.
You will need to instantiate a JsRender::Renderer
to call JsRender methods with.
renderer = JsRender::Renderer.new(component_name, data)
renderer.render_component
Configuration settings can be modified within the JsRender.configure
block. Or set directly off of JsRender.config
JsRender.configure do |config|
config.base_path = 'app/assets/javascripts/components'
config.component_paths = ['/**/*.js']
end
JsRender.config.base_path = 'app/assets/javascripts'
JsRender.config.base_path = ['/components/*.js', '/legacy_components/**/*.js']
use_asset_pipeline
Indicate if you want Rails asset pipeline to handle your component files. This will take care of any pre-processing for you (like if your asset pipeline is compiling CoffeeScript or ES2015/ES6 code for you). If you are not using JsRender with Rails, this setting will not do anything.
Defaults to
false
base_path
This is the base path where your components live.
Defaults to
app/assets/javascripts
component_paths
These are the paths off of your base path that are searched to find your component (or more accurately your components' server render functions). Wildcards are supported. If you are using Rails AND the asset pipeline, the lookup path can point to your pre-built file and the asset pipeline will give JsRender the built file. If you are using another build tool, make sure you are pointing to the built assets. JsRender will NOT take care of any compile step for you, it expects these files to already be compiled to ES5 compatible with ExecJS.
Defaults to
['/**/*']
component_suffix
This is the suffix that is added to your component name. It functions as a regex string when looking up your render "#{component_name}#{component_suffix}"
.
If your component structure is a folder named after your component with an index.js
file, you can do something like /renderer.js
to find a specific file within your folder. Or if your component and server render function are in different files you could do something like /(index|serverRenderer).js
. The regex aspect is also useful if you need a wildcard to match a hash in the file name (generated by your build tool potentially).
Defaults to '.js'
server_render_function
This is the name of the function that is called to render your component on the server. It receives the JSON data as an argument and returns a string of HTML that is rendered inline.
If you want the component name to be included in the name dynamically, you can use a *
to denote where the component name is inserted into the function.
Defaults to
window.render*Server
(eg forMyComponent
,window.renderMyComponentServer
)
client_render_function
This is the name of the function that is called to render your component on the client (which may just be initialization since it was already rendered by the server). It receives the unique ID of the span that the component was rendered in initially as well as the JSON data as arguments.
If you want the component name to be included in the name dynamically, you can use a *
to denote where the component name is inserted into the function.
Defaults to
window.render*Client
(eg forMyComponent
,window.renderMyComponentClient
)
asset_finder_class
JsRender::Renderer
uses the JsRender::AssetFinder::Base
class to find and read JS asset files it needs to generate the server HTML (with the server render function). If use_asset_pipeline
is true, it will use JSRender::Rails::AssetFinder
instead, which just overrides the read
method. The asset_finder_class
configuration option provides a hook to override how the JS assets are found or read.
You can either provide a new class that provides a #read_files
method (takes a component name and returns a string of JS from the files that component needs to render) or you can subclass JsRender::AssetFinder::Base
.
Methods you can override if you subclass JsRender::AssetFinder::Base
:
-
Base#find_files
takes the component name as a string and returns a list of paths to files. -
This method can be overridden to change how files are looked up, or to transform the pathnames (which might be useful if your JS assets are built outside of the asset pipeline or to another directory.
-
Base#read_files
takes the component name as a string and callsBase#find_files
to get all the files. It then reads each of these files withBase#read
, concatenates them together and returns a string. This is the method that is actually used directly byJsRender::Renderer
. -
This method will rarely need to be overridden as you can change the behavior of
Base#find_files
andBase#read
. -
Base#read
takes a path as a string and returns the file contents as a string. -
This method can be overridden to apply a transformation on the contents of the file (like compiling ES2015 to ES5).
Defaults to
nil
key_transforms
An array of lambdas (or singletons that implement a call
method) that can transform the keys of the data being passed into the component. The lambdas in the array are called in order, and the result of a lambda is passed to the next transform (as a string) for each key.
JsRender::Utils::Camelize
is a provided utility that will transform keys to camel case.
Note: This only works if the component data is passed in as a hash, if it is already passed in as JSON, then the transforms will be ignored.
Example:
JsRender.config.key_transforms = [
JsRender::Utils::Camelize,
-> (key) { key + '_SomeEnding'}
]
# data => { camel_case: 2, something_else: 3 }
# would be transformed to => { camelCase_SomeEnding: 2, somethingElse_SomeEnding: 3 }
Defaults to
[]
should_server_render
This config option is a boolean that specifies if the server render function and associated JS should be executed and run. When it is false, it only returns the span with the unique ID that the client side render function relies upon. This is meant for development purposes and enables things like console logging etc. that would normally cause errors in the ExecJS
runtime.
Defaults to
true
cache_size
Since ExecJS is expensive, components are cached. This controls the number of items to keep in the LRU (least recently used) cache, where the least recently used is evicted.
Defaults to 100
cache_ttl
Since ExecJS is expensive, components are cached. This controls the TTL (in seconds) of items in the LRU (least recently used) cache, where items are evicted once the TTL is reached.
Defaults to 600 seconds (10 minutes)
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/jdlehman/js_render. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
This project came out of the desire to support server side rendering of React components. The most popular existing solution, react-rails
is much more opinionated, but also does a lot implicitly under the hood. If your focus is on React server side rendering, and your experience primarily lies in Ruby on Rails, or you do not mind writing your JavaScript within the boundaries and opinions of react-rails, I highly recommend you take a look at it. Another good React/Rails specific library for server side React rendering to check out is react_on_rails
. Many thanks to the contributors of these projects as they were both influential in creating JsRender.
The goal of this project is to be framework agnostic and support server side rendering for any JavaScript component library, popular or self-rolled. While Rails support is baked in, the ultimate goal of this project is to work anywhere where Ruby is used as the server side language.