data-loaded attribute is sometimes not set and data-multiplier attribute assumes it exist.

Created on 26 October 2023, over 1 year ago
Updated 30 November 2023, over 1 year ago

Problem/Motivation

In some cases, the data-loaded attribute may fail to be set when the correct image is already loaded. This issue is further compounded by the assumption in the JavaScript code that the data-multiplier attribute exists, which leads to console errors.

Steps to reproduce

The issue with data-loaded attribute not getting set
Create a 16:9 aspect ratio image.
Override the media template using the following code:

{{ attach_library('easy_responsive_images/resizer') }}
{% set file = media.field_media_image.entity %}
{% if not file.uri.isEmpty() %}
  {% set src = file.uri.value|image_url('responsive_16_9_350w') %}
  {% set srcset = [
    file.uri.value|image_url('responsive_16_9_150w')['#markup'] ~ ' 200w',
    file.uri.value|image_url('responsive_16_9_350w')['#markup'] ~ ' 300w',
    file.uri.value|image_url('responsive_16_9_350w')['#markup'] ~ ' 350w',
    file.uri.value|image_url('responsive_16_9_550w')['#markup'] ~ ' 550w',
    file.uri.value|image_url('responsive_16_9_950w')['#markup'] ~ ' 950w',
    file.uri.value|image_url('responsive_16_9_1250w')['#markup'] ~ ' 1250w',
    file.uri.value|image_url('responsive_16_9_1450w')['#markup'] ~ ' 1450w',
  ] %}
  <img
    class="lazy-load-image"
    src="{{ src }}"
    data-srcset="{{ srcset|join(',') }}"
    alt="{{ media.field_media_image.alt }}"
    loading="lazy"
    />
{% else %}
  <img
    src="{{ media.field_media_image | file_url }}"
    alt="{{ media.field_media_image.alt }}"
    loading="lazy"
  />
{% endif %}

On a desktop, create an image that is 300 pixels wide or less. Observe that the data-loaded attribute is never set to "true."
Issue with data-multiplier attribute
Using the same code as above for data-multiplier will result in console errors because the data-multiplier attribute does not exist.

πŸ› Bug report
Status

Fixed

Version

1.3

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States andysipple

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

Comments & Activities

Production build 0.71.5 2024