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!
|
How can I shrink the following code.. Can it be done in one line instead?
Thanks! |
|||
|
|
|
It can be done in one line with the ternary operator:
|
|||
|
|
|
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
|
|||||||
|