I'm using Rails 3.1 and SCSS in the Asset Pipeline. Is there anyway to access Rails helpers or controller data in the SCSS file? Something like...

#main {
   background-color: #{current_user.preferences.background_color}
}

I know I can set my own $variables but I'm not sure how I would populate them from the controller's data.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can chain template processors with Rails 3.1, so you can do my.css.scss.erb, and then embed your variables like so:

$user-background-color: <%= current_user.preferences.background_color %>

Then you can use the Sass variables throughout your SCSS.

I took a different approach to solving this problem for Rails 3.0: Using SASS with user-specified colors

link|improve this answer
Swifty! Is there anything I need to do to make sure that Rails won't try to cache this? – Drew Jun 16 '11 at 15:31
You probably want some caching to happen, actually. How you go about all of this depends heavily on your environment. On Heroku, for example, you're in a read-only environment, so you can't really cache to disk (except for in /tmp). – coreyward Jun 16 '11 at 15:34
feedback

As far as I know this is not what Asset Pipeline was designed for.

Think about it, you have a rake assets:precompile command to convert all your .scss.erb files to a static .css file.

So how could you ever possibly access variables like current_user from that .scss.erb file?

In my opinion, it's not possible to get controller variables in .scss.erb or .coffee.erb.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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