Views Ajax issue on deleting instances

Created on 30 April 2020, almost 5 years ago
Updated 20 October 2023, over 1 year ago

When I add two separate facet blocks to the header of a view, I have the issue that the views instances are empty. In the `ajax_view.js` file within core, I see that the instances are being cleared out. Only allowing this to happen when the ajax is complete rather than the unload trigger of the detach method seems to resolve the issue. See patch.

šŸ› Bug report
Status

Needs work

Version

9.5

Component
AjaxĀ  ā†’

Last updated about 21 hours ago

Created by

šŸ‡¬šŸ‡§United Kingdom georgebrook

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 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.

  • Pipeline finished with Failed
    about 1 month ago
    Total: 163s
    #438546
  • šŸ‡ŖšŸ‡øSpain eduardo morales alberti Spain, šŸ‡ŖšŸ‡ŗ

    Waiting for pipeline

  • Pipeline finished with Failed
    about 1 month ago
    Total: 89s
    #438549
  • šŸ‡ŖšŸ‡ø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];
      }
    });
    
  • Pipeline finished with Failed
    about 1 month ago
    Total: 164s
    #438568
  • Pipeline finished with Failed
    about 1 month ago
    Total: 97s
    #438575
  • Pipeline finished with Failed
    about 1 month ago
    Total: 303s
    #438589
  • šŸ‡ŖšŸ‡ø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;
            });
          }
        },
    
  • Pipeline finished with Failed
    about 1 month ago
    Total: 90s
    #438622
  • Pipeline finished with Failed
    about 1 month ago
    Total: 313s
    #438625
  • Pipeline finished with Failed
    about 1 month ago
    Total: 7227s
    #438641
  • šŸ‡ŖšŸ‡ø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

Production build 0.71.5 2024