app/template/default/Product/detail.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 stylesheet %}
  11.     <style>
  12.         .slick-slider {
  13.             margin-bottom: 30px;
  14.         }
  15.         .slick-dots {
  16.             position: absolute;
  17.             bottom: -45px;
  18.             display: block;
  19.             width: 100%;
  20.             padding: 0;
  21.             list-style: none;
  22.             text-align: center;
  23.         }
  24.         .slick-dots li {
  25.             position: relative;
  26.             display: inline-block;
  27.             width: 20px;
  28.             height: 20px;
  29.             margin: 0 5px;
  30.             padding: 0;
  31.             cursor: pointer;
  32.         }
  33.         .slick-dots li button {
  34.             font-size: 0;
  35.             line-height: 0;
  36.             display: block;
  37.             width: 20px;
  38.             height: 20px;
  39.             padding: 5px;
  40.             cursor: pointer;
  41.             color: transparent;
  42.             border: 0;
  43.             outline: none;
  44.             background: transparent;
  45.         }
  46.         .slick-dots li button:hover,
  47.         .slick-dots li button:focus {
  48.             outline: none;
  49.         }
  50.         .slick-dots li button:hover:before,
  51.         .slick-dots li button:focus:before {
  52.             opacity: 1;
  53.         }
  54.         .slick-dots li button:before {
  55.             content: " ";
  56.             line-height: 20px;
  57.             position: absolute;
  58.             top: 0;
  59.             left: 0;
  60.             width: 12px;
  61.             height: 12px;
  62.             text-align: center;
  63.             opacity: .25;
  64.             background-color: black;
  65.             border-radius: 50%;
  66.         }
  67.         .slick-dots li.slick-active button:before {
  68.             opacity: .75;
  69.             background-color: black;
  70.         }
  71.         .slick-dots li button.thumbnail img {
  72.             width: 0;
  73.             height: 0;
  74.         }
  75.     </style>
  76. {% endblock %}
  77. {% block javascript %}
  78.     <script>
  79.         eccube.classCategories = {{ class_categories_as_json(Product)|raw }};
  80.         // 規格2に選択肢を割り当てる。
  81.         function fnSetClassCategories(form, classcat_id2_selected) {
  82.             var $form = $(form);
  83.             var product_id = $form.find('input[name=product_id]').val();
  84.             var $sele1 = $form.find('select[name=classcategory_id1]');
  85.             var $sele2 = $form.find('select[name=classcategory_id2]');
  86.             eccube.setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected);
  87.         }
  88.         {% if form.classcategory_id2 is defined %}
  89.         fnSetClassCategories(
  90.             $('#form1'), {{ form.classcategory_id2.vars.value|json_encode|raw }}
  91.         );
  92.         {% elseif form.classcategory_id1 is defined %}
  93.         eccube.checkStock($('#form1'), {{ Product.id }}, {{ form.classcategory_id1.vars.value|json_encode|raw }}, null);
  94.         {% endif %}
  95.     </script>
  96.     <script>
  97.         $(function() {
  98.             // bfcache無効化
  99.             $(window).bind('pageshow', function(event) {
  100.                 if (event.originalEvent.persisted) {
  101.                     location.reload(true);
  102.                 }
  103.             });
  104.             // Core Web Vital の Cumulative Layout Shift(CLS)対策のため
  105.             // img タグに width, height が付与されている.
  106.             // 630px 未満の画面サイズでは縦横比が壊れるための対策
  107.             // see https://github.com/EC-CUBE/ec-cube/pull/5023
  108.             $('.ec-grid2__cell').hide();
  109.             var removeSize = function () {
  110.                 $('.slide-item').height('');
  111.                 $('.slide-item img')
  112.                     .removeAttr('width')
  113.                     .removeAttr('height')
  114.                     .removeAttr('style');
  115.             };
  116.             var slickInitial = function(slick) {
  117.                 $('.ec-grid2__cell').fadeIn(1500);
  118.                 var baseHeight = $(slick.target).height();
  119.                 var baseWidth = $(slick.target).width();
  120.                 var rate = baseWidth / baseHeight;
  121.                 $('.slide-item').height(baseHeight * rate); // 余白を削除する
  122.                 // transform を使用することでCLSの影響を受けないようにする
  123.                 $('.slide-item img')
  124.                     .css(
  125.                         {
  126.                             'transform-origin': 'top left',
  127.                             'transform': 'scaleY(' + rate + ')',
  128.                             'transition': 'transform .1s'
  129.                         }
  130.                     );
  131.                 // 正しいサイズに近くなったら属性を解除する
  132.                 setTimeout(removeSize, 500);
  133.             };
  134.             $('.item_visual').on('init', slickInitial);
  135.             // リサイズ時は CLS の影響を受けないため属性を解除する
  136.             $(window).resize(removeSize);
  137.             $('.item_visual').slick({
  138.                 dots: false,
  139.                 arrows: false,
  140.                 responsive: [{
  141.                     breakpoint: 768,
  142.                     settings: {
  143.                         dots: true
  144.                     }
  145.                 }]
  146.             });
  147.             $('.slideThumb').on('click', function() {
  148.                 var index = $(this).attr('data-index');
  149.                 $('.item_visual').slick('slickGoTo', index, false);
  150.             })
  151.         });
  152.     </script>
  153.     <script>
  154.         $(function() {
  155.             $('.add-cart').on('click', function(event) {
  156.                 {% if form.classcategory_id1 is defined %}
  157.                 // 規格1フォームの必須チェック
  158.                 if ($('#classcategory_id1').val() == '__unselected' || $('#classcategory_id1').val() == '') {
  159.                     $('#classcategory_id1')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  160.                     return true;
  161.                 } else {
  162.                     $('#classcategory_id1')[0].setCustomValidity('');
  163.                 }
  164.                 {% endif %}
  165.                 {% if form.classcategory_id2 is defined %}
  166.                 // 規格2フォームの必須チェック
  167.                 if ($('#classcategory_id2').val() == '__unselected' || $('#classcategory_id2').val() == '') {
  168.                     $('#classcategory_id2')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  169.                     return true;
  170.                 } else {
  171.                     $('#classcategory_id2')[0].setCustomValidity('');
  172.                 }
  173.                 {% endif %}
  174.                 // 個数フォームのチェック
  175.                 if ($('#quantity').val() < 1) {
  176.                     $('#quantity')[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
  177.                     return true;
  178.                 } else {
  179.                     $('#quantity')[0].setCustomValidity('');
  180.                 }
  181.                 event.preventDefault();
  182.                 $form = $('#form1');
  183.                 $.ajax({
  184.                     url: $form.attr('action'),
  185.                     type: $form.attr('method'),
  186.                     data: $form.serialize(),
  187.                     dataType: 'json',
  188.                     beforeSend: function(xhr, settings) {
  189.                         // Buttonを無効にする
  190.                         $('.add-cart').prop('disabled', true);
  191.                     }
  192.                 }).done(function(data) {
  193.                     // レスポンス内のメッセージをalertで表示
  194.                     $.each(data.messages, function() {
  195.                         $('#ec-modal-header').text(this);
  196.                     });
  197.                     $('.ec-modal').show()
  198.                     // カートブロックを更新する
  199.                     $.ajax({
  200.                         url: "{{ url('block_cart') }}",
  201.                         type: 'GET',
  202.                         dataType: 'html'
  203.                     }).done(function(html) {
  204.                         $('.ec-headerRole__cart').html(html);
  205.                     });
  206.                 }).fail(function(data) {
  207.                     alert('{{ 'カートへの追加に失敗しました。'|trans }}');
  208.                 }).always(function(data) {
  209.                     // Buttonを有効にする
  210.                     $('.add-cart').prop('disabled', false);
  211.                 });
  212.             });
  213.         });
  214.         $('.ec-modal-wrap').on('click', function(e) {
  215.             // モーダル内の処理は外側にバブリングさせない
  216.             e.stopPropagation();
  217.         });
  218.         $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {
  219.             $('.ec-modal').hide()
  220.         });
  221.     </script>
  222.     <script type="application/ld+json">
  223.     {
  224.         "@context": "https://schema.org/",
  225.         "@type": "Product",
  226.         "name": "{{ Product.name }}",
  227.         "image": [
  228.             {% for img in Product.ProductImage %}
  229.                 "{{ app.request.schemeAndHttpHost }}{{ asset(img, 'save_image') }}"{% if not loop.last %},{% endif %}
  230.             {% else %}
  231.                 "{{ app.request.schemeAndHttpHost }}{{ asset(''|no_image_product, 'save_image') }}"
  232.             {% endfor %}
  233.         ],
  234.         "description": "{{ Product.description_list | default(Product.description_detail) | replace({'\n': '', '\r': ''}) | slice(0,300) }}",
  235.         {% if Product.code_min %}
  236.         "sku": "{{ Product.code_min }}",
  237.         {% endif %}
  238.         "offers": {
  239.             "@type": "Offer",
  240.             "url": "{{ url('product_detail', {'id': Product.id}) }}",
  241.             "priceCurrency": "{{ eccube_config.currency }}",
  242.             "price": {{ Product.getPrice02IncTaxMin ? Product.getPrice02IncTaxMin : 0}},
  243.             "availability": "{{ Product.stock_find ? "InStock" : "OutOfStock" }}"
  244.         }
  245.     }
  246.     </script>
  247. {% endblock %}
  248. {% block main %}
  249.     <div class="ec-productRole">
  250.         <div class="ec-grid2">
  251.             <div class="ec-grid2__cell">
  252.                 <div class="ec-sliderItemRole">
  253.                     <div class="item_visual">
  254.                         {% for ProductImage in Product.ProductImage %}
  255.                             <div class="slide-item"><img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}" width="550" height="550"{% if loop.index > 1 %} loading="lazy"{% endif %}></div>
  256.                         {% else %}
  257.                             <div class="slide-item"><img src="{{ asset(''|no_image_product, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}" width="550" height="550"></div>
  258.                         {% endfor %}
  259.                     </div>
  260.                     <div class="item_nav">
  261.                         {% for ProductImage in Product.ProductImage %}
  262.                             <div class="slideThumb" data-index="{{ loop.index0 }}"><img src="{{ asset(ProductImage, 'save_image') }}" alt="" width="133" height="133" loading="lazy"></div>
  263.                         {% endfor %}
  264.                     </div>
  265.                 </div>
  266.             </div>
  267.             <div class="ec-grid2__cell">
  268.                 <div class="ec-productRole__profile">
  269.                     {# 商品名 #}
  270.                     <div class="ec-productRole__title">
  271.                         <h2 class="ec-headingTitle">{{ Product.name }}</h2>
  272.                     </div>
  273.                     {# タグ #}
  274.                     <ul class="ec-productRole__tags">
  275.                         {% for Tag in Product.Tags %}
  276.                             <li class="ec-productRole__tag tag_{{ Tag.id }}">{{ Tag }}</li>
  277.                         {% endfor %}
  278.                     </ul>
  279.                     
  280.                     {# ログイン中 #}
  281.                     {% if is_granted('ROLE_USER') %}
  282.                         {# 通常価格 #}
  283.                         {% if Product.hasProductClass -%}
  284.                             <div class="ec-productRole__priceRegular">
  285.                                 {% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
  286.                                     <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}</span></span>
  287.                                     <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  288.                                 {% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
  289.                                     <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}~ {{ Product.getPrice01IncTaxMax|price }}</span></span>
  290.                                     <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  291.                                 {% endif %}
  292.                             </div>
  293.                         {% else %}
  294.                             {% if Product.getPrice01Max is not null %}
  295.                                 <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:{{ Product.getPrice01IncTaxMin|price }}</span>
  296.                                 <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  297.                             {% endif %}
  298.                         {% endif %}
  299.                         {# 販売価格 #}
  300.                         <div class="ec-productRole__price">
  301.                             {% if Product.hasProductClass -%}
  302.                                 {% if Product.getPrice02IncTaxMin == Product.getPrice02IncTaxMax %}
  303.                                     <div class="ec-price">
  304.                                         <span class="ec-price__price price02-default">{{ Product.getPrice02IncTaxMin|price }}</span>
  305.                                         <span class="ec-price__tax">{{ '税込'|trans }}</span>
  306.                                     </div>
  307.                                 {% else %}
  308.                                     <div class="ec-price">
  309.                                         <span class="ec-price__price price02-default">{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}</span>
  310.                                         <span class="ec-price__tax">{{ '税込'|trans }}</span>
  311.                                     </div>
  312.                                 {% endif %}
  313.                             {% else %}
  314.                                 {% set getPrice02NoTaxMin = ceil(Product.getPrice02IncTaxMin / 1.1) %}
  315.                                 <div class="ec-price">
  316.                                     <span class="ec-price__price">{{ Product.getPrice02IncTaxMin|price }}</span>
  317.                                     <span class="ec-price__tax">{{ '税込'|trans }}</span>
  318.                                     <span class="ec-price__price">{{ getPrice02NoTaxMin|price }}</span>
  319.                                     <span class="ec-price__tax">{{ '税抜'|trans }}</span>
  320.                                 </div>
  321.                             {% endif %}
  322.                         </div>
  323.                     {#ログイン前#}
  324.                     {% else %}
  325.                         <div class="ec-productRole__priceRegular">
  326.                             <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default"></span></span>
  327.                         </div>
  328.                         {# 販売価格 #}
  329.                         <div class="ec-productRole__price">
  330.                             <div class="ec-price">
  331.                                 <span class="ec-price__price price02-default">お問い合わせ下さい</span>
  332.                             </div>
  333.                         </div>
  334.                     {% endif %}
  335.                     {# 在庫数 #}
  336.                     {% if Product.code_min is not empty %}
  337.                         <div class="ec-productRole__code">
  338.                             {{ '在庫数'|trans }}: 
  339.                             <span class="product-code-default">
  340.                                 {% for productClass in Product.ProductClasses %}
  341.                                     {{ productClass.getSaleLimit() }}
  342.                                 {% endfor %}
  343.                             </span>
  344.                         </div>
  345.                     {% endif %}
  346.                     {# 商品コード #}
  347.                     {% if Product.code_min is not empty %}
  348.                         <div class="ec-productRole__code">
  349.                             {{ '商品コード'|trans }}: <span class="product-code-default">{{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</span>
  350.                         </div>
  351.                     {% endif %}
  352.                     {# 関連カテゴリ #}
  353.                     {% if Product.ProductCategories is not empty %}
  354.                         <div class="ec-productRole__category">
  355.                             <div>{{ '関連カテゴリ'|trans }}</div>
  356.                             {% for ProductCategory in Product.ProductCategories %}
  357.                                 <ul>
  358.                                     <li>
  359.                                         {% for Category in ProductCategory.Category.path %}
  360.                                             <a href="{{ url('product_list') }}?category_id={{ Category.id }}">{{ Category.name }}</a> {%- if loop.last == false %}
  361.                                             <span>></span>{% endif -%}
  362.                                         {% endfor %}
  363.                                     </li>
  364.                                 </ul>
  365.                             {% endfor %}
  366.                         </div>
  367.                     {% endif %}
  368.                     {% if "now"|date("H") > 11 and "now"|date("H") < 19 %}
  369.                     {% else %}
  370.                         <p style="margin-top:20px;">ご注文の受付は<span style="font-weight:bold;color:#ff0000;">11時から19時まで</span>となっており、19時以降の注文の受付はできかねます。<br>
  371.                         翌11時より改めてご注文手続きをしていただきますようよろしくお願いいたします。</p>
  372.                     {% endif %}
  373.                     {# ログイン中 #}
  374.                     {% if is_granted('ROLE_USER') %}
  375.                     <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  376.                         {% if Product.stock_find %}
  377.                             <div class="ec-productRole__actions">
  378.                                 {% if form.classcategory_id1 is defined %}
  379.                                     <div class="ec-select">
  380.                                         {{ form_row(form.classcategory_id1) }}
  381.                                         {{ form_errors(form.classcategory_id1) }}
  382.                                     </div>
  383.                                     {% if form.classcategory_id2 is defined %}
  384.                                         <div class="ec-select">
  385.                                             {{ form_row(form.classcategory_id2) }}
  386.                                             {{ form_errors(form.classcategory_id2) }}
  387.                                         </div>
  388.                                     {% endif %}
  389.                                 {% endif %}
  390.                                 <div class="ec-numberInput"><span>{{ '数量'|trans }}</span>
  391.                                     {{ form_widget(form.quantity) }}
  392.                                     {{ form_errors(form.quantity) }}
  393.                                 </div>
  394.                             </div>
  395.                             <div class="ec-productRole__btn">
  396.                                 <button type="submit" class="ec-blockBtn--action add-cart">
  397.                                     {{ 'カートに入れる'|trans }}
  398.                                 </button>
  399.                             </div>
  400.                         {% else %}
  401.                             <div class="ec-productRole__btn">
  402.                                 <button type="button" class="ec-blockBtn--action" disabled="disabled">
  403.                                     {{ 'ただいま品切れ中です。'|trans }}
  404.                                 </button>
  405.                             </div>
  406.                         {% endif %}
  407.                         {{ form_rest(form) }}
  408.                     </form>
  409.                     {% else %}
  410.                     <div class="mt-3"></div>
  411.                     {% endif %}
  412.                     
  413.                     <div class="ec-modal">
  414.                         <div class="ec-modal-overlay">
  415.                             <div class="ec-modal-wrap">
  416.                                 <span class="ec-modal-close"><span class="ec-icon"><img src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>
  417.                                 <div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>
  418.                                 <div class="ec-modal-box">
  419.                                     <div class="ec-role">
  420.                                         <span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>
  421.                                         <a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>
  422.                                     </div>
  423.                                 </div>
  424.                             </div>
  425.                         </div>
  426.                     </div>
  427.                     {% if BaseInfo.option_favorite_product %}
  428.                         <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post">
  429.                             <div class="ec-productRole__btn">
  430.                                 {% if is_favorite == false %}
  431.                                     <button type="submit" id="favorite" class="ec-blockBtn--cancel">
  432.                                         {{ 'お気に入りに追加'|trans }}
  433.                                     </button>
  434.                                 {% else %}
  435.                                     <button type="submit" id="favorite" class="ec-blockBtn--cancel"
  436.                                             disabled="disabled">{{ 'お気に入りに追加済です。'|trans }}
  437.                                     </button>
  438.                                 {% endif %}
  439.                             </div>
  440.                         </form>
  441.                     {% endif %}
  442.                     <div class="ec-productRole__description">{{ Product.description_detail|raw|nl2br }}
  443.                     </div>
  444.                 </div>
  445.             </div>
  446.         </div>
  447.         {% if Product.freearea %}
  448.              <div class="ec-productRole__description">
  449.                  {{ include(template_from_string(Product.freearea)) }}
  450.             </div>
  451.         {% endif %}
  452.     </div>
  453. {% endblock %}