setTimeout(() => popup.open=false,200))"
x-transition:enter="transition ease-out duration-200"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="transition ease-in duration-200"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
x-cloak
x-data="{
animate:false,
popup_step: 1,
email: '',
gdpr: null,
coupon: null,
applyDiscount(callback) {
axios
.post(
'/handler-router',
qs.stringify({
internal: true,
module: 'Form',
method: 'apply_popup_discount',
coupon: this.coupon
})
)
.then((response) => {
if (response.data.status === 'success') {
callback()
}
if(response.data.message) {
window.messages.add(response.data.status, response.data.message);
}
})
.catch((error) => {
console.error(error);
});
},
submitStep() {
axios
.post(
'/handler-router',
qs.stringify({
internal: true,
module: 'Form',
method: 'submit_popup_email',
email: this.email,
gdpr: this.gdpr ? 1 : 0,
gtm: JSON.stringify(Alpine.store('Tracking').gtm)
})
)
.then((response) => {
if (response.data.status === 'success') {
this.coupon = response.data.data.coupon
if(this.coupon) {
this.popup_step = 2;
} else {
this.popup_step = 3;
}
popup.available = false
popup.submited = true
localStorage.setItem('popup_hidden', true)
}
if(response.data.status !== 'success' && response.data.message) {
window.messages.add(response.data.status, response.data.message);
}
})
.catch((error) => {
console.error(error);
});
},
cancelStep(callback) {
axios
.post(
'/handler-router',
qs.stringify({
internal: true,
module: 'Form',
method: 'cancel_popup_email',
email: this.email,
gdpr: this.gdpr ? 1 : 0,
})
)
.then((response) => {
if (response.data.status === 'success') {
callback()
localStorage.setItem('popup_hidden', true)
}
if(response.data.status !== 'success' && response.data.message) {
window.messages.add(response.data.status, response.data.message);
}
})
.catch((error) => {
console.error(error);
});
}
}"
x-init="$nextTick (() => setTimeout(() => animate=true, popup.delay))"
>
Výborně, získáváte slevu!
Slevový kód aktivujete kliknutím na tlačítko níže. Nebo jej můžete zadat ručně v 1. kroku košíku.
Tento e-mail byl již vyplněn
Vaše e-mailová adresa byla již byla použita k vyplnění formuláře.