vendor/shopware/storefront/Resources/views/storefront/utilities/thumbnail.html.twig line 1

Open in your IDE?
  1. {# activate load per default. If it is not activated only a data-src is set instead of the src tag. #}
  2. {% if load is not defined %}
  3.     {% set load = true %}
  4. {% endif %}
  5. {# By default no original image will be loaded as soon as thumbnails are available. #}
  6. {# When set to true the orginal image will be loaded when the viewport is greater than the largest available thumbnail. #}
  7. {% if loadOriginalImage is not defined %}
  8.     {% set loadOriginalImage = false %}
  9. {% endif %}
  10. {# By default the srcset sizes will be calculated automatically if `columns` are present and no `sizes` are configured. #}
  11. {# When set to false the sizes attribute will not be generated automatically. #}
  12. {% if autoColumnSizes %}
  13.     {% set autoColumnSizes = true %}
  14. {% endif %}
  15. {% if attributes is not defined %}
  16.     {% set attributes = {} %}
  17. {% endif %}
  18. {% if attributes.alt is not defined and media.translated.alt is defined %}
  19.     {% set attributes = attributes|merge({'alt': media.translated.alt}) %}
  20. {% endif %}
  21. {% if attributes.title is not defined and media.translated.title is defined %}
  22.     {% set attributes = attributes|merge({'title': media.translated.title}) %}
  23. {% endif %}
  24. {# uses cms block column count and all available thumbnails to determine the correct image size for the current viewport #}
  25. {% if media.thumbnails|length > 0 %}
  26.     {% if autoColumnSizes and columns and sizes is not defined %}
  27.         {# set image size for every viewport #}
  28.         {% set sizes = {
  29.             'xs': (theme_config('breakpoint.sm') - 1) ~'px',
  30.             'sm': (theme_config('breakpoint.md') - 1) ~'px',
  31.             'md': ((theme_config('breakpoint.lg') - 1) / columns)|round(0, 'ceil') ~'px',
  32.             'lg': ((theme_config('breakpoint.xl') - 1) / columns)|round(0, 'ceil') ~'px'
  33.         } %}
  34.         {# set image size for largest viewport depending on the cms block sizing mode (boxed or full-width) #}
  35.         {% if layout == 'full-width' %}
  36.             {% set container = 100 %}
  37.             {% set sizes = sizes|merge({ 'xl': (container / columns)|round(0, 'ceil') ~'vw'}) %}
  38.         {% else %}
  39.             {% set container = 1360 %}
  40.             {% set sizes = sizes|merge({ 'xl': (container / columns)|round(0, 'ceil') ~'px'}) %}
  41.         {% endif %}
  42.     {% endif %}
  43.     {% set thumbnails = media.thumbnails|sort|reverse %}
  44.     {# generate srcset with all available thumbnails #}
  45.     {% set srcsetValue %}{% apply spaceless %}
  46.         {% if loadOriginalImage %}{{ media|sw_encode_media_url }} {{ thumbnails|first.width + 1 }}w, {% endif %}{% for thumbnail in thumbnails %}{{ thumbnail.url | sw_encode_url }} {{ thumbnail.width }}w{% if not loop.last %}, {% endif %}{% endfor %}
  47.     {% endapply %}{% endset %}
  48.     {# generate sizes #}
  49.     {% set sizesValue %}{% apply spaceless %}
  50.         {% set sizeFallback = 100 %}
  51.         {# set largest size depending on column count of cms block #}
  52.         {% if autoColumnSizes and columns %}
  53.             {% set sizeFallback = (sizeFallback / columns)|round(0, 'ceil') %}
  54.         {% endif %}
  55.         {% set breakpoint = {
  56.             'xs': theme_config('breakpoint.xs'),
  57.             'sm': theme_config('breakpoint.sm'),
  58.             'md': theme_config('breakpoint.md'),
  59.             'lg': theme_config('breakpoint.lg'),
  60.             'xl': theme_config('breakpoint.xl')
  61.         } %}
  62.         {% if thumbnails|first.width > breakpoint|reverse|first %}
  63.             {# @deprecated tag:v6.5.0 - Variable `maxWidth` and parent condition will be removed #}
  64.             {% set maxWidth = thumbnails|first.width %}
  65.         {% endif %}
  66.         {% for key, value in breakpoint|reverse %}(min-width: {{ value }}px) {{ sizes[key] }}{% if not loop.last %}, {% endif %}{% endfor %}, {{ sizeFallback }}vw
  67.     {% endapply %}{% endset %}
  68. {% endif %}
  69. <img {% if load %}src="{{ media|sw_encode_media_url }}" {% else %}data-src="{{ media|sw_encode_media_url }}" {% endif %}
  70.     {% if media.thumbnails|length > 0 %}
  71.         {% if load %}srcset="{{ srcsetValue }}" {% else %}data-srcset="{{ srcsetValue }}" {% endif %}
  72.         {% if sizes['default'] %}
  73.         sizes="{{ sizes['default'] }}"
  74.         {% elseif sizes|length > 0 %}
  75.         sizes="{{ sizesValue }}"
  76.         {% endif %}
  77.     {% endif %}
  78.     {% for key, value in attributes %}{% if value != '' %} {{ key }}="{{ value }}"{% endif %}{% endfor %}
  79. />