What do I need to do so that I can use CoffeeScript in the Rails JS views? For example:

def index
    format.js { render :layout => false } 
end

What would I need to do in order for Rails to use index.js.coffee?

link|improve this question

What if you just add .coffee extention? (if you are using Rails 3.1) – bor1s Jun 3 '11 at 9:44
I did, but it doesn't seem to work. – Tempus Jun 3 '11 at 10:21
What Rails version do you use? – bor1s Jun 3 '11 at 10:27
I'm using 3.1rc1 – Tempus Jun 3 '11 at 10:31
feedback

3 Answers

up vote 10 down vote accepted

It's not yet supported in 3.1. You will need to use Coffeebeans.

link|improve this answer
4  
You've got to be kidding me! – Mark Thomas Jun 3 '11 at 12:57
feedback

Johnny's answer is correct. If you look at the pull request linked to from the CoffeeBeans page, you have dhh saying

Once we have a fast, clean implementation, it's welcome in core. 3.2 is a more likely target, though.

I briefly talked with Sam Stephenson and Josh Peek about this at Railsconf, since this was a missing feature people had asked me about after my CoffeeScript talk. After all, Rails 3.1 is pushing CoffeeScript as a default pretty hard; it seems odd that there are places where pure JS has to be used. Sam's reaction was that this wouldn't be efficient, because you'd have to fire up the CoffeeScript compiler on every page request, even in production. That's because code like

<%= coffee_script_tag do %>
  alert "coffee script is #{verb}!"
<% end %>

creates an ERB interpolation (not a CoffeeScript interpolation—unfortunate that both use the same syntax), potentially yielding a different string of CoffeeScript code on every request. And there's no way to tell, from the coffee_script_tag implementation, whether the given code is going to be the same every time (i.e. whether there's an ERB interpolation or not).

Now, the CoffeeScript compiler is very fast, but compiling to JavaScript is still going to add a little extra time to each request. So the Rails team is hesitant to encourage the practice.

For the sake of efficiency, and to avoid the ambiguity between ERB interpolations and CoffeeScript interpolations, you should probably keep your CoffeeScript somewhere (perhaps as a .coffee file in the same directory as your view) and compile it to JavaScript by hand.

link|improve this answer
feedback

This is working now. For example, I have a resource named book. This resource has a file at app/views/books/index.html.erb with the following:

<%= link_to 'test me', new_book_path(color: 'blue'), remote: true %>

Then I have a file at app/views/books/new.js.coffee at ≈ with the following code:

test = ->
  'this is a test'

console.log test()
console.log( "<%= params[:color] %>" )

I see:

'this is a test'
'blue'

in my browser console.

link|improve this answer
This is confirmed. I just used it with Rails 3.2.3 with no problems. – stebooks May 23 at 22:51
feedback

Your Answer

 
or
required, but never shown

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