Uncaught Error: noUiSlider: Slider was already initialized - when using multiple 'Range NoUiSliders' on the same Search API view

Created on 21 March 2025, 15 days ago

Problem/Motivation

When using multiple 'Range NoUiSliders' within the same Search API view, an error occurs in the browser console:

Uncaught Error: noUiSlider: Slider was already initialized.

This indicates that the NoUiSlider library is being initialized multiple times on the same element, likely due to the way Drupal attaches behaviors to dynamically loaded content. Additionally, PHP warnings related to undefined array keys appear in the logs:

  • Undefined array key "tooltips" in NoUiSliderWidget->buildConfigurationForm() (line 96)
  • Undefined array key "pips_values" in NoUiSliderWidget->buildConfigurationForm() (line 121)
  • Undefined array key "pips_density" in NoUiSliderWidget->buildConfigurationForm() (line 129)
  • Undefined array key "from" in NoUiSliderWidget->buildConfigurationForm() (line 151)

Steps to reproduce

  1. Install and enable the facets_range_nouislider module.
  2. Install and enable the patch 📌 Automated Drupal 11 compatibility fixes for facets_range_nouislider Needs review for Drupal 11 compatibility.
  3. Configure a Search API view with a Facet using the NoUiSlider widget.
  4. Add multiple instances of the same facet on the page.
  5. Perform a facet filtering action or reload the page.
  6. Observe the browser console and Drupal logs for errors and warnings.

Proposed resolution

  • Ensure that NoUiSlider instances are only initialized once per element.
  • Modify the JavaScript behavior in slider.js to check if an instance already exists before creating a new one.
  • Validate and initialize missing configuration options (tooltips, pips_values, etc.) to prevent undefined array key warnings in NoUiSliderWidget->buildConfigurationForm().
  • Consider debugging how behaviors are re-attached on AJAX responses to prevent duplicate initialization.

Remaining tasks

  • [ ] Debug and confirm where duplicate slider initialization occurs.
  • [ ] Adjust JavaScript to prevent multiple initializations.
  • [ ] Fix undefined array key warnings in PHP.
  • [ ] Submit a patch or merge request.
  • [ ] Test the fix with multiple facets and AJAX requests.

User interface changes

None expected.

API changes

None expected.

Data model changes

None expected.

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇧🇪Belgium robbesaelens Kortrijk

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

Comments & Activities

Production build 0.71.5 2024