JS behaviours are not attached if facet was empty in previous state.

Created on 20 December 2021, over 3 years ago
Updated 11 March 2025, 23 days ago

Problem/Motivation

I have layout builder page with several facet blocks and views block. Ajax is enabled for these blocks.
If specific facet have no result the block will contain two divs with class facets-widget- {{- facet.widget.type -}}

<div class="facet-inactive block-facets-ajax js-facet-block-id-facet_block:facet_id hidden block-facet--checkbox block block-facets block-facet-blockfacet_id"
     id="facet-blockfacet_id">
    <div class="facet-title h2">Facet Name</div>
    <div data-drupal-facet-id="facet_id" class="facet-empty facet-hidden facets-widget-checkbox">
        <div class="facets-widget-checkbox"></div>
    </div>
</div>

Then if I change values for other facets, the Ajax request will be sent. I will receive response with ajax commands with new content for each block. JS Selectors will be like this #facet-blockfacet_id .facets-widget-checkbox
It means if the facets is empty, then both of divs with facets-widget-checkbox class will be used as wrappers to be replaced.
In such case jQuery function replaceWith replaces wrappers content, new content is displayed, but there is no parent for such jQuery node ($newContent.parents('html').length) and behaviors are not attached in Drupal.AjaxCommands.prototype.insert

So I'm not sire if it is

  • problem with jQuery function replaceWith
  • problem with Drupal.AjaxCommands.prototype.insert
  • problem with FacetBlockAjaxController and selector
  • problem with facets-item-list.html.twig template

I tried same case with Bartik theme.

Proposed resolution

I tried to add :first modifier for selectors and seems it solved current problem

🐛 Bug report
Status

Closed: outdated

Version

1.8

Component

Code

Created by

🇹🇭Thailand vladimir.krupin

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

Comments & Activities

Not all content is available!

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

  • 🇧🇪Belgium borisson_ Mechelen, 🇧🇪

    Since this is in the 1.x version of facets and it is regarding ajax, I'm going to close this issue. We are only supporting ajax with views in facets 3.x.

Production build 0.71.5 2024