- Merge request !10223132456: Fix issue where views instances are emptied before an ajax request is complete ā (Open) created by mtalt
- last update
over 1 year ago 29,668 pass, 1 fail - š«š·France nod_ Lille
is it possible to replicate that on 11.x and put the code in a Merge Request? It's easier to work with nowdays. Also there is a test failure
- š®š³India djsagar
djsagar ā changed the visibility of the branch 3132456-fix-empty-views-instances to hidden.
- Issue was unassigned.
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
We are facing similar error:
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
eduardo morales alberti ā changed the visibility of the branch 3132456-fix-ajax-deleting-views-instances to hidden.
- Merge request !11351Issue #3132456 by georgebrook: Views Ajax issue on deleting instances ā (Closed) created by eduardo morales alberti
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
Waiting for pipeline
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
Reviewing error javascript linting:
error no-jquery/no-ajax-events Prefer local event to ajaxComplete https://git.drupalcode.org/issue/drupal-3132456/-/blob/7f89a076/../../../build/core/modules/views/js/ajax_view.js#L34-39 ā 1 problem (0 fatal, 1 error, 0 warnings)
Possible solution, extracted from field_ui.js:
$(document).on('ajaxComplete', () => { if (settings.url && $(selector, context).length) { delete Drupal.views.instances[i]; delete settings.views.ajaxViews[i]; } });
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
We are not sure if the errors from MR are related to the changes:
Time: 01:34.216, Memory: 10.00 MB Entity Reference Widget (Drupal\Tests\media_library\FunctionalJavascript\EntityReferenceWidget) ā Focus not applied without selection change ā Widget ā ā "Bear" was found but shouldn't be there. ā Failed asserting that a boolean is not empty. ā ā /builds/issue/drupal-3132456/core/modules/media_library/tests/src/FunctionalJavascript/MediaLibraryTestBase.php:90 ā /builds/issue/drupal-3132456/core/modules/media_library/tests/src/FunctionalJavascript/EntityReferenceWidgetTest.php:239 ā“ ā Required media field ā Remove after reordering ā Add after reordering ā Widget preview FAILURES! Tests: 6, Assertions: 134, Failures: 1.
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
Trying to use the same strategy than docroot/core/misc/ajax.js using function expire:
/** * Contains all created Ajax objects. * * @type {Array.<Drupal.Ajax|null>} */ Drupal.ajax.instances = []; /** * List all objects where the associated element is not in the DOM * * This method ignores {@link Drupal.Ajax} objects not bound to DOM elements * when created with {@link Drupal.ajax}. * * @return {Array.<Drupal.Ajax>} * The list of expired {@link Drupal.Ajax} objects. */ Drupal.ajax.expired = function () { return Drupal.ajax.instances.filter( (instance) => instance && instance.element !== false && !document.body.contains(instance.element), ); }; ... detach(context, settings, trigger) { if (trigger === 'unload') { Drupal.ajax.expired().forEach((instance) => { // Set this to null and allow garbage collection to reclaim // the memory. Drupal.ajax.instances[instance.instanceIndex] = null; }); } },
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
We check if the ajax complete was triggered modifying the patch and:
This does not shows the message
$(selector, context).ajaxComplete(() => { console.log("Selector complete"); });
This shows the message:
$(document).ajaxComplete(() => { console.log("Ajax complete"); });
Maybe the change "is working" because the patch never deletes the instances, so the error "Cannot read properties of undefined (reading 'settings')" is not possible.
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
In our case, the error is given using facets, and debugging the javascript the instance was not removed, because facets updates the context (facets active or not) before the deletion.
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
We will close our MR as the problem comes from Facets and the order of how the functions are executed before ajax views behaviour https://www.drupal.org/project/facets/issues/3013795 āØ Robustify how ajax finds the facet block Needs review
- šŖšøSpain eduardo morales alberti Spain, šŖšŗ
Added related issue https://www.drupal.org/project/facets/issues/3013795 āØ Robustify how ajax finds the facet block Needs review