Skip to content

Instantly share code, notes, and snippets.

@alexbartlow
Created February 7, 2011 18:52
Show Gist options
  • Save alexbartlow/814941 to your computer and use it in GitHub Desktop.
Save alexbartlow/814941 to your computer and use it in GitHub Desktop.
Rails-based lazy loading, server push with Juggernaut.
module LazyLoadHelper
def lazy_load(&block)
content_id = ActiveSupport::SecureRandom.hex
EM.add_timer 2 do
javascript = %{$('##{content_id}').replaceWith('#{
escape_javascript(capture(&block))
}')}
Juggernaut.send_to_channels(javascript, [content_id])
end
@juggernaut_channels ||= []
@juggernaut_channels << content_id
content_tag('span', image_tag('spinner.gif'), 'id' => content_id)
end
end
#In the view:
<% lazy_load do %>
<div> <%= Time.now %> </div>
<% end %>
<%= juggernaut :channels => @juggernaut_channels %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment