Created
February 7, 2011 18:52
-
-
Save alexbartlow/814941 to your computer and use it in GitHub Desktop.
Rails-based lazy loading, server push with Juggernaut.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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