To my understanding, all of your JavaScript gets merged into 1 file. Rails does this by default when it adds //= require_tree .
to the bottom of your application.js
manifest file.
This sounds like a real life-saver, but I am a little concerned about page-specific JavaScript code. Does this code get executed on every page? The last thing I want is for all of my objects to be instantiated for every page when they are only needed on 1 page.
Also, isn't there potential for code that clashes too?
Or do you put a small script
tag at the bottom of the page that just calls into a method that executes the javascript code for the page?
Do you no longer need require.js then?
Thanks
EDIT: I appreciate all the answers... and I don't think they are really getting at the problem. Some of them are about styling and don't seem to relate... and others just mention javascript_include_tag
... which I know exists (obviously...) but it would appear that the Rails 3.1 way going forward is to wrap up all of your JavaScript into 1 file rather than loading individual JavaScript at the bottom of each page.
The best solution I can come up with is to wrap certain features in div
tags with id
s or class
es. In the JavaScript code, you just check if the id
or class
is on the page, and if it is, you run the JavaScript code that is associated with it. This way if the dynamic element is not on the page, the JavaScript code doesn't run - even though it's been included in the massive application.js
file packaged by Sprockets.
My above solution has the benefit that if a search box is included on 8 of the 100 pages, it will run on only those 8 pages. You also won't have to include the same code on 8 of the pages on the site. In fact, you'll never have to include manual script tags on your site anywhere ever again.
I think this is the actual answer to my question.
The Asset Pipeline docs suggest how to do controller-specific JS:
Link to: asset_pipeline
Following the lead from Ryan, here's what I have done-
application.js.coffee
users.js.coffee (controller specific coffeescript,e.g controller:users, action:dashboard)
application.html.haml
I agree with your answer, to check if that selector is there, use:
(didn't see anyone add the actual solution)
I have another solution, which although primitive works fine for me and doesn't need any fancy selective loading strategies. Put in your nornal document ready function, but then test the current windows location to see if it is the page your javascript is intended for:
This still allows all the js to be loaded by rails 3.x in one small package, but does not generate much overhead or any conflicts with pages for which the js isn't intended.
I combined some answers into:
Application helper:
layouts/application.html.haml:
This is how i solved the styling issue: (excuse the Haml)
This way i start all the page specific .css.sass files with:
This way you can easily avoid any clashes. When it comes to .js.coffee files you could just initialize elements like;
Hope this helped some.