- 🇺🇸United States jhedstrom Portland, OR
I think 🐛 jQuery.once used in views_data_export_auto_download.js, breaking immediate download for batch exports Fixed is somewhat related for D10+.
The patch #8 → from #3347083 🐛 jQuery.once used in views_data_export_auto_download.js, breaking immediate download for batch exports Fixed fixed the issue (tested on 8.x-1.2 and Drupal 10).
I tried #17, and it doesn't really do anything to help. It does work like #14 scenario 4 described, but that already worked.
It doesn't fix any of the scenarios that don't work, as the other scenarios still don't have automatic download. The JS should be included everywhere if needed, and there's plenty of contrib modules that include a library on every page.
https://www.drupal.org/docs/develop/creating-modules/adding-assets-css-j... →
Also, the only way to attach JS to a message would be to modify the twig template, and it would be for all messages: https://api.drupal.org/api/drupal/core%21modules%21system%21templates%21...
So just including on every page is better.
- last update
almost 2 years ago 3 pass - @solideogloria opened merge request.
Please review the merge request, which fixes the issue for all the scenarios mentioned in #15.
- last update
almost 2 years ago Composer require-dev failure - last update
almost 2 years ago 3 pass Here's a patch file with the changes from #22 if you need it
- 🇫🇷France PhilY 🇪🇺🇫🇷 Paris, France
Patch #22/#24 works for me using Scenario 1, views_data_export 8.x-1.3 (with xls_serialization addon) and Drupal 9.5.9
Thanks - Status changed to RTBC
almost 2 years ago 2:43pm 29 June 2023 - last update
over 1 year ago 3 pass - last update
over 1 year ago 3 pass Hi friends! When I check the available translations, I come across the following:
In my case, when I download the data from a View, I encounter the following message:
"Export complete. Download the file false" id="vde-automatic-download">here if the file is not automatically downloaded."
Upon inspecting the 'views_data_export_auto_download.js' file, I noticed that the file only downloads automatically if the 'downloadEnabled' attribute is set to 'true'.
To address this issue, I made a translation change and modified the message to:
"Export complete. Download the file true" id="vde-automatic-download">here if the file is not automatically downloaded."
Additionally, I included the line $view->element['#attached']['library'][] = 'views_data_export/views_data_export'; in the view to invoke the necessary library.
@Sebastian45 That change was included in patch #24. Did you try using a patch?
- 🇷🇸Serbia miksha
For the batch process issue that is explained in #15 I am suggesting another approach that doesn't require us to include JS in all site pages (which in turn also requires core.once).
We are using status message (visible to both anonymous and authenticated user) to show link to exported file and we can use this message on the redirected page to dynamically load our library only on required pages.
I am attaching a patch for this. I tested it locally and works for both anonymous and authenticated users.
@miksha The class/attribute used should be specific to VDE, not just every message that has
data-download-enabled="true"
, because other modules could have that.- Status changed to Needs review
7 months ago 12:46am 9 September 2024 - Status changed to Needs work
5 months ago 2:58pm 18 November 2024 Using status messages doesn't work if the site doesn't use that block to show messages. I think that including the JS on every page is fine because the JS is small and doesn't really affect the load time that I can tell.
I think #22 (aka #24) should be used.