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

I have X number of image objects that I need to loop through in a view and want to create a new div every 6 objects or so (for a gallery).

I have looked at cycle but it seems to change every other record. Does anyone know of a way to insert code into a view every 6 times?

I could probably do it with nested loops but I am kinda stumped on this one.

Thanks!

share|improve this question

2 Answers

up vote 37 down vote accepted

You can use Enumerable#each_slice in conjunction with #each to avoid inline calculations. each_slice breaks the array into chunks of n, in this case 6.

<% @images.each_slice(6) do |slice| -%>
  <div class="gallery">
    <% slice.each do |image| -%>
      <%= image_tag(image.url, :alt => image.alt) %>
    <% end -%>
  </div>
<% end -%>
share|improve this answer
That seems like a more conventional way to do it.. I'll give a a try. – Dustin M. May 17 '10 at 19:29
Thanks Thorn, I prefer this method to keep my views clean. Thanks! – Dustin M. May 17 '10 at 19:34
Thanks, really cool – equivalent8 Jun 27 '12 at 14:01
Thanks, this works great. A lot more sexy than keeping a counter. – Mosselman Dec 20 '12 at 16:53
How would you handle this when using an interator that doesn't support this thing like @documents.each_hit_with_result in Solr? – tibbon Jan 10 at 17:20
show 1 more comment

This is a Ruby question. You can meld this into whatever your view is trying to do.

@list.each_with_index do |item, idx|
  if((idx + 1) % 6 == 0)
    # Poop out the div
  end
  # Do whatever needs to be done on each iteration here.
end
share|improve this answer
Perfect. Your right, it is Ruby really. Thank you. :) – Dustin M. May 17 '10 at 19:26

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.