src/Eccube/Resource/template/default/Product/list.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% extends 'default_frame.twig' %}
  9. {% set body_class = 'product_page' %}
  10. {% block javascript %}
  11.     <script>
  12.         eccube.productsClassCategories = {
  13.             {% for Product in pagination %}
  14.             "{{ Product.id|escape('js') }}": {{ class_categories_as_json(Product)|raw }}{% if loop.last == false %}, {% endif %}
  15.             {% endfor %}
  16.         };
  17.         $(function() {
  18.             // 表示件数を変更
  19.             $('.disp-number').change(function() {
  20.                 var dispNumber = $(this).val();
  21.                 $('#disp_number').val(dispNumber);
  22.                 $('#pageno').val(1);
  23.                 $("#form1").submit();
  24.             });
  25.             // 並び順を変更
  26.             $('.order-by').change(function() {
  27.                 var orderBy = $(this).val();
  28.                 $('#orderby').val(orderBy);
  29.                 $('#pageno').val(1);
  30.                 $("#form1").submit();
  31.             });
  32.             $('.add-cart').on('click', function(e) {
  33.                 var $form = $(this).parents('li').find('form');
  34.                 // 個数フォームのチェック
  35.                 var $quantity = $form.parent().find('.quantity');
  36.                 if ($quantity.val() < 1) {
  37.                     $quantity[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
  38.                     setTimeout(function() {
  39.                         loadingOverlay('hide');
  40.                     }, 100);
  41.                     return true;
  42.                 } else {
  43.                     $quantity[0].setCustomValidity('');
  44.                 }
  45.                 e.preventDefault();
  46.                 $.ajax({
  47.                     url: $form.attr('action'),
  48.                     type: $form.attr('method'),
  49.                     data: $form.serialize(),
  50.                     dataType: 'json',
  51.                     beforeSend: function(xhr, settings) {
  52.                         // Buttonを無効にする
  53.                         $('.add-cart').prop('disabled', true);
  54.                     }
  55.                 }).done(function(data) {
  56.                     // レスポンス内のメッセージをalertで表示
  57.                     $.each(data.messages, function() {
  58.                         $('#ec-modal-header').html(this);
  59.                     });
  60.                     $('.ec-modal').show()
  61.                     // カートブロックを更新する
  62.                     $.ajax({
  63.                         url: '{{ url('block_cart') }}',
  64.                         type: 'GET',
  65.                         dataType: 'html'
  66.                     }).done(function(html) {
  67.                         $('.ec-headerRole__cart').html(html);
  68.                     });
  69.                 }).fail(function(data) {
  70.                     alert('{{ 'カートへの追加に失敗しました。'|trans }}');
  71.                 }).always(function(data) {
  72.                     // Buttonを有効にする
  73.                     $('.add-cart').prop('disabled', false);
  74.                 });
  75.             });
  76.         });
  77.         $('.ec-modal-overlay, .ec-modal .ec-inlineBtn--cancel').on('click', function() {
  78.             $('.ec-modal').hide()
  79.         });
  80.     </script>
  81. {% endblock %}
  82. {% block main %}
  83.     {% if search_form.category_id.vars.errors|length > 0 %}
  84.         <div class="ec-searchnavRole">
  85.             <p class="errormsg text-danger">{{ 'ご指定のカテゴリは存在しません'|trans }}</p>
  86.         </div>
  87.     {% else %}
  88.         <div class="ec-searchnavRole">
  89.             <form name="form1" id="form1" method="get" action="?">
  90.                 {% for item in search_form %}
  91.                     <input type="hidden" id="{{ item.vars.id }}"
  92.                            name="{{ item.vars.full_name }}"
  93.                            {% if item.vars.value is not empty %}value="{{ item.vars.value }}" {% endif %}/>
  94.                 {% endfor %}
  95.             </form>
  96.             <div class="ec-searchnavRole__topicpath">
  97.                 <ol class="ec-topicpath">
  98.                     <li class="ec-topicpath__item"><a href="{{ url('product_list') }}">{{ '全て'|trans }}</a>
  99.                     </li>
  100.                     {% if Category is not null %}
  101.                         {% for Path in Category.path %}
  102.                             <li class="ec-topicpath__divider">|</li>
  103.                             <li class="ec-topicpath__item{% if loop.last %}--active{% endif %}"><a
  104.                                         href="{{ url('product_list') }}?category_id={{ Path.id }}">{{ Path.name }}</a>
  105.                             </li>
  106.                         {% endfor %}
  107.                     {% endif %}
  108.                     {% if search_form.vars.value and search_form.vars.value.name %}
  109.                         <li class="ec-topicpath__divider">|</li>
  110.                         <li class="ec-topicpath__item">{{ '「%name%」の検索結果'|trans({ '%name%': search_form.vars.value.name }) }}</li>
  111.                     {% endif %}
  112.                 </ol>
  113.             </div>
  114.             <div class="ec-searchnavRole__infos">
  115.                 <div class="ec-searchnavRole__counter">
  116.                     {% if pagination.totalItemCount > 0 %}
  117.                         {{ '<span class="ec-font-bold">%count%件</span><span>の商品が見つかりました</span>'|trans({ '%count%': pagination.totalItemCount })|raw }}
  118.                     {% else %}
  119.                         <span>{{ 'お探しの商品は見つかりませんでした'|trans }}</span>
  120.                     {% endif %}
  121.                 </div>
  122.                 {% if pagination.totalItemCount > 0 %}
  123.                     <div class="ec-searchnavRole__actions">
  124.                         <div class="ec-select">
  125.                             {{ form_widget(disp_number_form, {'id': '', 'attr': {'class': 'disp-number'}}) }}
  126.                             {{ form_widget(order_by_form, {'id': '', 'attr': {'class': 'order-by'}}) }}
  127.                         </div>
  128.                     </div>
  129.                 {% endif %}
  130.             </div>
  131.         </div>
  132.         {% if pagination.totalItemCount > 0 %}
  133.             <div class="ec-shelfRole">
  134.                 <ul class="ec-shelfGrid">
  135.                     {% for Product in pagination %}
  136.                         <li class="ec-shelfGrid__item">
  137.                             <a href="{{ url('product_detail', {'id': Product.id}) }}">
  138.                                 <p class="ec-shelfGrid__item-image">
  139.                                     <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}">
  140.                                 </p>
  141.                                 <p>{{ Product.name }}</p>
  142.                                 {% if Product.description_list %}
  143.                                     <p>{{ Product.description_list|raw|nl2br }}</p>
  144.                                 {% endif %}
  145.                                 <p class="price02-default">
  146.                                     {% if Product.hasProductClass %}
  147.                                         {% if Product.getPrice02Min == Product.getPrice02Max %}
  148.                                             {{ Product.getPrice02IncTaxMin|price }}
  149.                                         {% else %}
  150.                                             {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
  151.                                         {% endif %}
  152.                                     {% else %}
  153.                                         {{ Product.getPrice02IncTaxMin|price }}
  154.                                     {% endif %}
  155.                                 </p>
  156.                             </a>
  157.                             {% if Product.stock_find %}
  158.                                 {% set form = forms[Product.id] %}
  159.                                 <form name="form{{ Product.id }}" id="productForm{{ Product.id }}" action="{{ url('product_add_cart', {id:Product.id}) }}" method="post">
  160.                                     <div class="ec-productRole__actions">
  161.                                         {% if form.classcategory_id1 is defined %}
  162.                                             <div class="ec-select">
  163.                                                 {{ form_widget(form.classcategory_id1) }}
  164.                                                 {{ form_errors(form.classcategory_id1) }}
  165.                                             </div>
  166.                                             {% if form.classcategory_id2 is defined %}
  167.                                                 <div class="ec-select">
  168.                                                     {{ form_widget(form.classcategory_id2) }}
  169.                                                     {{ form_errors(form.classcategory_id2) }}
  170.                                                 </div>
  171.                                             {% endif %}
  172.                                         {% endif %}
  173.                                         <div class="ec-numberInput"><span>{{ '数量'|trans }}</span>
  174.                                             {{ form_widget(form.quantity, {'attr': {'class': 'quantity'}}) }}
  175.                                             {{ form_errors(form.quantity) }}
  176.                                         </div>
  177.                                     </div>
  178.                                     {{ form_rest(form) }}
  179.                                 </form>
  180.                                 <div class="ec-productRole__btn">
  181.                                     <button type="submit" class="ec-blockBtn--action add-cart" data-cartid="{{ Product.id }}" form="productForm{{ Product.id }}">
  182.                                         {{ 'カートに入れる'|trans }}
  183.                                     </button>
  184.                                 </div>
  185.                             {% else %}
  186.                                 <div class="ec-productRole__btn">
  187.                                     <button type="button" class="ec-blockBtn--action" disabled="disabled">
  188.                                         {{ 'ただいま品切れ中です。'|trans }}
  189.                                     </button>
  190.                                 </div>
  191.                             {% endif %}
  192.                         </li>
  193.                     {% endfor %}
  194.                 </ul>
  195.             </div>
  196.             <div class="ec-modal">
  197.                 <div class="ec-modal-overlay">
  198.                     <div class="ec-modal-wrap">
  199.                         <span class="ec-modal-close"><span class="ec-icon"><img src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>
  200.                         <div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>
  201.                         <div class="ec-modal-box">
  202.                             <div class="ec-role">
  203.                                 <span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>
  204.                                 <a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>
  205.                             </div>
  206.                         </div>
  207.                     </div>
  208.                 </div>
  209.             </div>
  210.             <div class="ec-pagerRole">
  211.                 {% include "pager.twig" with {'pages': pagination.paginationData} %}
  212.             </div>
  213.         {% endif %}
  214.     {% endif %}
  215. {% endblock %}