I have a Rails app that can generate PDFs using Prawn. Some of them can be fairly large (tens or hundreds of pages) and take some noticeable time to generate. What I would like to do is display some HTML page with a message like "Please wait while we create your document (spinning icon)", and then display the PDF once it is done.
I was thinking of using Rack Middleware to do this. Admittedly, I know nothing about Rack except having watched Railscasts Episode #151. It seems like I could intercept the request to these large PDFs, display the HTML waiting page, then intercept the response and replace the HTML with the generated PDF content.
Is this possible? Will this work with Rack? If not, what is something that might accomplish this? If it will work with Rack, can someone give me a generic explanation of the steps to do this? I've been searching the internet, and the Rack stuff I've found isn't very beginner-friendly (thus, I'm asking here).
Any help will be much appreciated.
- Ian