Is there any way to use a Rails helper method, more specifically, a path helper method within a javascript asset file. This file foo.js.coffee.erb

$('#bar').val("<%= create_post_path %>")

I would love it if I could get from erubis

$('#bar').val("path/to/create")
link|improve this question

have you tried to do this? It should work. – natedavisolds Sep 17 '11 at 20:06
1  
Yep I've tried it, it gives "undefined local variable or method". I've tried other methods such as... number_to_currency – Axsuul Sep 17 '11 at 21:52
I'd like to note that this helper method DOES work though: javscript_path('path/to/js') – Axsuul Sep 17 '11 at 21:59
feedback

4 Answers

I'm not quite sure, why you want to do this.

  • You would prevent the javascript file from being cached, as it contains a dynamic value

  • You would get a coupling between your javascript/coffeescript and rails

If possible I would advice you to abstract your problem away by providing your target path in the view and retrieve the value from the DOM-Element when the specific event occurs. Just like 'Unobtrusive Scripting Adapters' for Rails do. E.g.: https://github.com/rails/jquery-ujs/blob/master/src/rails.js#L157-173

link|improve this answer
Yep, thanks for the suggestion. – Axsuul Sep 20 '11 at 6:14
feedback

You can include any helper/module/class in an erb template with:

<% environment.context_class.instance_eval { include MyHelper } %>

See: https://github.com/sstephenson/sprockets/blob/master/lib/sprockets/environment.rb and https://github.com/sstephenson/sprockets/blob/master/lib/sprockets/context.rb

link|improve this answer
But how would you include the UrlHelpers module? And the bad thing with that is that is the url helpers need a model at runtime, buy-buy cowboy – Nikos D Nov 15 '11 at 9:19
2  
To use the url helpers you have to include your specific applications' helpers. They are available at Rails.application.routes.url_helpers so: <% environment.context_class.instance_eval { include Rails.application.routes.url_helpers } %> – eirc Nov 15 '11 at 9:39
feedback

Actually, not sure if this helps but there is a way to define your own helps for use during rake precompile

Create a new initializer and put this in it:

module Sprockets
  module Helpers
    module RailsHelper

      def my_helper_method
       ...
      end

    end
  end
end

And then you can:

<%= my_helper_method %>

in your .erb assets

link|improve this answer
feedback

After some research, I came to the conclusion that it's not possible. This is due to the asset pipeline being parsed separately to Rails.

Sprockets code doesn't know about Rails code =/

link|improve this answer
Please review the answers since this is not the whole truth – Nikos D Nov 15 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.