@salla.sa/twilight-components
Version:
Salla Web Component
739 lines (738 loc) • 38.9 kB
JavaScript
/*!
* Crafted with ❤ by Salla
*/
import anime from "animejs";
import { h } from "@stencil/core";
import Images from "../../assets/svg/images.svg";
import LeftArrow from "../../assets/svg/arrow-left.svg";
import Cancel from "../../assets/svg/cancel.svg";
import GiftSharing from "../../assets/svg/gift-sharing.svg";
import Alert from "../../assets/svg/alert.svg";
/**
* @slot widget-btn-content - Used to customize widget button content.
*/
export class SallaGifting {
constructor() {
this.defaultEvent = "gifting:open";
this.selectImageForYourGift = salla.lang.get('blocks.buy_as_gift.select_image_or_upload');
this.currentStep = 1;
this.showCalendar = false;
this.showGiftText = false;
this.currentLang = '';
this.parentClass = "is-current-step-1";
this.errors = {};
this.gift = undefined;
this.selectedGiftTextOption = undefined;
this.selectedCountryId = undefined;
this.selectedCountryCode = undefined;
this.loadingCities = false;
this.showTextArea = false;
/// Gift Form Data
this.selectedImage = undefined;
this.uploadedImage = undefined;
this.selectedText = undefined;
this.hasError = false;
this.timeZone = null;
this.receiverCountryCode = salla.config.get('store.scope.countries')?.[0] || salla.config.get('store.store_country') || 'SA';
this.hostId = `salla-gifting-${Math.random().toString(36).slice(2, 10)}`;
/**
* The form selector to be used to get the form data
*/
this.formSelector = 'form.product-form, form.form--product-options';
salla.lang.onLoaded(() => {
this.selectImageOrUpload = salla.lang.get('blocks.buy_as_gift.select_image_or_upload');
this.selectImageForYourGift = salla.lang.get('blocks.buy_as_gift.select_image_for_your_gift');
this.sectionTitle = salla.lang.get('blocks.buy_as_gift.gift_the_one_you_love');
this.sectionSubtitle = salla.lang.get('blocks.buy_as_gift.gift_the_one_you_love_message');
this.sectionBtnText = salla.lang.get('blocks.buy_as_gift.send_as_a_gift');
this.giftDetails = salla.lang.get('blocks.buy_as_gift.gift_details');
this.selectGiftMessage = salla.lang.get('blocks.buy_as_gift.select_gift_message');
this.giftCustomText = salla.lang.get('blocks.buy_as_gift.gift_custom_text');
this.textId = salla.lang.get('blocks.buy_as_gift.text_id');
this.incorrectGiftText = salla.lang.get('blocks.buy_as_gift.incorrect_gift_text');
this.nextStep = salla.lang.get('blocks.buy_as_gift.next_step');
this.senderNameLabel = salla.lang.get('blocks.buy_as_gift.sender_name');
this.receiverNameFieldLabel = salla.lang.get('blocks.buy_as_gift.receiver_name');
this.receiverMobileFieldLabel = salla.lang.get('blocks.buy_as_gift.receiver_mobile');
this.receiverCountryFieldLabel = salla.lang.get('blocks.buy_as_gift.receiver_country');
this.ksa = salla.lang.get('pages.checkout.ksa');
this.selectCity = salla.lang.get('pages.checkout.select_city');
this.selectCountry = salla.lang.get('pages.checkout.select_country');
this.selectCityInfo = salla.lang.get('blocks.buy_as_gift.city_info');
this.receiverCityFieldLabel = salla.lang.get('blocks.buy_as_gift.receiver_city');
this.receiverEmailFieldLabel = salla.lang.get('blocks.buy_as_gift.receiver_email');
this.emailPlaceholder = salla.lang.get('common.elements.email_placeholder');
this.sendLater = salla.lang.get('blocks.buy_as_gift.send_later');
this.selectSendDateAndTime = salla.lang.get('blocks.buy_as_gift.select_send_date_and_time');
this.canNotEditOrderAfterSelectDate = salla.lang.get('blocks.buy_as_gift.can_not_edit_order_after_select_date');
this.sendGift = salla.lang.get('blocks.buy_as_gift.send_gift');
this.donationRequired = salla.lang.get('pages.products.donation_amount_required');
this.currentLang = salla.lang.locale;
});
salla.event.on(this.defaultEvent, () => {
this.open();
});
}
componentDidLoad() {
salla.event.product.onPriceUpdated(() => {
const quantityInput = document.querySelector(`.s-quantity-input-input`);
// @ts-ignore
this.quantity = quantityInput?.value;
});
}
getFormDataFromForm() {
if (!this.formSelector)
return null;
const form = document.querySelector(this.formSelector);
if (!form)
return null;
return new FormData(form);
}
mergeObjectToFormData(obj, formData, namespace) {
for (let property in obj) {
if (!obj.hasOwnProperty(property) || obj[property] === undefined || obj[property] === null)
continue;
const formKey = namespace ? `${namespace}[${property}]` : property;
if (typeof obj[property] === 'object' && obj[property] !== null && !(obj[property] instanceof File)) {
this.mergeObjectToFormData(obj[property], formData, formKey);
}
else {
formData.set(formKey, obj[property]);
}
}
return formData;
}
/**
* Show / Open the gifting modal window
*/
async open() {
if (salla.config.isGuest()) {
salla.api.auth.setAfterLoginEvent(this.defaultEvent);
salla.event.dispatch('login::open', { withoutReload: true });
return;
}
await this.modal.open();
// Determine the appropriate method to call based on the `physicalProducts` flag
const giftDetailsMethod = this.productId ? () => salla.product.getGiftProductDetails(this.productId) : () => salla.cart.getGiftCartDetails();
return await salla.api.withoutNotifier(giftDetailsMethod)
.then((response) => {
this.gift = response.data;
this.senderName = this.gift.sender_name;
})
.catch(e => {
this.hasError = true;
this.errorMessage = e.response?.data?.error?.message || e.response?.data;
})
.finally(() => this.modal.stopLoading());
}
/**
*
* Hide / close the gifting modal window
*/
async close() {
return this.modal.close();
}
/**
* Update the modal height based on the changes on the inner elements height for a specific step OR just a pass a new fixed height
*/
async setWrapperHeight(asStep = 1, delay = 250, additionSpace = 0, newHeight = 0) {
let currentStep = document.querySelector(`#${this.hostId} .gift-step-${asStep}`);
setTimeout(() => {
let currentStepHeight = currentStep.offsetHeight;
if (newHeight) {
this.stepsWrapper.style.height = `${newHeight}px`;
}
else {
this.stepsWrapper.style.height = currentStepHeight + additionSpace + 'px';
}
}, delay);
}
toggleCalendar() {
this.showCalendar = !this.showCalendar;
this.setWrapperHeight(2, 150, 0);
}
toggleGiftText(event) {
this.textSelect?.classList.remove('s-form-has-error');
let dataID = event.target.children[event.target.selectedIndex].getAttribute('data-id');
let customID = dataID == "custom";
this.showGiftText = customID;
if (dataID) {
this.selectedGiftTextOption = dataID;
customID ? this.selectedText = undefined : this.selectedText = event.target.value;
this.setWrapperHeight(1, 150, 5);
}
else {
// empty textarea value
this.textArea.value = '';
this.selectedText = undefined;
this.selectedGiftTextOption = undefined;
this.setWrapperHeight(1, 150, -15);
}
}
/**
*
* Go to the step 2
*/
async goToStep2() {
if (!this.selectedGiftTextOption) {
this.textSelect.classList.add('s-form-has-error');
this.customTextArea.classList.remove('s-form-has-error');
return;
}
else if (this.selectedGiftTextOption == 'custom' && !this.selectedText) {
this.textSelect.classList.remove('s-form-has-error');
this.customTextArea.classList.add('s-form-has-error');
return;
}
else {
this.textSelect.classList.remove('s-form-has-error');
this.customTextArea.classList.remove('s-form-has-error');
}
this.setWrapperHeight(2, 600, 0);
let stepNextAnime = new anime.timeline();
stepNextAnime.add({
targets: this.step1Elems.querySelectorAll(`#${this.hostId} .anime-item`),
opacity: [1, 0],
translateX: [0, 50],
delay: anime.stagger(70),
// easing: 'easeOutExpo',
duration: 1200,
})
.add({
targets: '.gift-step-2',
translateX: ['-110%', 0],
opacity: [0, 1],
}, '-=1800')
.add({
targets: this.step2Elems.querySelectorAll(`#${this.hostId} .anime-item`),
opacity: [0, 1],
translateX: [-50, 0],
delay: anime.stagger(70),
duration: 1200,
complete: () => {
this.step2Elems.querySelectorAll(`#${this.hostId} .anime-item`).forEach(item => {
item.classList.remove('opacity-0');
item.removeAttribute('style');
});
}
}, '-=1200');
this.currentStep = 2;
this.parentClass = `is-current-step-${this.currentStep}`;
}
/**
*
* Go to the step 1
*/
goToStep1(e) {
e.preventDefault();
let stepBackAnime = new anime.timeline({
autoplay: false,
});
stepBackAnime.add({
targets: this.step2Elems.querySelectorAll(`#${this.hostId} .anime-item`),
opacity: [1, 0],
translateX: [0, -50],
delay: anime.stagger(70),
// easing: 'easeOutExpo',
duration: 1200,
})
.add({
targets: '.gift-step-1',
translateX: ['110%', 0],
opacity: [0, 1],
}, '-=1800')
.add({
targets: this.step1Elems.querySelectorAll(`#${this.hostId} .anime-item`),
opacity: [0, 1],
translateX: [50, 0],
delay: anime.stagger(70),
duration: 1200,
complete: () => {
this.step1Elems.querySelectorAll(`#${this.hostId} .anime-item`).forEach(item => {
item.classList.remove('opacity-0');
item.removeAttribute('style');
});
}
}, '-=1200');
stepBackAnime.play();
this.setWrapperHeight(1, 600, 0);
this.currentStep = 1;
this.parentClass = `is-current-step-${this.currentStep}`;
}
getFilepondPlaceholder() {
return `<div class="s-gifting-filepond-placeholder"><span class="s-gifting-filepond-placeholder-icon">${Images}</span><p class="s-gifting-filepond-placeholder-text">${this.selectImageOrUpload ? this.selectImageOrUpload : ''}</p></div>`;
}
setPreview(image) {
this.uploader?.classList.add('has-bg');
var bg = document.querySelector(`#${this.hostId}.filepond-bg`) ? document.querySelector(`#${this.hostId} .filepond-bg`) : document.createElement('div');
bg.classList.add('filepond-bg');
bg.classList.remove('s-hidden');
bg.style.backgroundImage = "url('" + image.url + "')";
this.uploader?.querySelector('.filepond--root')?.appendChild(bg);
this.uploadedImage = image.url;
if (!!this.gift && this.gift.gift_images.length) {
this.setWrapperHeight(1, 150, 0);
}
}
removePreview() {
this.uploader.classList.remove('has-bg');
let bg = document.querySelector(`#${this.hostId} .filepond-bg`);
bg.removeAttribute('style');
bg.classList.add('s-hidden');
this.handleRemoveImage();
}
handleTextAreaChange(event) {
this.selectedText = event.target.value;
this.customTextArea.classList.remove('s-form-has-error');
}
clearError(key) {
if (this.errors?.[key]) {
const { [key]: _, ...rest } = this.errors;
this.errors = rest;
}
}
handleSenderName(event) {
this.senderName = event.target.value;
this.clearError('sender_name');
}
handleReceiverName(event) {
this.receiverName = event.target.value;
this.clearError('receiver.name');
}
handleReceiverCity(event) {
this.receiverCity = event.target.value;
this.clearError('receiver.city_id');
}
async handleCountryChange(event) {
const countryId = event.target.value;
this.selectedCountryId = countryId;
this.clearError('receiver.country');
// Find the selected country and store its country_code
const selectedCountry = this.gift?.countries?.find(country => country.id == countryId);
this.selectedCountryCode = selectedCountry?.country_code;
if (!countryId || this.gift?.countries?.length === 0) {
this.gift = { ...this.gift, cities: [] };
this.receiverCity = undefined;
this.selectedCountryCode = undefined;
return;
}
this.loadingCities = true;
this.gift = { ...this.gift, cities: [] };
this.receiverCity = undefined;
try {
const response = await salla.api.request(`shipping/cities?for_branch=0&country_id=${countryId}`);
if (response && response.data) {
this.gift = { ...this.gift, cities: response.data };
}
}
catch (error) {
console.error('Error fetching cities:', error);
}
finally {
this.loadingCities = false;
}
}
handleUploadImage(img) {
this.uploadedImage = img;
if (!!this.gift && this.gift.gift_images.length) {
this.setWrapperHeight(1, 150, 0);
}
}
handleRemoveImage() {
this.uploadedImage = '';
if (!!this.gift && this.gift.gift_images.length) {
this.setWrapperHeight(1, 150, 0);
}
}
// private handleReceiverEmail(event) {
// this.receiverEmail = event.target.value;
// }
handlePhoneInputChange(event) {
let phone = event.detail;
this.receiverMobile = phone.number;
this.receiverCountryCode = phone.country_code;
this.clearError('receiver.mobile');
}
handleDateTimePicker(event) {
this.deliveryDate = event.detail;
}
getCalendarClasses() {
return {
"s-form-group": true,
"anime-item": true,
"s-gifting-calendar": true,
"shown": this.showCalendar,
"hide": !this.showCalendar,
"s-form-has-error": !!this.errors && this.errors['deliver_at']
};
}
async submitForm() {
// @ts-ignore
const donatingAmount = (document.querySelector(`#donating-amount`))?.value;
this.calendarFormGroup.classList.remove('s-form-has-error');
if (!!this.errors) {
this.errors = {};
this.setWrapperHeight(2, 150, 0);
}
if (this.showCalendar && !this.deliveryDate) {
this.calendarFormGroup.classList.add('s-form-has-error');
return;
}
// Validate required fields
const requiredFields = [
{ key: 'sender_name', value: this.senderName, label: this.senderNameLabel },
{ key: 'receiver.name', value: this.receiverName, label: this.receiverNameFieldLabel },
{ key: 'receiver.mobile', value: this.receiverMobile, label: this.receiverMobileFieldLabel },
...(this.physicalProducts ? [
{ key: 'receiver.country', value: this.selectedCountryId, label: this.receiverCountryFieldLabel },
{ key: 'receiver.city_id', value: this.receiverCity, label: this.receiverCityFieldLabel },
] : []),
];
const validationErrors = {};
requiredFields.forEach(({ key, value, label }) => {
if (!value) {
validationErrors[key] = salla.lang.get('common.errors.field_required', { attribute: label });
}
});
if (Object.keys(validationErrors).length) {
this.errors = validationErrors;
this.setWrapperHeight(2, 150, 0);
return;
}
const giftPayload = {
text: this.selectedText,
sender_name: this.senderName,
quantity: this.quantity,
deliver_at: this.showCalendar ? this.deliveryDate : null,
image_url: this.uploadedImage ?? this.selectedImage,
donation_amount: donatingAmount ? donatingAmount : null,
receiver: {
name: this.receiverName,
mobile_country_code: this.receiverCountryCode,
mobile: this.receiverMobile,
...(this.physicalProducts && this.selectedCountryCode ? { country_code: this.selectedCountryCode } : {}),
...(this.receiverCity && this.physicalProducts ? { city_id: this.receiverCity } : {})
},
has_apple_pay: salla.helpers.hasApplePay(),
};
let formData;
if (this.productId && this.formSelector) {
formData = this.getFormDataFromForm() || new FormData();
formData = this.mergeObjectToFormData(giftPayload, formData);
}
const addGiftMethod = this.productId
? () => salla.product.addProductGiftToCart(this.productId, formData, true)
: () => salla.cart.addCartGiftToCart(giftPayload, true);
return await addGiftMethod()
.then(() => this.modal.close())
.catch((e) => {
if (e.response && e.response.status == 422) {
this.errors = e.response.data.error.fields;
}
else {
console.log(e);
}
this.setWrapperHeight(2, 150, 0);
});
}
generateClass() {
return {
"s-gifting-widget": true,
"s-gifting-widget-vertical": !!this.vertical,
"s-gifting-widget-horizontal": !this.vertical
};
}
async handleGiftButtonClick() {
if (!!this.productId && this.formSelector) {
const form = document.querySelector(this.formSelector);
if (!form) {
console.error('SallaGifting:: Form not found in the document!');
return;
}
if (!(form instanceof HTMLFormElement)) {
console.error('SallaGifting:: The specified selector does not correspond to a form tag!');
return;
}
if (!form.reportValidity()) {
console.error('SallaGifting:: Form is not valid!');
salla.error(salla.lang.get('common.messages.required_fields'));
return;
}
}
const optionsElement = document.querySelector(`salla-product-options[product-id="${this.productId}"]`);
if (optionsElement && !(await optionsElement.reportValidity())) {
salla.error(salla.lang.get('common.messages.required_fields'));
return;
}
this.open();
}
render() {
return [
h("div", { key: '5959120e43b44cd294d9466003422efb26090897' }, h("salla-list-tile", { key: '6ba52f5157d734e4c8443a9b4a59703d69eb8e84', class: this.generateClass() }, h("div", { key: '26130f1b0e64f7dcc488f2865a19c04c4da28afe', slot: "title" }, this.vertical ? h("span", { innerHTML: GiftSharing }) : '', h("h3", { key: 'b26949ce590efdeb7d364bbb65f04cc2e58eb396' }, !!this.widgetTitle ? this.widgetTitle : this.sectionTitle)), h("div", { key: 'bfa36868bc7681aa8fb218dcaa032a414609413c', slot: "subtitle" }, h("div", { key: 'b070fb428965fd7f2f58573970d5d0604564f682' }, !!this.widgetSubtitle ? this.widgetSubtitle : this.sectionSubtitle)), h("div", { key: '343729605e7b97a7a35e63ca26b46ef2b48d5d8e', slot: "action" }, h("salla-button", { key: 'f8d6e1d5f60ea02a271b504fd3daa36215e9a8f3', color: "primary", fill: "outline", width: "wide", class: "s-gifting-widget-action", onClick: () => this.handleGiftButtonClick() }, h("slot", { key: 'c9cc5ec40b0e09aa99e15f464701deb5c9a3f486', name: "widget-btn-content" }, h("div", { key: '5b431294450b2c45bc5b3503e022d03872cd4252', class: "s-gifting-widget-action-content" }, h("span", { key: '4397140781cf6e311de760e384e1b0f3f429eeeb', innerHTML: GiftSharing }), " \u00A0", h("span", { key: 'e993b5010cca3eb5c09ab6abc592d29c149292bb' }, this.sectionBtnText)))))), h("salla-modal", { key: '13a1010f08acd0c9ef7bdd4eafd3488ae083b0a4', id: this.hostId, isLoading: true, class: "s-gifting-modal", width: "sm", ref: modal => this.modal = modal }, h("div", { key: '0eea1fa6d0ea8240d198e8e7fdd68dc7327fa817', slot: "loading" }, h("div", { key: '9e98de0165db06a39e51984419cb93dcb4bd40ad', class: "s-gifting-skeleton" }, h("div", { key: 'd302e19b737bc272ccece10bfca0eb019b6ca2cf', class: "s-gifting-modal-header" }, h("salla-skeleton", { key: '787d98c862475e7a263d4d501842d0b769e9be4a', type: 'circle', height: '5rem', width: '5rem' }), h("h2", { key: '86b67bbbe29fe5b1bad587432652f36480269c86', class: "s-gifting-modal-title" }, h("div", { key: 'af9eb2262a435ce110e355b75f5c0ebdd2a3acdc', class: "s-gifting-modal-badge-wrapper" }, h("salla-skeleton", { key: '9311ddd1eb3afdc7c02530451eafc27bbba8b776', height: '15px', width: '150px' })))), h("div", { key: '5c87083930311249c7ea735697c3c7d20be4b2e7', class: "s-gifting-skeleton-content" }, h("salla-skeleton", { key: 'f42adea83216bc972863bd56c5ba0b5f02df6eb1', height: '10px', width: '150px' }), h("salla-skeleton", { key: '7781766e62dedadff68943e69bc97b54fe6eb22b', height: '230px' }), h("salla-skeleton", { key: 'a61810158f2edf8b0f7ed0f44c4985ca1f4b01e7', height: '10px', width: '150px' }), h("salla-skeleton", { key: '2f2763deca90fcfe66a462befbfb7072decf63c1', height: '30px' }), h("salla-skeleton", { key: '2f34b53353830532c900e70660a81d9124bbc1e8', height: '40px' })))), h("slot", { key: 'd6f51bf3ee6a11019d25150e26c45fa80a534c43', name: "header" }), !!this.hasError ?
h("salla-placeholder", { alignment: "center" }, h("span", { slot: "title" }, this.errorMessage || salla.lang.get('common.errors.empty_results')), h("span", { slot: "description" }, " "))
:
[
h("div", { class: "s-gifting-modal-header" }, h("span", { class: "s-gifting-modal-icon" }, h("span", { innerHTML: GiftSharing })), h("h2", { class: "s-gifting-modal-title" }, h("div", { class: "s-gifting-modal-badge-wrapper" }, h("div", { class: "s-gifting-modal-badge" }, h("span", null, h("span", null, this.currentStep), "/2")), h("span", null, this.giftDetails)))),
h("div", { class: "s-gifting-steps-wrapper " + this.parentClass, ref: el => this.stepsWrapper = el }, h("div", { class: "s-gifting-step-one gift-step-1", ref: el => this.step1Elems = el }, h("div", { class: "s-gifting-modal-uploader-title anime-item" }, this.selectImageForYourGift), h("div", { class: "s-gifting-modal-uploader anime-item", ref: el => this.uploader = el }, h("span", { class: "s-gifting-remove-preview", onClick: () => this.removePreview(), innerHTML: Cancel }), this.selectImageOrUpload && h("salla-file-upload", { "instant-upload": true, name: "image_url", url: salla.url.api(salla.product.api.getUrl('giftImage')), onUploaded: event => this.handleUploadImage(event.detail), labelIdle: this.getFilepondPlaceholder(), onRemoved: () => this.handleRemoveImage() })), h("div", { class: "anime-item" }, !this.uploadedImage && !!this.gift && !!this.gift.gift_images && this.gift.gift_images.length > 0 ?
h("salla-slider", { id: "gifting-slider", loop: false, "controls-outer": true, class: "s-gifting-slider", type: "carousel" }, h("div", { slot: "items" }, this.gift && this.gift.gift_images ?
this.gift?.gift_images.map((item) => h("a", { class: "s-gifting-clickable s-gifting-image", onClick: () => this.setPreview(item) }, h("img", { style: { "width": "120px" }, src: item.url, alt: `${item.id}` }))) : ''))
: ""), h("div", { class: "anime-item" }, h("div", { class: "s-form-group s-gifting-selectText", ref: el => this.textSelect = el }, h("select", { id: "gift-text-selection", name: "gift-text-selection", class: "s-form-control s-gifting-select", onChange: e => this.toggleGiftText(e) }, h("option", { "data-id": null, selected: true }, this.selectGiftMessage), this.gift && this.gift.gift_texts ?
this.gift?.gift_texts.map((txt) => h("option", { "data-id": txt.id, value: txt.text, key: txt.id }, txt.text)) : '', h("option", { "data-id": "custom" }, this.giftCustomText))), h("div", { class: this.showGiftText ? "s-form-group s-gifting-textarea shown" : "s-form-group s-gifting-textarea hide", ref: (el) => this.customTextArea = el }, h("label", { htmlFor: "gift-custom-text", class: "s-form-label" }, this.giftCustomText), h("div", { class: "mt-1" }, h("textarea", { onInput: (event) => this.handleTextAreaChange(event), rows: 4, ref: (el) => this.textArea = el, name: "gift-custom-text", id: "gift-custom-text", class: "s-form-control" })))), h("div", { class: "anime-item" }, h("salla-button", { color: "primary", width: "wide", onClick: () => this.goToStep2() }, h("span", null, this.nextStep)))), h("div", { class: "s-gifting-step-two gift-step-2", ref: el => this.step2Elems = el }, h("div", { class: this.errors && this.errors['sender_name'] ? "s-form-group s-form-has-error anime-item opacity-0" : "s-form-group anime-item opacity-0" }, h("label", { htmlFor: "sender_name", class: "s-form-label" }, this.senderNameLabel), h("input", { type: "text", class: "s-form-control", name: "sender_name", id: "sender_name", value: this.senderName, onInput: (event) => this.handleSenderName(event), placeholder: "" }), this.errors && this.errors['sender_name'] ?
h("span", { class: "s-gifting-error" }, this.errors['sender_name']) : ''), h("div", { class: this.errors && this.errors['receiver.name'] ? "s-form-group s-form-has-error anime-item opacity-0" : "s-form-group anime-item opacity-0" }, h("label", { htmlFor: "receiver_name", class: "s-form-label" }, this.receiverNameFieldLabel), h("input", { type: "text", class: "s-form-control", name: "receiver_name", id: "receiver_name", value: "", onInput: (event) => this.handleReceiverName(event), placeholder: "" }), this.errors && this.errors['receiver.name'] ?
h("span", { class: "s-gifting-error" }, this.errors['receiver.name']) : ''), h("div", { class: this.errors && this.errors['receiver.mobile'] ? "s-form-group s-form-has-error anime-item opacity-0" : "s-form-group anime-item opacity-0" }, h("label", { class: "s-form-label" }, this.receiverMobileFieldLabel), h("salla-tel-input", { class: "s-gifting-tel-input", phone: this.receiverMobile, countryCode: this.receiverCountryCode, onPhoneEntered: (e) => this.handlePhoneInputChange(e) }), this.errors && this.errors['receiver.mobile'] ?
h("span", { class: "s-gifting-error" }, this.errors['receiver.mobile']) : ''), this.physicalProducts &&
h("div", null, h("div", { class: this.errors && this.errors['receiver.country'] ? "s-form-group s-form-has-error anime-item opacity-0" : "s-form-group anime-item opacity-0" }, h("label", { class: "s-form-label" }, this.receiverCountryFieldLabel), h("select", { name: "country", class: "s-form-control", onChange: (event) => this.handleCountryChange(event), required: true }, h("option", { value: "" }, this.selectCountry), this.gift?.countries?.map((country) => (h("option", { value: country.id }, country.name)))), this.errors && this.errors['receiver.country'] ?
h("span", { class: "s-gifting-error" }, this.errors['receiver.country']) : ''), h("div", { class: this.errors && this.errors['receiver.city_id'] ? "s-form-group s-form-has-error anime-item opacity-0" : "s-form-group anime-item opacity-0" }, h("label", { class: "s-form-label" }, this.receiverCityFieldLabel), h("select", { name: "city", "aria-label": salla.lang.get('blocks.buy_as_gift.select_city'), class: "s-form-control", onChange: (event) => this.handleReceiverCity(event), disabled: this.loadingCities }, h("option", { value: "", selected: true }, this.loadingCities ? salla.lang.get('common.elements.loading') : this.selectCity), this.gift?.cities?.map((city) => (h("option", { value: city.id }, city.name)))), this.errors && this.errors['receiver.city_id'] ?
h("span", { class: "s-gifting-error" }, this.errors['receiver.city_id']) : ''), h("div", { class: "s-gifting-info anime-item opacity-0" }, h("span", { innerHTML: Alert }), h("span", null, this.selectCityInfo))), !this.physicalProducts && h("div", { class: "anime-item opacity-0" }, h("label", { class: "s-gifting-schedule s-gifting-clickable", htmlFor: `schedule-${this.hostId}` }, h("input", { type: "checkbox", name: 'schedule', id: `schedule-${this.hostId}`, onChange: () => this.toggleCalendar(), class: "s-checkbox" }), h("span", { class: "s-form-label" }, " ", this.sendLater, " "))), h("div", { class: this.getCalendarClasses(), ref: (el) => this.calendarFormGroup = el }, h("label", { class: "s-form-label" }, this.selectSendDateAndTime), h("salla-datetime-picker", { value: this.deliveryDate, placeholder: this.selectSendDateAndTime, "enable-time": true, "date-format": "Y-m-d h:i K", onPicked: (event) => this.handleDateTimePicker(event) }), h("span", { class: "s-gifting-calendar-hint" }, this.canNotEditOrderAfterSelectDate)), h("div", { class: "s-gifting-step-two-footer anime-item opacity-0" }, h("a", { href: "#!", innerHTML: LeftArrow, onClick: (e) => this.goToStep1(e) }), h("salla-button", { onClick: () => this.submitForm(), color: "primary", width: 'wide' }, h("span", null, this.sendGift)))))
], h("slot", { key: 'a08d6d434a1d144bd7aa5d3b13754980083a3f4d', name: "footer" })))
];
}
static get is() { return "salla-gifting"; }
static get originalStyleUrls() {
return {
"$": ["salla-gifting.scss"]
};
}
static get styleUrls() {
return {
"$": ["salla-gifting.css"]
};
}
static get properties() {
return {
"productId": {
"type": "number",
"attribute": "product-id",
"mutable": false,
"complexType": {
"original": "number",
"resolved": "number",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "The product id for which the gifting system is required."
},
"getter": false,
"setter": false,
"reflect": false
},
"widgetTitle": {
"type": "string",
"attribute": "widget-title",
"mutable": false,
"complexType": {
"original": "string",
"resolved": "string",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "Widget title"
},
"getter": false,
"setter": false,
"reflect": false
},
"widgetSubtitle": {
"type": "string",
"attribute": "widget-subtitle",
"mutable": false,
"complexType": {
"original": "string",
"resolved": "string",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "Widget subtitle"
},
"getter": false,
"setter": false,
"reflect": false
},
"physicalProducts": {
"type": "boolean",
"attribute": "physical-products",
"mutable": false,
"complexType": {
"original": "boolean",
"resolved": "boolean",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "Is Physcial products"
},
"getter": false,
"setter": false,
"reflect": false
},
"vertical": {
"type": "boolean",
"attribute": "vertical",
"mutable": false,
"complexType": {
"original": "boolean",
"resolved": "boolean",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "Is Vertical widget"
},
"getter": false,
"setter": false,
"reflect": false
},
"formSelector": {
"type": "string",
"attribute": "form-selector",
"mutable": true,
"complexType": {
"original": "string",
"resolved": "string",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "The form selector to be used to get the form data"
},
"getter": false,
"setter": false,
"reflect": false,
"defaultValue": "'form.product-form, form.form--product-options'"
}
};
}
static get states() {
return {
"sectionTitle": {},
"sectionSubtitle": {},
"sectionBtnText": {},
"giftDetails": {},
"selectImageForYourGift": {},
"selectImageOrUpload": {},
"selectGiftMessage": {},
"giftCustomText": {},
"textId": {},
"incorrectGiftText": {},
"nextStep": {},
"senderNameLabel": {},
"receiverNameFieldLabel": {},
"receiverMobileFieldLabel": {},
"receiverCountryFieldLabel": {},
"ksa": {},
"selectCountry": {},
"selectCity": {},
"selectCityInfo": {},
"receiverCityFieldLabel": {},
"receiverEmailFieldLabel": {},
"emailPlaceholder": {},
"sendLater": {},
"selectSendDateAndTime": {},
"canNotEditOrderAfterSelectDate": {},
"sendGift": {},
"donationRequired": {},
"currentStep": {},
"showCalendar": {},
"showGiftText": {},
"currentLang": {},
"parentClass": {},
"errors": {},
"gift": {},
"selectedGiftTextOption": {},
"selectedCountryId": {},
"selectedCountryCode": {},
"loadingCities": {},
"parsedFormData": {},
"showTextArea": {},
"selectedImage": {},
"uploadedImage": {},
"selectedText": {},
"senderName": {},
"errorMessage": {},
"hasError": {},
"quantity": {},
"deliveryDate": {},
"timeZone": {},
"receiverName": {},
"receiverMobile": {},
"receiverCountryCode": {},
"receiverEmail": {},
"hostId": {},
"receiverCity": {}
};
}
static get methods() {
return {
"open": {
"complexType": {
"signature": "() => Promise<any>",
"parameters": [],
"references": {
"Promise": {
"location": "global",
"id": "global::Promise"
}
},
"return": "Promise<any>"
},
"docs": {
"text": "Show / Open the gifting modal window",
"tags": []
}
},
"close": {
"complexType": {
"signature": "() => Promise<HTMLElement>",
"parameters": [],
"references": {
"Promise": {
"location": "global",
"id": "global::Promise"
},
"HTMLElement": {
"location": "global",
"id": "global::HTMLElement"
}
},
"return": "Promise<HTMLElement>"
},
"docs": {
"text": "\nHide / close the gifting modal window",
"tags": []
}
},
"goToStep2": {
"complexType": {
"signature": "() => Promise<void>",
"parameters": [],
"references": {
"Promise": {
"location": "global",
"id": "global::Promise"
}
},
"return": "Promise<void>"
},
"docs": {
"text": "\nGo to the step 2",
"tags": []
}
}
};
}
}