New AJAX Facets breaks with hierarchical facets

Created on 15 July 2018, over 6 years ago
Updated 11 March 2025, 25 days ago

After clicking on two checkbox / facet links with hierarchy, the URL changes to /facets-block-ajax?f[0]=topics%3A20&f[1]=topics%3A19 and the facet blocks disappear.

How to reproduce

  • Have a taxonomy term field with hierarchical vocabulary.
  • Create content with hierarchical terms (at least one parent with two children).
  • Add the field to your index and select "Index hierarchy" in `admin/config/search/search-api/index/YOUR_INDEX/processors` and select the field at the bottom of the page.
  • Create a facet for this field and select "Use hierarchy" and "Always expand hierarchy".
  • (Rebuild index and cache)
  • Select two children or a parent and its child in your hierarchical facet.

It looks like the JS does not attach the correct behaviors to the non-first-level items.

Side node:

If "Always expand hierarchy" is not selected, only parents are loaded. Iยดm not sure if not selecting this shall work with AJAX or if we add some hint to the README, for example:


## Using AJAX Views with hierarchical Facets

Since the stable 1.0 release from July 5 2018 you need to make some settings, if you are using hierarchical Facets in an AJAX based View.

Beside clicking "Index hierarchy" in admin/config/search/search-api/index/YOUR_INDEX/processors and selecting the fields at the bottom of the page you need to select "Use hierarchy" and "Always expand hierarchy" in each settings of your hierarchical facets.

If you want to only show the child items if their parents are clicked you can add the following code to your side:

**jQuery**
```
    // Expand sub items if parents or sub items are selected
    $('.facets-widget-checkbox input[type="checkbox"]').each(function (e) {
      var facetItem = $(this).closest('li.facet-item');
      if ($(this).is(':checked') || facetItem.find("ul input:checked").length) {
        facetItem.addClass('facet-item--selected facet-item--expanded');
      }
      else {
        facetItem.removeClass('facet-item--expanded');
      }
    });
```
**CSS**
```
li:not(.facet-item--expanded) ul {
  display: none;
}
```

๐Ÿ› Bug report
Status

Closed: outdated

Version

1.0

Component

Code

Created by

๐Ÿ‡ฉ๐Ÿ‡ชGermany hanness

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