-
Notifications
You must be signed in to change notification settings - Fork 99
Description
Some time ago, I wrote a plugin for active admin to handle large excel uploads. The problem with the large uploads is that it blocks the main thread if we are processing things synchronously. If we process large files using some worker process, the user does not get any feedback after the processing is done.
My proposal is for the second approach.
One good way to give feedback to the user is by emailing after the processing is complete. But that is a traditional solution and the user has to migrate away from the tool.
Another good approach is to use action cables to give live feedback to the users. I have a basic implementation here.
https://github.com/shivgarg5676/active_admin_excel_upload
Can something similar to this be useful here? I would like to spend some time bringing a new functionality for this and will start writing a detailed proposal.