JS iterator works bad with picture that use multiple sources

Created on 3 April 2025, 3 days ago

Problem/Motivation

When multiple breakpoints were set, the JS iterator only processed the first one, breaking the logic for all other breakpoints. Additionally, the implementation seems overly complex.

Proposed resolution

Make it simple and fix the problem with multiple elements.

🐛 Bug report
Status

Active

Version

2.1

Component

Code

Created by

🇺🇦Ukraine stomusic Ukraine

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

Comments & Activities

  • Issue created by @stomusic
  • @stomusic opened merge request.
  • 🇺🇦Ukraine stomusic Ukraine

    Done, check please.

  • 🇮🇳India abhishek@kumar

    Simplified Iterator Approach

    (function (Drupal) {
      Drupal.behaviors.smartImagingStyles = {
        attach: function (context, settings) {
          // Process all picture elements
          const pictures = once('smart-imaging-styles', 'picture', context);
          
          pictures.forEach(picture => {
            // Process all source elements within each picture
            const sources = picture.querySelectorAll('source');
            
            sources.forEach(source => {
              // Your processing logic for each source
              const srcset = source.getAttribute('srcset');
              if (srcset) {
                // Apply transformations to each srcset
                const transformedSrcset = this.transformSrcset(srcset);
                source.setAttribute('srcset', transformedSrcset);
              }
            });
          });
        },
        
        transformSrcset: function(srcset) {
          // Your srcset transformation logic here
          return srcset; // Return modified srcset
        }
      };
    })(Drupal);
Production build 0.71.5 2024