{% sw_extends '@Storefront/storefront/component/product/card/action.html.twig' %}
{% block page_product_detail_product_buy_button %}
<button class="btn btn-block btn-buy btn-animated mx-auto"
title="{{ "listing.boxAddProduct"|trans|striptags }}">
<span class="button-text">{{ "listing.boxAddProduct"|trans|sw_sanitize }}</span>
{% sw_icon 'arrow-right' style {
'color': 'primary'
} %}
</button>
{% endblock %}
{% block component_product_box_action_detail %}
<a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
class="btn btn-outline-primary btn-animated mx-auto"
title="{{ "listing.boxProductDetails"|trans|striptags }}">
<span class="button-text">{{ "listing.boxProductDetails"|trans|sw_sanitize }}</span>
{% sw_icon 'arrow-right' style {
'color': 'primary'
} %}
</a>
{% endblock %}
{% block component_product_box_action_inner %}
{% set nb_is_por = product.extensions.nimbits_por.is_por %}
{% set nb_show_price = product.extensions.nimbits_por.show_price %}
{% set showPrice = config('WebkulShowPriceAfterLogin.config.status') %}
{% set categorySetting = config('WebkulShowPriceAfterLogin.config.categorySetting') %}
{% set productRedirectPathPara = app.request.attributes.get('_route_params') %}
{% set productRedirectPath = app.request.attributes.get('_route') %}
{% set allowedCategories = config('WebkulShowPriceAfterLogin.config.categoryIds') %}
{% set addtocartLabel = config('WebkulShowPriceAfterLogin.config.addtocartlabel') %}
{% set addtocartlabelStatus = config('WebkulShowPriceAfterLogin.config.addtocartlabelStatus') %}
{% if config('WebkulShowPriceAfterLogin.config.configPriority') == 'product' %}
{% if product.customFields['show_price_enabled'] %}
{% set showPrice = false %}
{% endif %}
{% if product.customFields['show_price_cart_label_status'] and product.customFields['show_price_cart_title'] %}
{% set buttonTitle = product.customFields['show_price_cart_title'] %}
{% elseif addtocartlabelStatus and addtocartLabel %}
{% set buttonTitle = addtocartLabel %}
{% elseif not nb_show_price and nb_is_por %}
{% set buttonTitle = 'webkul.information.buyButtonLabel_Request'|trans %}
{% else %}
{% set buttonTitle = 'webkul.information.buyButtonLabel'|trans %}
{% endif %}
{% else %}
{% if addtocartlabelStatus and addtocartLabel %}
{% set buttonTitle = addtocartLabel %}
{% elseif not nb_show_price and nb_is_por %}
{% set buttonTitle = 'webkul.information.buyButtonLabel_Request'|trans %}
{% else %}
{% set buttonTitle = 'webkul.information.buyButtonLabel'|trans %}
{% endif %}
{% endif %}
{% set foundCategory = false %}
{% for category in product.categoryTree %}
{% if category in allowedCategories %}
{% set foundCategory = true %}
{% endif %}
{% endfor %}
{% if categorySetting and foundCategory %}
{% set showPrice = false %}
{% endif %}
{% if not context.customer and showPrice %}
<div>
<a href="{{ path('frontend.account.login.page') }}"
title="{{ buttonTitle }}"
class="btn btn-block btn-buy">
{{ buttonTitle }}
</a>
</div>
{% else %}
<div>
<a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
class="btn btn-outline-primary btn-animated btn-block btn-buy btn-nb-pricerequest-listing"
title="{{ "listing.boxProductDetails"|trans|striptags }}">
<span class="button-text">{{ "listing.boxProductDetails"|trans|sw_sanitize }}</span>
{% sw_icon 'arrow-right' style {
'color': 'primary'
} %}
</a>
</div>
{% endif %}
{% endblock %}