Git Product home page Git Product logo

Comments (4)

olivernn avatar olivernn commented on July 4, 2024

Are you having a problem using mustache partials from JavaScript or from Ruby? It should be working from JavaScript, I'm not sure if it would work currently in ruby.

I am going to try and get a new release out before the end of the year which will resolve some of the current issues, including this if possible.

from poirot.

olivernn avatar olivernn commented on July 4, 2024

Ok I've done some investigation on this, I think for now you can set the template path on the view class.

module Notes
  class IndexView < Poirot::View
    self.template_path = 'app/views/notes'
    self.template_extension = 'html.mustache'
  end
end

Then you can do the following in your views -

app/views/notes/index.html.mustache

<ul>
  {{> _note}}
</ul>

app/views/notes/_note.html.mustache

<li>
  <a href="/note/{{id}}">{{name}}</a>
</li>

I'll be adding the template_path and template_extension to the base class in the next release. I have had issues trying to render partials from mustache within mustache partials rendered from erb, I'm not sure if this is how you are trying to use it or not. I will try and do some more work on getting this to work properly though.

from poirot.

wolverian avatar wolverian commented on July 4, 2024

Are you having a problem using mustache partials from JavaScript or from Ruby?

From Ruby.

I have had issues trying to render partials from mustache within mustache partials rendered from erb

I'm trying to avoid ERB completely if at all possible. It's an interesting problem space.

Thanks for your work on this!

from poirot.

olivernn avatar olivernn commented on July 4, 2024

I have just pushed a new version of the gem which should make using partials a little bit easier, the template_path and template_extension that I mentioned earlier should be set by default in any poirot view subclasses you create.

from poirot.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.