Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow lambda sections to render text #31

Open
simonl2002 opened this issue May 14, 2013 · 4 comments
Open

Allow lambda sections to render text #31

simonl2002 opened this issue May 14, 2013 · 4 comments

Comments

@simonl2002
Copy link
Contributor

From the mustache manual:

When the value is a callable object, such as a function or lambda, the object will be invoked and passed the block of text. The text passed is the literal block, unrendered. {{tags}} will not have been expanded - the lambda should do that on its own. In this way you can implement filters or caching.

After looking at the code appears that if a section is a function we apply it to the body

(if (fn? section-data) 
  (section-data (:body section))
   ...)

Which means there is no way for the lambda to render that text. Perhaps like the javascript mustache implementation a additional parameter should be passed into the lambda (https://github.com/janl/mustache.js#functions) for use in rendering the section contents if necessary.

An example:

(def template "{{#people}}Hi {{#upper}}{{name}}{{/upper}} {{/people}}")

(def data 
  {:people [{:name "Tom"}, {:name "Bob"}] 
   :upper (fn [text render-fn] (clojure.string/upper-case (render-fn text)))})

(render template data)
=> "Hi TOM Hi BOB"
@fhd
Copy link
Owner

fhd commented Jun 5, 2013

Agreed, that sounds useful.

@simonl2002
Copy link
Contributor Author

I did a quick test implementation, simonl2002/clostache@master...lambda_render

What I did was if a section returned a lambda, we call that lambda with a rendering function as the argument. I did it this way because passing the render function directly to a section lambda is not really compliant with the spec and would break test cases.

@darkone23
Copy link

Any word on this? Would be very nice...

@fhd
Copy link
Owner

fhd commented May 3, 2014

Sorry, slipped off my radar 😞 Reviewed the pull request, pretty much ready to merge.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants