{# Google Analytics 4 #}
{% if event != null %}
if (typeof gtag === 'function') {
gtag('event', '{{ event.name }}', {
'items': [{% include 'google_analytics/items_v4.html.twig' %}],
{% if event.transactionId is not empty %}
'transaction_id': '{{ event.transactionId }}',
{% endif %}
{% if event.affiliation is not empty %}
'affiliation': '{{ event.affiliation }}',
{% endif %}
{% if event.value is not empty %}
'value': '{{ event.value }}',
{% endif %}
{% if event.currency is not empty %}
'currency': '{{ event.currency }}',
{% endif %}
{% if event.coupon is not empty %}
'coupon': '{{ event.coupon }}',
{% endif %}
});
}
{% endif %}