Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Warning: Noob here.

I know this is a trivial subject but I'm having a lot of difficulty in figuring out how exactly I can simplify my views by moving parts of them into helpers. For example, I've always read that conditionals in your views are prime candidates for extraction into helpers, but I couldn't really find examples of this, and my attempts to achieve this failed.

For example, suppose I have:

#index.html.erb

<% for beast in @beasts do -%>
  <% if beast.dead? -%>
    <%= beast.body %>
    <%= link_to "bury", bury_beast_path( :id => beast.id ) %>
  <% else -%>
    <%= beast.body %>
    <%= link_to "kill!", kill_beast_path( :id => beast.id ) %>
  <% end -%>
<% end -%>

It annoys me a little to have this in my view, but how exactly could I move this to a helper instead? And further simplify it, if possible. (I've read somewhere that conditionals are bad but it's just beyond me how you could program anything without them.)

Another example: I need to id my body tags with the format controller_action. The best I've got so far is this:

#index.html.erb

<body id="<%= controller_action %>">

…and…

#application_helper.rb

def controller_action
  @id = @controller.controller_name + "_" + @controller.action_name
end

I'm no expert, but that's still ugly even to me.

To make things more complicated, Ryan Singer said something I liked: to treat ERB like an image tag, using helpers to "reveal intention". Then in the next breath saying that you should have no HTML in helpers for that is the way to hell. WTF? How are both things compatible? If it's come to the point where you can just declare behaviors in the view, surely there should be a lot of HTML to be rendered behind the scenes? I can't grasp it.

So, that's basically it. I'd appreciate if anyone could share some thoughts on this, or point me to some good in depth reading on the subject – which I've found to have a really weak coverage on the web. I've already googled it to exhaustion but who knows.

share|improve this question
Minor note. Using for is fine, but using an iterator is more Ruby convention, e.g., <% @beasts.each do |beast| %>. – Sarah Vessels Feb 3 '10 at 21:42
@Sarah: Thanks. It's that I just really like the natural language aspect of using for. – San Diago Feb 4 '10 at 18:58

3 Answers

up vote 15 down vote accepted

Refactoring makes your views easier to maintain. The problem is choosing where the refactored code goes.

Your two choices are partials and helpers. There's no stone-set rules dictating which should be used where. There are a couple of guidelines floating around like the one stating that helpers should not contain HTML.

Generally partials are better suited for refactoring sections that are more HTML/ERB/HAML than ruby. Helpers on the other hand are used for chunks of ruby code with minimal HTML or generating simple HTML from parameters.

However, I don't agree with the sentiment that helpers should contain no HTML at all. A little is ok, just don't over do it. The way helpers are processed hinder their use for producing large amounts of HTML. Which is why it's suggested that your helpers contain minimal amounts of HTML. If you look at the source the helpers that ship with rails you will notice that most of them generate html. The few that don't, are mainly used to generate parameters and evaluate common conditions.

For example, any of the form helpers or link_to variants fit the first form of helpers. While things like url_for and logged_in? as supplied by various authentication models are of the second kind.

This is the decision chain I use to determine whether to factor code from a view into a partial or helper.

  1. Repeating or nearly identical statements producing a single shallow html tag? => helper.
  2. Common expression used as an argument for another helper? => helper.
  3. Long expression (more than 4 terms) used as an argument for another helper? => helper.
  4. 4 or more lines of ruby (that is not evaluated into HTML)? => helper.
  5. Pretty much everything else => partial.

I'm going to use the code you're looking to refactor as an example:

I would refactor the view in the question this way:

app/helpers/beast_helper.rb:

def beast_action(beast)
  if beast.dead?
    link_to "bury", bury_beast_path(beast)
  else
    link_to "kill!", kill_beast_path(beast)
  end
end

app/views/beasts/_beast.html.erb:

<%= beast.body %>
<%= beast_action(beast) %>

app/views/beasts/index.html.erb:

<%= render :partial => "beast", :collection => @beasts %>

It's technically more complicated, because it's 3 files, and 10 lines total as opposed to 1 file and 10 lines. The views are now only 3 lines combined spread over 2 files. The end result is your code is much more DRY. Allowing you to reuse parts or all of it in other controllers/actions/views with minimal added complexity.

As for your body tag id. You should really be using content_for/yield. For that kind of thing.

app/views/layouts/application.html.erb

...
<body id="<%= yield(:body_id) %>">
...

app/views/beasts/index.html.erb

<% content_for :body_id, controller_action %>
...

This will allow you to override the id of the body in any view that requires it. Eg:

app/views/users/preferences.html.erb

<% content_for :body_id, "my_preferences" %>
share|improve this answer
As long as the partial is at beasts/_beast.html.erb you can just do render @beasts. – Garrett Feb 3 '10 at 21:06
@Garrett: That only works in Rails 2.3 or newer. I have no idea why an new user would be using an older version. But I felt that version was safer. – EmFi Feb 3 '10 at 21:16
Good point, with Rails 3 coming soon I think it's safe to start pushing render @beasts – Garrett Feb 3 '10 at 21:59
Thanks! Your answer was very elucidative; I'll be coming back to check your suggested decision chain frequently until it sinks in. I still have to try out your code, but I imagine it will work. It certainly looks much better. Thanks again. – San Diago Feb 4 '10 at 12:57

The first thing I'd do would be this:

#index.html.erb
<%= render @beasts %>

#_beast.html.erb
<%= beast.body %>
<%= link_to_next_beast_action(beast) %>    

#beast_helper.rb
def link_to_next_beast_action(beast)
  if beast.dead?
    link_to "bury", bury_beast_path( :id => beast.id ) 
  else
    link_to "kill!", kill_beast_path( :id => beast.id )
  end
end

What I've done is separate out the rendering of the beast into a partial which uses collection semantics.

Then I've moved the logic for showing the kill/bury links into a beast helper. This way if you decide to add another action (for example, 'bring back from dead'), you'll only have to change your helper.

Does this help?

share|improve this answer
You can even do render @beasts as it will realize it's a collection. – Garrett Feb 3 '10 at 21:05
Seems like you've arrived at the same refactoring I did. Didn't notice the new answer while I was composing mine. – EmFi Feb 3 '10 at 21:18
2  
@EmFi I voted up your answer because you went in to more detail about when to use partials/helpers. – jonnii Feb 3 '10 at 21:30
I appreciate it, but it wasn't necessary. I've past the point where I answer questions for the reputation. – EmFi Feb 3 '10 at 21:33
Even so, you still deserve the recognition =) – jonnii Feb 3 '10 at 21:39

Another startegy would be to not use templates and helpers at all. For rendering you could :

  1. render your views directly from your controllers using render(:inline => ). If you still want to keep Views and Controllers formally separated you can create modules / mixins that you include into the controllers.
  2. or create your own view classes and use them to render your response.

The idea behind this is that helpers and rails erb templating system don't take advantage of OOP, so that at the end of the day you can't define general behaviours that you'll specialize according to each controller's/request's needs; more often than not one ends up rewriting very similar looking chunks of code, which is not very nice from a maintenance standpoint.

Then if you still need some helper methods (eg. form_tag, h, raw, ...) you only have to include them in your controller / dedicated view class.

See this : rails-misapprehensions-helpers-are-shit for a fun but useful article.

EDIT: to not sound like a complete douche, I'd say implementing this depends on how big your application is supposed to be, and how often you're going to have to update your code. Plus, if you're delegating the design to a non-programmer, he/she may well be in for some programming courses before digging into your code, which admittedly would be less directly understandable than with templates syntax.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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