templates/frontend/components/smallProduct.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'store' %}
  2. <!-- START OF ARTICLE -->
  3. <div class="column {% if isOneThird is defined and isOneThird == 1 %}
  4.             is-one-third-desktop is-one-third-tablet is-half-mobile
  5.         {% elseif isOneQuarter is defined and isOneQuarter == 1 %}
  6.             is-one-quarter-desktop is-one-quarter-tablet is-half-mobile
  7.         {% else %}is-half{% endif %}">
  8.     <div class="card {% if cssClass is defined and cssClass%}{{ cssClass }}{% endif%} {% if compareIds is defined and product.id in compareIds %} compare {% endif %}">
  9.         <span>
  10.             {% if (product.availability and product.availability.id == 1) or (product.availability and product.availability.id == 15 and app.request.locale == 'pl') or (product.availability and product.availability.id == 12 and app.request.locale == 'pl') or (product.availability and product.availability.id == 5) %}
  11.                 <div class="is-24h-product"></div>
  12.             {% elseif productData.isPromotion %}
  13.                 <div class="is-promotion-product"></div>
  14.             {% endif %}
  15.         </span>
  16.         <div class="{% if isOneThird is defined and isOneThird == 1 %}with-description{% else %}no-description{% endif %}">
  17.             <div class="card-image">
  18.                 <div class="image">
  19.                     {% if productData.subName is defined and productData.subName %}
  20.                         <a href="{{ path('product', {'id':product.id, 'slug':product.slug, 'sub':productData.subId}) }}">
  21.                     {% else %}
  22.                         <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  23.                     {% endif %}
  24.                     {% if lazyDisabled is defined and lazyDisabled %}
  25.                         <img data-main="{{ asset('/images/product/'~productData.mainPhoto~'') | imagine_filter('small') }}" src="{{ asset('/images/product/'~productData.mainPhoto~'') | imagine_filter('small') }}" alt="{{ product.name }}" class="img-responsive small-photo" />
  26.                     {% else %}
  27.                         <img data-main="{{ asset('/images/product/'~productData.mainPhoto~'') | imagine_filter('small') }}" src="/images/ajax-loader.gif" alt="{{ product.name }}" class="lazy img-responsive small-photo" data-src="{{ asset('/images/product/'~productData.mainPhoto~'') | imagine_filter('small') }}" />
  28.                     {% endif %}
  29.                     </a>
  30.                 </div>
  31.                 <div class="markers">
  32.                     {% if product.listingMarkersIds %}
  33.                         {% set listingImages = markerListingsProduct(product, app.request.locale) %}
  34.                         {% set c = 0 %}
  35.                         {% if listingImages|length %}
  36.                             {% for listingImage in listingImages if listingImage.text %}
  37.                                 {% if listingImage.url %}
  38.                                     <a href="{{ listingImage.url }}">
  39.                                         <div class="listing-marker-element listing-marker-element-{{ c }}" style="background: {{ listingImage.backgroundColor }}; color:{{ listingImage.textColor }};">
  40.                                             {{ listingImage.text }}
  41.                                         </div>
  42.                                     </a>
  43.                                     {% set c = c + 1 %}
  44.                                 {% else %}
  45.                                     <div class="listing-marker-element" style="background: {{ listingImage.backgroundColor }}; color:{{ listingImage.textColor }};">
  46.                                         {{ listingImage.text }}
  47.                                     </div>
  48.                                 {% endif %}
  49.                             {% endfor %}
  50.                         {% endif %}
  51.                     {% endif %}
  52.                 </div>
  53.             </div>
  54.             <div class="card-content">
  55.                 {% if productData.subName is defined and productData.subName %}
  56.                     <a class="cut-text" href="{{ path('product', {'id':product.id, 'slug':product.slug, 'sub':productData.subId}) }}">
  57.                         <span class="small-product-title">{{ productData.subName }}</span>
  58.                     </a>
  59.                 {% else %}
  60.                     <a class="cut-text" href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  61.                         <span class="small-product-title">{{ product.name }}</span>
  62.                     </a>
  63.                 {% endif %}
  64.                 <div class="title is-4">
  65.                     <div class="ta is-medium">
  66.                         {% if productData.priceCrossed is defined and productData.currencySign is defined and productData.priceCrossed %}
  67.                             <span style="color:#e22d2d">
  68.                         {% endif %}
  69.                         {% if productData.subPrice is defined and productData.subPrice %}
  70.                             <strong>{{ productData.subPrice|formatPrice(productData.currencyId) }}</strong>
  71.                         {% else %}
  72.                             <strong>{{ productData.priceDescription|formatPrice(productData.currencyId) }}</strong>
  73.                         {% endif %}
  74.                         {% if productData.priceCrossed is defined and productData.currencySign is defined and productData.priceCrossed %}
  75.                             </span>
  76.                         {% endif %}
  77.                         {% if productData.priceCrossed is defined and productData.currencySign is defined and productData.priceCrossed %}
  78.                             <br/>
  79.                             <span style="font-size: 14px!important; font-weight: 300!important;"><strike>{{ productData.priceCrossed|formatPrice(productData.currencyId) }}</strike></span>
  80.                         {% endif %}
  81.                     </div>
  82.                 </div>
  83.                 <div class="level is-mobile">
  84.                     <div class="level-left" style="margin-left:-5px;">
  85.                         {% if product.smallProductPhoto == constant('App\\Entity\\Product::SMALL_PRODUCT_PHOTO') %}
  86.                             {% set c = 0 %}
  87.                             {% for photo in getPhotos(product, language) %}
  88.                                 {% if c < 3 and photo.main != 1 and photo.imageName %}
  89.                                     {% set c = c + 1 %}
  90.                                     <div class="level-item color-thumb {% if c == 2 %}is-hidden-mobile{% endif %}">
  91.                                         <figure class="image">
  92.                                             <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  93.                                                 {% if lazyDisabled is defined and lazyDisabled %}
  94.                                                     <img src="{{ asset('/images/product/'~photo.imageName~'') | imagine_filter('textileBig4') }}">
  95.                                                 {% else %}
  96.                                                     <img src="/images/ajax-loader.gif" class="lazy" data-src="{{ asset('/images/product/'~photo.imageName~'') | imagine_filter('textileBig4') }}">
  97.                                                 {% endif %}
  98.                                             </a>
  99.                                         </figure>
  100.                                     </div>
  101.                                 {% endif %}
  102.                             {% endfor %}
  103.                         {% else %}
  104.                             {% set counter = 0 %}
  105.                             {% set c = 0 %}
  106.                             {% for value in product.getAllVariantValues() %}
  107.                                 {% set c = c + 1 %}
  108.                                 {% if c <= 3 %}
  109.                                     {% set counter = counter + 1 %}
  110.                                     {% if value.imageName %}
  111.                                         <div class="level-item color-thumb {% if c == 3 %}is-hidden-mobile{% endif %}">
  112.                                             <figure class="image">
  113.                                                 <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  114.                                                     <img class="lazy" data-src="{{ asset('/images/parameters/'~value.imageName~'') | imagine_filter('textileBig4') }}">
  115.                                                 </a>
  116.                                             </figure>
  117.                                         </div>
  118.                                     {% endif %}
  119.                                 {% endif %}
  120.                             {% endfor %}
  121.                             {% if counter %}
  122.                                 <!-- START OF MORE COLOURS / MATERIALS -->
  123.                                 <div class="level-item" style="margin-left:-10px;">
  124.                                         <span class="subtitle is-7">
  125.                                             {% if c > 3 %}
  126.                                                 <a href="#">+{{ c-3 }}</a>
  127.                                             {% endif %}
  128.                                         </span>
  129.                                 </div>
  130.                                 <!-- END OF MORE COLOURS / MATERIALS -->
  131.                             {% endif %}
  132.                         {% endif %}
  133.                     </div>
  134.                 </div>
  135.                 <div class="ta is-medium" style="{% if product.listingMarkersIds %}min-height: 85px;{% endif %}">
  136.                     {% if product.getShortDescriptionColor %}
  137.                         <div class="">
  138.                             <span class="subtitle is-7 short-description">
  139.                                 <span style="font-weight: normal">{{ 'colours'|trans }}:</span> <strong>{{ product.getShortDescriptionColor|striptags }}</strong>
  140.                                 </span>
  141.                         </div>
  142.                     {% endif %}
  143.                     {% if product.getShortDescriptionTextile %}
  144.                         <div class="is-hidden-mobile">
  145.                         <span class="subtitle is-7 short-description">
  146.                             <span style="font-weight: normal">{{ 'textile'|trans }}: </span>
  147.                                 <strong>{{ product.getShortDescriptionTextile|striptags }}</strong>
  148.                             </span>
  149.                         </div>
  150.                     {% endif %}
  151.                     <div>
  152.                     <span class="subtitle is-7 short-description">
  153.                         <span style="font-weight: normal">{{ 'shipping'|trans }}: </span> <strong>{{ product.getAvailability(language.localeShort).name }}</strong>
  154.                         </span>
  155.                     </div>
  156.                     {#
  157.                     {% if product.listingMarkersIds %}
  158.                         {% set listingImage = markerListingsProduct(product, app.request.locale) %}
  159.                         {% if listingImage %}
  160.                             {% if listingImage.url %}
  161.                                 <a href="{{ listingImage.url }}">
  162.                                         <span class="subtitle is-7">
  163.                                             <img class="listing-marker" src="/images/important/{{ listingImage.getImageName }}">
  164.                                         </span>
  165.                                 </a>
  166.                             {% else %}
  167.                                 <span class="subtitle is-7">
  168.                                         <img class="listing-marker" src="/images/important/{{ listingImage.getImageName }}">
  169.                                     </span>
  170.                             {% endif %}
  171.                         {% endif %}
  172.                     {% endif %}
  173.                     #}
  174.                 </div>
  175.             </div>
  176.             <div class="item-details is-hidden-touch" {% if lazyDisabled is defined and lazyDisabled %}style="display: none;" {% endif %}>
  177.                 <div class="container hidableContainer">
  178.                     {% if product.shortDescription %}
  179.                         <span class="subtitle is-7">
  180.                                 {{ product.shortDescription|raw }}
  181.                             </span>
  182.                         <br>
  183.                     {% endif %}
  184.                     {#
  185.                     <label {% if compareIds is defined and product.id in compareIds %}comparechecked{% endif %} @click="compareactive" class="checkbox" style="margin-top:5px;">
  186.                     #}
  187.                     <label class="checkbox" style="margin-top: 7px; font-size: 12px!important;">
  188.                         <input {% if compareIds is defined and product.id in compareIds %}
  189.                             checked="checked"
  190.                         {% endif %} type="checkbox" data-removepath="{{ path('remove_compare') }}" data-path="{{ path('add_to_compare') }}" class="add_to_compare" data-product="{{ product.id }}" id="{{ product.id }}">
  191.                         {{ 'add_to_compare'|trans }}
  192.                     </label>
  193.                 </div>
  194.             </div>
  195.         </div>
  196.     </div>
  197. </div>
  198. {#
  199. <chair-card inline-template {% if productData.isPromotion %}promotion{% endif %} {% if compareIds is defined and product.id in compareIds %}comparechecked{% endif %} v-cloak {% if (product.availability and product.availability.id == 1) or (product.availability and product.availability.id == 15 and app.request.locale == 'pl') or (product.availability and product.availability.id == 12 and app.request.locale == 'pl') or (product.availability and product.availability.id == 5) %}delivery24{% endif %}>
  200.     <div class="column
  201.         {% if isOneThird is defined and isOneThird == 1 %}
  202.             is-one-third
  203.         {% elseif isOneQuarter is defined and isOneQuarter == 1 %}
  204.             is-one-quarter
  205.         {% else %}is-half{% endif %}">
  206.         <div class="card" :class="{ 'compare': compare }">
  207.             <span v-if="!promotion">
  208.                 <div class="is-24h-product" v-if="delivery24"></div>
  209.             </span>
  210.             <div class="is-promotion-product" v-if="promotion"></div>
  211.             <div class="{% if isOneThird is defined and isOneThird == 1 %}with-description{% else %}no-description{% endif %}">
  212.                 <div class="card-image">
  213.                     <div class="image">
  214.                         {% if productData.subName is defined and productData.subName %}
  215.                             <a href="{{ path('product', {'id':product.id, 'slug':product.slug, 'sub':productData.subId}) }}">
  216.                         {% else %}
  217.                             <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  218.                         {% endif %}
  219.                             <img src="/images/ajax-loader.gif" alt="{{ product.name }}" class="lazy" data-src="{{ asset('/images/product/'~productData.mainPhoto~'') | imagine_filter('small') }}" class="img-responsive" />
  220.                         </a>
  221.                     </div>
  222.                 </div>
  223.                 <div class="card-content">
  224.                     {% if productData.subName is defined and productData.subName %}
  225.                         <a href="{{ path('product', {'id':product.id, 'slug':product.slug, 'sub':productData.subId}) }}">
  226.                             <span class="title is-6">{{ productData.subName }}</span>
  227.                         </a>
  228.                     {% else %}
  229.                         <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  230.                             <span class="title is-6">{{ product.name }}</span>
  231.                         </a>
  232.                     {% endif %}
  233.                     <div class="title is-4">
  234.                         <div class="ta is-medium">
  235.                             {% if productData.priceCrossed is defined and productData.currencySign is defined and productData.priceCrossed %}
  236.                                 <span style="color:#fe931f"><strong><strike>{{ productData.priceCrossed }} {{ productData.currencySign }}</strike></strong></span>
  237.                             {% endif %}
  238.                             {% if productData.subPrice is defined and productData.subPrice %}
  239.                                 <strong>{{ productData.subPrice|formatPrice(productData.currencyId) }}</strong>
  240.                             {% else %}
  241.                                 <strong>{{ productData.priceDescription|formatPrice(productData.currencyId) }}</strong>
  242.                             {% endif %}
  243.                         </div>
  244.                     </div>
  245.                     <div class="level is-mobile">
  246.                         <div class="level-left" style="margin-left:-5px;">
  247.                             {% if product.smallProductPhoto == constant('App\\Entity\\Product::SMALL_PRODUCT_PHOTO') %}
  248.                                 {% set c = 0 %}
  249.                                 {% for photo in getPhotos(product, language) %}
  250.                                     {% if c < 3 and photo.main != 1 and photo.imageName %}
  251.                                         {% set c = c + 1 %}
  252.                                         <div class="level-item color-thumb">
  253.                                             <figure class="image">
  254.                                                 <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  255.                                                     <img src="/images/ajax-loader.gif" class="lazy" data-src="{{ asset('/images/product/'~photo.imageName~'') | imagine_filter('textileBig4') }}">
  256.                                                 </a>
  257.                                             </figure>
  258.                                         </div>
  259.                                     {% endif %}
  260.                                 {% endfor %}
  261.                             {% else %}
  262.                                 {% set counter = 0 %}
  263.                                 {% set c = 0 %}
  264.                                 {% for value in product.getAllVariantValues() %}
  265.                                     {% set c = c + 1 %}
  266.                                     {% if c <= 3 %}
  267.                                         {% set counter = counter + 1 %}
  268.                                         {% if value.imageName %}
  269.                                             <div class="level-item color-thumb">
  270.                                                 <figure class="image">
  271.                                                     <a href="{{ path('product', {'id':product.id, 'slug':product.slug}) }}">
  272.                                                         <img class="lazy" data-src="{{ asset('/images/parameters/'~value.imageName~'') | imagine_filter('textileBig4') }}">
  273.                                                     </a>
  274.                                                 </figure>
  275.                                             </div>
  276.                                         {% endif %}
  277.                                     {% endif %}
  278.                                 {% endfor %}
  279.                                 {% if counter %}
  280.                                     <!-- START OF MORE COLOURS / MATERIALS -->
  281.                                     <div class="level-item" style="margin-left:-10px;">
  282.                                         <span class="subtitle is-7">
  283.                                             {% if c > 3 %}
  284.                                                 <a href="#">+{{ c-3 }}</a>
  285.                                             {% endif %}
  286.                                         </span>
  287.                                     </div>
  288.                                     <!-- END OF MORE COLOURS / MATERIALS -->
  289.                                 {% endif %}
  290.                             {% endif %}
  291.                         </div>
  292.                     </div>
  293.                     <div class="ta is-medium" style="{% if product.listingMarkersIds %}min-height: 85px;{% endif %}">
  294.                         {% if product.getShortDescriptionColor %}
  295.                             <span class="subtitle is-7 short-description">
  296.                                 {{ 'colours'|trans }}: <strong>{{ product.getShortDescriptionColor|striptags }}</strong>
  297.                             </span>
  298.                             <br>
  299.                         {% endif %}
  300.                         {% if product.getShortDescriptionTextile %}
  301.                             <span class="subtitle is-7 short-description">
  302.                                 {{ 'textile'|trans }}: <strong>{{ product.getShortDescriptionTextile|striptags }}</strong>
  303.                             </span>
  304.                             <br>
  305.                         {% endif %}
  306.                         <span class="subtitle is-7 short-description">
  307.                             {{ 'shipping'|trans }}: <strong>{{ product.getAvailability(language.localeShort).name }}</strong>
  308.                         </span>
  309.                         {% if product.listingMarkersIds %}
  310.                             {% set listingImage = markerListingsProduct(product, app.request.locale) %}
  311.                             {% if listingImage %}
  312.                                 {% if listingImage.url %}
  313.                                     <a href="{{ listingImage.url }}">
  314.                                         <span class="subtitle is-7">
  315.                                             <img class="listing-marker" src="/images/important/{{ listingImage.getImageName }}">
  316.                                         </span>
  317.                                     </a>
  318.                                 {% else %}
  319.                                     <span class="subtitle is-7">
  320.                                         <img class="listing-marker" src="/images/important/{{ listingImage.getImageName }}">
  321.                                     </span>
  322.                                 {% endif %}
  323.                             {% endif %}
  324.                         {% endif %}
  325.                     </div>
  326.                 </div>
  327.                 <div class="item-details">
  328.                     <div class="container hidableContainer">
  329.                         {% if product.shortDescription %}
  330.                             <span class="subtitle is-7">
  331.                                 {{ product.shortDescription|raw }}
  332.                             </span>
  333.                             <br>
  334.                         {% endif %}
  335.                         <label {% if compareIds is defined and product.id in compareIds %}comparechecked{% endif %} @click="compareactive" class="checkbox" style="margin-top:5px;">
  336.                             <input {% if compareIds is defined and product.id in compareIds %}
  337.                                 checked="checked"
  338.                             {% endif %} type="checkbox" v-model="compare" data-removepath="{{ path('remove_compare') }}" data-path="{{ path('add_to_compare') }}" class="add_to_compare" data-product="{{ product.id }}" id="{{ product.id }}">
  339.                             {{ 'add_to_compare'|trans }}
  340.                         </label>
  341.                     </div>
  342.                 </div>
  343.             </div>
  344.         </div>
  345.     </div>
  346. </chair-card>
  347. <!-- END OF ARTICLE -->
  348. #}