{% sw_extends '@Storefront/storefront/component/product/card/action.html.twig' %}
{% block component_product_box_action_inner %}
{{ parent() }}
{# Add to wishlist in listing as a button #}
{% if config('PremsWishlist.config.addToWishlistInListing') == 2 %}
{% block wishlist_listing_add_button %}
{% set isParent = product.childCount > 0 %}
{% if not isParent %}
{% block listing_wishlist_add_wishlist_modal_button %}
<span data-uri="{{ path('frontend.PremsWishlist.add.modal', {'productId': id}) }}"
rel="nofollow"
data-toggle="modal"
data-target="#prems-wishlist-modal-window"
data-product-id="{{ id }}"
class="btn btn-light wishlist-modal--button btn-block mt-3"
title="{{ "prems-wishlist.modal.add_to_wishlist"|trans }}">
{{ "prems-wishlist.modal.add_to_wishlist"|trans }}
</span>
{% endblock %}
{% endif %}
{% endblock %}
{% endif %}
{% endblock %}