{% if event is defined and event is not empty and event.event == 'eec.logging' %}
dataLayer.push({
'event': 'logowanie'
});
{% elseif event is defined and event is not empty and event.products is defined and event.products is not empty %}
dataLayer.push({
'event': '{{ event.event }}',
'ecommerce': {
{% if event.currencyCode is not empty %}
'currencyCode': '{{ event.currencyCode }}',
{% endif %}
{% if event.event == 'eec.prod_impression' %}
'impressions':
[
{% include 'google_analytics/products.html.twig' %}
]
{% else %}
'{{ event.action }}': {
{% if event.actionField is not empty %}
'actionField': {
{% if event.actionField.type == 'purchase' %}
'revenue': '{{ event.actionField.price }}',
'affiliation': '{{ event.actionField.affiliation }}',
{% if event.actionField.coupon is defined %}
'coupon': '{{ event.actionField.coupon }}',
{% endif %}
'id': '{{ event.actionField.id }}'
{% elseif event.actionField.type == 'step' %}
{% if event.actionField.option is not empty %}
'option': '{{ event.actionField.option }}',
{% endif %}
'step': '{{ event.actionField.step }}'
{% elseif event.actionField.type == 'list' %}
'list': '{{ event.actionField.list }}'
{% endif %}
},
{% endif %}
'products':
[
{% include 'google_analytics/products.html.twig' %}
]
}
{% endif %}
}
});
{% endif %}