custom/plugins/WeedesignImages2WebP/src/Resources/views/storefront/utilities/thumbnail.html.twig line 1

Open in your IDE?
  1. {% block thumbnail_utility %}
  2.     {# activate load per default. If it is not activated only a data-src is set instead of the src tag. #}
  3.     {% if load is not defined %}
  4.         {% set load = true %}
  5.     {% endif %}
  6.     {# By default no original image will be loaded as soon as thumbnails are available. #}
  7.     {# When set to true the orginal image will be loaded when the viewport is greater than the largest available thumbnail. #}
  8.     {% if loadOriginalImage is not defined %}
  9.         {% set loadOriginalImage = false %}
  10.     {% endif %}
  11.     {# By default the srcset sizes will be calculated automatically if `columns` are present and no `sizes` are configured. #}
  12.     {# When set to false the sizes attribute will not be generated automatically. #}
  13.     {% if autoColumnSizes is not defined %}
  14.         {% set autoColumnSizes = true %}
  15.     {% endif %}
  16.     {% if attributes is not defined %}
  17.         {% set attributes = {} %}
  18.     {% endif %}
  19.     
  20.     {% if attributes.class %}
  21.         {% set attributes = attributes|merge({'class': 'weedesign-webp ' ~ attributes.class}) %}
  22.     {% else %}
  23.         {% set attributes = attributes|merge({'class': 'weedesign-webp'}) %}
  24.     {% endif %}
  25.     {% if attributes.alt is not defined and media.translated.alt is defined %}
  26.         {% set attributes = attributes|merge({'alt': media.translated.alt}) %}
  27.     {% endif %}
  28.     {% if attributes.title is not defined and media.translated.title is defined %}
  29.         {% set attributes = attributes|merge({'title': media.translated.title}) %}
  30.     {% endif %}
  31.     {# uses cms block column count and all available thumbnails to determine the correct image size for the current viewport #}
  32.     {% if media.thumbnails|length > 0 %}
  33.         {% if autoColumnSizes and columns and sizes is not defined %}
  34.             {# set image size for every viewport #}
  35.             {% set sizes = {
  36.                 'xs': (theme_config('breakpoint.sm') - 1) ~'px',
  37.                 'sm': (theme_config('breakpoint.md') - 1) ~'px',
  38.                 'md': ((theme_config('breakpoint.lg') - 1) / columns)|round(0, 'ceil') ~'px',
  39.                 'lg': ((theme_config('breakpoint.xl') - 1) / columns)|round(0, 'ceil') ~'px'
  40.             } %}
  41.             {# set image size for largest viewport depending on the cms block sizing mode (boxed or full-width) #}
  42.             {% if layout == 'full-width' %}
  43.                 {% set container = 100 %}
  44.                 {% set sizes = sizes|merge({ 'xl': (container / columns)|round(0, 'ceil') ~'vw'}) %}
  45.             {% else %}
  46.                 {% set container = 1360 %}
  47.                 {% set sizes = sizes|merge({ 'xl': (container / columns)|round(0, 'ceil') ~'px'}) %}
  48.             {% endif %}
  49.         {% endif %}
  50.         {% set thumbnails = media.thumbnails|sort|reverse %}
  51.         {# generate srcset with all available thumbnails #}
  52.         {% set srcsetValue %}{% apply spaceless %}
  53.             {% if config('WeedesignImages2WebP.config.webp') %}
  54.                 {% if loadOriginalImage %}
  55.                     {{ media | weedesign_images2webp_webp_url_media }} {{ thumbnails|first.width + 1 }}w, 
  56.                 {% endif %}
  57.                 {% for thumbnail in thumbnails %}
  58.                     {{ thumbnail | weedesign_images2webp_webp_url_thumbnail }} {{ thumbnail.width }}w{% if not loop.last %}, {% endif %}
  59.                 {% endfor %}
  60.             {% else %}
  61.                 {% if loadOriginalImage %}
  62.                     {{ media | sw_encode_media_url }} {{ thumbnails|first.width + 1 }}w, 
  63.                 {% endif %}
  64.                 {% for thumbnail in thumbnails %}
  65.                     {{ thumbnail.url | sw_encode_url }} {{ thumbnail.width }}w{% if not loop.last %}, {% endif %}
  66.                 {% endfor %}
  67.             {% endif %}
  68.         {% endapply %}{% endset %}
  69.         {# generate sizes #}
  70.         {% set sizesValue %}{% apply spaceless %}
  71.             {% set sizeFallback = 100 %}
  72.             {# set largest size depending on column count of cms block #}
  73.             {% if autoColumnSizes and columns %}
  74.                 {% set sizeFallback = (sizeFallback / columns)|round(0, 'ceil') %}
  75.             {% endif %}
  76.             {% set breakpoint = {
  77.                 'xs': theme_config('breakpoint.xs'),
  78.                 'sm': theme_config('breakpoint.sm'),
  79.                 'md': theme_config('breakpoint.md'),
  80.                 'lg': theme_config('breakpoint.lg'),
  81.                 'xl': theme_config('breakpoint.xl')
  82.             } %}
  83.             {% if thumbnails|first.width > breakpoint|reverse|first %}
  84.                 {# @deprecated tag:v6.5.0 - Variable `maxWidth` and parent condition will be removed #}
  85.                 {% set maxWidth = thumbnails|first.width %}
  86.             {% endif %}
  87.             {% for key, value in breakpoint|reverse %}(min-width: {{ value }}px) {{ sizes[key] }}{% if not loop.last %}, {% endif %}{% endfor %}, {{ sizeFallback }}vw
  88.         {% endapply %}{% endset %}
  89.     {% endif %}
  90.     {% block thumbnail_utility_img %}
  91.         {% if config('WeedesignImages2WebP.config.webp') %}
  92.             <img 
  93.                 {% if load %}
  94.                     src="{{ media|weedesign_images2webp_webp_url_media }}"
  95.                 {% else %}
  96.                     data-src="{{ media|weedesign_images2webp_webp_url_media }}" 
  97.                 {% endif %}
  98.                 {% if config('WeedesignImages2WebP.config.fallback') %}
  99.                     data-fallback="{{ media.url|weedesign_images2webp_webp_url_nope }}"
  100.                 {% endif %}
  101.                 {% if media.thumbnails|length > 0 %}
  102.                     {% if load %}
  103.                         srcset="{{ srcsetValue }}" 
  104.                     {% else %}
  105.                         data-srcset="{{ srcsetValue }}" 
  106.                     {% endif %}
  107.                     {% if sizes['default'] %}
  108.                         sizes="{{ sizes['default'] }}"
  109.                     {% elseif sizes|length > 0 %}
  110.                         sizes="{{ sizesValue }}"
  111.                     {% endif %}
  112.                 {% endif %}
  113.                 {% for key, value in attributes %}
  114.                     {% if value != '' %} 
  115.                         {{ key }}="{{ value }}"
  116.                     {% endif %}
  117.                 {% endfor %}
  118.             />
  119.         {% else %}
  120.             <img 
  121.                 {% if load %}
  122.                     src="{{ media|sw_encode_media_url }}"
  123.                 {% else %}
  124.                     data-src="{{ media|sw_encode_media_url }}" 
  125.                 {% endif %}
  126.                 {% if media.thumbnails|length > 0 %}
  127.                     {% if load %}
  128.                         srcset="{{ srcsetValue }}" 
  129.                     {% else %}
  130.                         data-srcset="{{ srcsetValue }}" 
  131.                     {% endif %}
  132.                     {% if sizes['default'] %}
  133.                         sizes="{{ sizes['default'] }}"
  134.                     {% elseif sizes|length > 0 %}
  135.                         sizes="{{ sizesValue }}"
  136.                     {% endif %}
  137.                 {% endif %}
  138.                 {% for key, value in attributes %}
  139.                     {% if value != '' %} 
  140.                         {{ key }}="{{ value }}"
  141.                     {% endif %}
  142.                 {% endfor %}
  143.             />
  144.         {% endif %}
  145.     {% endblock %}
  146. {% endblock %}