Skip to content

Commit 8f3502f

Browse files
committed
fix(templatesConfig): helpers are now following Mustache spec
Hogan still hasn't fixed it, so we implemented our own fix, but we weren't following the Mustache(5) spec either. Changes the helper syntax from: ```js helpers: function (renderedText) { return '<h1>' + renderedText + '</h1>'; }; ``` to: ```js helpers: function (text, render) { return '<h1>' + render(text) + '</h1>'; }; ``` Also replaced the fat arrow of the wrapping closure by a simple `function` to allow Hogan to bind the currently rendered object. (This is unspecified by the Mustache spec, but is really useful)
1 parent 5311ca1 commit 8f3502f

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,21 @@ Here is the list of the currently available helpers:
164164
option (defaults to `en-EN`).
165165
eg. `100000` will be formatted as `100 000` with `en-EN`
166166

167+
Here is the syntax of a helper (`render` is using `search.templatesConfig.compileOptions`):
168+
```js
169+
search.templatesConfig.helpers.makeTitle = function (text, render) {
170+
return '<h1>' + render(text) + '</h1>';
171+
};
172+
```
173+
174+
If you know the structure of the object you'll be calling a helper with,
175+
you can access it with `this`:
176+
```js
177+
search.templatesConfig.helpers.discount = function () {
178+
return '-' + ((1 - this.promotion_price / this.price) * 100) + '%'; // -10%
179+
};
180+
```
181+
167182
You can configure the options passed to `Hogan.compile` by using `search.templatesConfig.compileOptions`. We accept all [compile options](https://github.com/twitter/hogan.js/#compilation-options).
168183

169184
Theses options will be passed to the `Hogan.compile` calls when you pass a custom template.

lib/InstantSearch.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Usage: instantsearch({
3232
this.widgets = [];
3333
this.templatesConfig = {
3434
helpers: {
35-
formatNumber(number) {
36-
return Number(number).toLocaleString(numberLocale);
35+
formatNumber(number, render) {
36+
return Number(render(number)).toLocaleString(numberLocale);
3737
}
3838
},
3939
compileOptions: {}

lib/utils.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ function renderTemplate({template, compileOptions, helpers, data}) {
5656
function addTemplateHelpersToData(templateData) {
5757
templateData.helpers = {};
5858
forOwn(helpers, (method, name) => {
59-
data.helpers[name] = () => {
60-
return (value) => {
61-
return method(hogan.compile(value, compileOptions).render(templateData));
59+
templateData.helpers[name] = function() {
60+
return (text) => {
61+
var render = (value) => hogan.compile(value, compileOptions).render(this);
62+
return method.call(this, text, render);
6263
};
6364
};
6465
});

0 commit comments

Comments
 (0)