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

How can I shrink the following code.. Can it be done in one line instead?

<% if pos_count < 0 %>
  <% pos_name = "SHORT" %>
  <% else %>
  <% pos_name = "LONG" %>
<% end %>

Thanks!

share|improve this question

2 Answers

up vote 4 down vote accepted

It can be done in one line with the ternary operator:

<% pos_name = (pos_count < 0) ? "SHORT" : "LONG" -%>
share|improve this answer
Perfect.. just what I neeeded.. thanks.. – Twiddr Sep 28 '12 at 7:59

Looks like this view logic, and best practice is to minimize it. I would suggest extracting this out into a view helper (or decorator if you prefer).

As Istvan, suggested you can use the ternary operator, but for readability I would just leave it as if-else statement and move it into a method like so:

app/helpers/my_view_helper.rb

module MyViewHelper
  def pos_name(pos_count)
    if pos_count < 0
      "SHORT"
    else
      "LONG"
    end
  end
end
share|improve this answer
+1 on extracting the view logic into view helpers. As the project grows, view presenters can also be used: railscasts.com/episodes/286-draper?autoplay=true – andreiursan Sep 27 '12 at 21:33
That sound like good practice.. Can I then just call that method like this in the view: pos_count.pos_name ? – Twiddr Sep 28 '12 at 9:03
@Twiddr You would call it like pos_name(pos_count) from the view. I've updated the code above to reflect that. – gylaz Oct 1 '12 at 17:11

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.