vote up 2 vote down star
2

I have a rails template (.rhtml file) generating a Javascript object. It looks something like the following:

var volumes = {
  <% for volume in @volumes %>
    <%= volume.id %> : <%= volume.data %> 
    <%= ',' unless volume === @volumes.last %>
  <% end %>
};

Note the unless statement modifier to suppress printing the comma after the last element (to satisfy Internet Explorer, which incredibly doesn't support trailing commas in JSON properties declarations).

This appears to work, but as a matter of style, do people think it is reasonable to rely on <%= value unless condition %> in the template generating an appropriate render call?

flag

71% accept rate

3 Answers

vote up 6 vote down check

I don't see why not, but generally if you find yourself conditionalizing a comma on the last member, you probably want to use join instead:

<%= @volumes.map {|v| "#{v.id} : #{v.data}"}.join "," %>
link|flag
vote up 3 vote down

If you would like to contruct JSON (and BTW you are constructing JavaScript Object not Array) then I suggest to use to_json method:

var volumes = <%= @volumes.inject({}){|h,v| h.merge(v.id=>v.data)}.to_json %>;

or

var volumes = <%= Hash[*@volumes.map{|v| [v.id, v.data]}.flatten].to_json %>;

Even better would be to move Ruby Hash construction to model as it is too complex for view.

class Volume
  def self.to_hash(volumes)
    Hash[*volumes.map{|v| [v.id, v.data]}.flatten]
  end
end

and then in view you can put much simpler code:

var volumes = <%= Volume.to_hash(@volumes).to_json %>;
link|flag
Thanks, and you're right, it's JSON object, not Array. Fixed in the question. – ykaganovich Nov 8 '08 at 1:24
vote up 0 vote down

Or even:

<%= @volumes.map { |v| "#{v.id} : #{v.data}"}.to_sentence -%>

To get "a: something, b: something else, c: anything, and d: another thing."

link|flag
Not exactly legal in JavaScript, but hey, whatever turns you on. – Jim Puls Nov 7 '08 at 20:33
Damn you Jim. You come over to my house and eat my homemade ribs, then you point out in public that I didn't even read the question and notice the "var volumes = ..." What's next, stealing my puppy? – James A. Rosen Nov 8 '08 at 2:12
Mmm, homemade ribs. Thanks, dude, they were delicious. – Jim Puls Nov 8 '08 at 4:32

Your Answer

Get an OpenID
or

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