GitHub - rendrjs/rendr-handlebars: Handlebars template adapter for Rendr apps (original) (raw)
rendr-handlebars
Handlebars template adapter for Rendr apps. This library has been tested using Handlebars 2.0.0.
If you'd like to use a more recent version number of Handlebars
for your app, just specify it in the package.json of your app and start testing it.
Configuration options
entryPath
optional - change the location of the application for the given rendr-app.templateFinder
optional - allows the ability to require a different template finder. Commonly used to make a non-dynamic version ofrequire
to make build systems more efficient.
Helpers
There are a number of variables that are set by default to these helpers and are passed in the context. Those variables include:
_app
- The instance of the Rendr application_model
- when setting themodel
attribute, the_model
variable will be set as the instance of a Rendr model._collection
- when using acollection
attribute, the_collection
variable will be set to the instance of the Rendr collection._block
- when passing a block to theview
orpartial
helper, the_block
variable will be available. This_block
variable will be the HTML passed in.
view
The view helper is used to insert a new Rendr view. This is done on the server-side by generating the html and inserting it inline. On the client-side it creates a placeholder, and then in Rendr it will call the attach
function to create a view instance and insert the HTML. If you don't pass any attributes to the helper, it sets the context (or scope) of the helper to the same as the parents.
You can also pass a block into the helper and it will be available inside of the created view as _block
. This is helpful when you want to have a chunk of HTML differ in a view, but have the majority of it stay the same.
Example:
// no attributes
{{ view "viewName" }}
{{ view "viewName" model=_model an_option="my option" }}
// with a block
{{ view "viewName" }}
<div class="test">My Block</div>
{{/view}}
partial
A partial is HTML only, and it is inserted at compile time of the templates, making them more performant than a view. These are good to use in cases where you don't have any view interaction and just want to reduce the amount of copied HTML. This will inherit the parents context if no attributes are passed into the helper.
Again, you can pass a block into the partial and access the _block
variable inside of the partial. This is helpful when you want to set a variable chunk of HTML inside of a partial
Example:
// no attributes
{{ partial "partialName" }}
{{ partial "partialName" attr="example" }}
// with block
{{ partial "partialName" }}
<div class="test">My Block</div>
{{/partial}}
json
This helper simply takes an object and runs JSON.stringify
on the object. You can also pass the spacing into the helper.
Example:
{{json myObject}}
// with spacing
{{ json myObject " " }}
each
Iterates an array setting the context to the value of the array element. Works as you would expect the Handlebars each helper to work, but this adds Rendr specific options set in the context (_app
, _model
, _collection
, _block
)
Example:
-
{{ each arr }}
- {{this}}
- {{/each}}
forEach
Another helper to iterate items in the template, this has a bit more included though. You can iterate objects, arrays, or Collections with this, setting the value and the key attributes in the scope.
Always available in the forEach
helper
key
- The key on the object, or the index in the arrayvalue
- The value of the item being iterated.
If iterating arrays or collections there is extra data included:
_isFirst
- Boolean, is true if it's the first item in the array / collection_isLast
- Boolean, is true if it's the last item in the array / collection_total
- The number of items in the array / collection
If iterating an instance of a collection, you can set the toJSON
attribute to convert the model being iterated into JSON instead of an instance of the model. By default the value
will be set to a Backbone model when iterating a collection.
Example:
for each obj test
{{forEach obj}}{{forEach arr}}
{{forEach arr attribute="test"}}
for each array of objs test
{{forEach arr}} {{if _isFirst}}{{if _isLast}}