My application has to do a rather time-consuming operation only on the first 'show' action of the page.
I have a certain layout in app/views/layouts/application.html.erb that I would like to show from the very first second, so that a spinner alongside with an informative message would be inside this layout, letting the user know that the operation will take some time to finish. After this operation is finished, I would like to substitute this message by the real content, if possible changing this via AJAX, but I would not mind to just refresh the page for the time being.
I have this in my show action, the costly process is 'load_suggestions' (around 5sec).
respond_to do |format|
format.html do
if @issue.suggestions == []
load_suggestions
end
end
format.xml { render :xml => @issue }
format.js
end
I believe that this post - Show loading screen while performing task in Rails 3 - has some rather interesting information for what I try to accomplish. Basically I would include this javascript function in views/issues/show.js.erb. Problem is that if I include it there, it would get called every single time, and that is not what I intend it to do.
Any suggestions, clues, guidance?