JezK
Edit File: sc-compact-address_18.entry.js
import { r as registerInstance, c as createEvent, h, a as getElement, H as Host, F as Fragment } from './index-25e5af33.js'; import { g as getCountryDetails, c as countryChoices } from './address-b8e2e4c8.js'; import { r as reportChildrenValidity, F as FormSubmitController } from './form-data-76641f16.js'; import { g as getCurrentUserCountryCode } from './google-maps-e8b00ffd.js'; import { o as onChange, s as state, u as updateFormState } from './mutations-9ffd30f4.js'; import { f as formBusy, a as formLoading } from './getters-4bb6cc1b.js'; import { s as state$1 } from './store-b1758b00.js'; import { o as openWormhole } from './consumer-f1775a76.js'; import { l as lockCheckout, b as unLockCheckout, r as removeCheckoutLineItem, a as addCheckoutLineItem, t as trackOrderBump } from './mutations-ae7167ad.js'; import { c as createOrUpdateCheckout } from './index-a786f689.js'; import { i as isAddressEmpty } from './index-d602bc13.js'; import { s as speak } from './index-c5a96d53.js'; import { i as intervalString, g as getFormattedPrice } from './price-1ff6aa07.js'; import { f as fullShippingAddressRequired, s as shippingAddressRequired, a as checkoutIsLocked } from './getters-7090a9c1.js'; import { c as createErrorNotice } from './mutations-7458343f.js'; import { i as isRtl } from './page-align-0cdacf32.js'; import './add-query-args-0e2a8393.js'; import './index-18f5a1bc.js'; import './utils-f84b2118.js'; import './remove-query-args-938c53ea.js'; import './google-e9085e27.js'; import './currency-a0c9bff4.js'; import './fetch-cdff67be.js'; import './index-824c562b.js'; import './store-ac90a769.js'; const scCompactAddressCss = ":host{display:block}.sc-address{display:block;position:relative}.sc-address [hidden]{display:none}.sc-address--loading{min-height:70px}.sc-address--loading sc-skeleton{display:block;margin-bottom:1em}.sc-address__control{display:block}.sc-address__control>*{margin-bottom:-1px}.sc-address__columns{display:flex;flex-direction:row;align-items:center;flex-wrap:wrap;justify-content:space-between}.sc-address__columns>*{flex:1;width:50%;margin-left:-1px}.sc-address__columns>*:first-child{margin-left:0}"; const ScCompactAddressStyle0 = scCompactAddressCss; const ScCompactAddress = class { constructor(hostRef) { registerInstance(this, hostRef); this.scChangeAddress = createEvent(this, "scChangeAddress", 7); this.scInputAddress = createEvent(this, "scInputAddress", 7); this.address = { country: null, city: null, line_1: null, line_2: null, postal_code: null, state: null, }; this.names = { country: 'shipping_country', city: 'shipping_city', line_1: 'shipping_line_1', line_2: 'shipping_line_2', postal_code: 'shipping_postal_code', state: 'shipping_state', }; this.placeholders = { country: '', postal_code: '', state: '', }; this.label = wp.i18n.__('Country or region', 'surecart'); this.required = undefined; this.loading = undefined; this.countryChoices = undefined; this.regions = undefined; this.showState = undefined; this.showPostal = undefined; this.postalCodeRegex = undefined; } /** When the state changes, we want to update city and postal fields. */ handleAddressChange() { var _a; if (!((_a = this.address) === null || _a === void 0 ? void 0 : _a.country)) return; this.setRegions(); this.showState = ['US', 'CA'].includes(this.address.country); this.showPostal = ['US'].includes(this.address.country); this.scChangeAddress.emit(this.address); this.scInputAddress.emit(this.address); } updateAddress(address) { this.address = { ...this.address, ...address }; } handleAddressInput(address) { this.scInputAddress.emit({ ...this.address, ...address }); } clearAddress() { var _a; this.address = { name: (_a = this.address) === null || _a === void 0 ? void 0 : _a.name, country: null, line_1: null, line_2: null, city: null, postal_code: null, state: null, }; } /** Set the regions based on the country. */ async setRegions() { var _a, _b; const countryDetails = await getCountryDetails((_a = this.address) === null || _a === void 0 ? void 0 : _a.country); this.regions = ((_b = countryDetails === null || countryDetails === void 0 ? void 0 : countryDetails.states) === null || _b === void 0 ? void 0 : _b.map(state => ({ value: state === null || state === void 0 ? void 0 : state.code, label: state === null || state === void 0 ? void 0 : state.name, }))) || []; this.placeholders = countryDetails === null || countryDetails === void 0 ? void 0 : countryDetails.address_labels; this.postalCodeRegex = (countryDetails === null || countryDetails === void 0 ? void 0 : countryDetails.postal_code_regex) || undefined; } componentWillLoad() { var _a, _b; this.initCountryChoices(); this.handleAddressChange(); const country = (_b = (_a = this.countryChoices) === null || _a === void 0 ? void 0 : _a.find(country => country.value === this.address.country)) === null || _b === void 0 ? void 0 : _b.value; if (country) { this.updateAddress({ country }); } this.fetchUserCountry(); } async fetchUserCountry() { var _a; if ((_a = this.address) === null || _a === void 0 ? void 0 : _a.country) { return; } const countryCode = await getCurrentUserCountryCode(); if (countryCode) { this.updateAddress({ country: countryCode }); } } async initCountryChoices() { this.countryChoices = await countryChoices(); } async reportValidity() { return reportChildrenValidity(this.el); } render() { var _a, _b, _c, _d, _e, _f, _g; return (h("div", { key: '788e0d1d63e678b291b9cce256fa812da18c7b45', class: "sc-address", part: "base" }, h("sc-form-control", { key: '579fe0c306a2dc3a1d55227a14dc1507d02cfbc8', exportparts: "label, help-text, form-control", label: this.label, class: "sc-address__control", part: "control", required: this.required }, h("sc-select", { key: '0e1cc5b5ca11fff1ddd11ce2b8854b2797734997', exportparts: "base:select__base, input, form-control, label, help-text, trigger, panel, caret, search__base, search__input, search__form-control, menu__base, spinner__base, empty", value: (_a = this.address) === null || _a === void 0 ? void 0 : _a.country, onScChange: (e) => { this.clearAddress(); this.updateAddress({ country: e.target.value || null }); }, choices: this.countryChoices, autocomplete: 'country-name', placeholder: ((_b = this.placeholders) === null || _b === void 0 ? void 0 : _b.country) || wp.i18n.__('Select Your Country', 'surecart'), name: this.names.country, search: true, unselect: false, "squared-bottom": this.showState || this.showPostal, required: this.required }), h("div", { key: '292dba3c347f24769d02f738b3df35f3c02e5c86', class: "sc-address__columns" }, this.showState && (h("sc-select", { key: '27d303b88ba2b25225950ec1c1bd7568b3dfe512', exportparts: "base:select__base, input, form-control, label, help-text, trigger, panel, caret, search__base, search__input, search__form-control, menu__base, spinner__base, empty", placeholder: (_c = this.placeholders) === null || _c === void 0 ? void 0 : _c.state, name: this.names.state, autocomplete: 'address-level1', value: (_d = this === null || this === void 0 ? void 0 : this.address) === null || _d === void 0 ? void 0 : _d.state, onScChange: (e) => this.updateAddress({ state: e.target.value || null }), choices: this.regions, required: this.required, search: true, "squared-top": true, unselect: false, "squared-right": this.showPostal })), this.showPostal && (h("sc-input", { key: 'ce3e81bb66101040a786e6ad422fe110f9a4f61c', exportparts: "base:input__base, input, form-control, label, help-text", placeholder: ((_e = this.placeholders) === null || _e === void 0 ? void 0 : _e.postal_code) || wp.i18n.__('Postal Code/Zip', 'surecart'), name: this.names.postal_code, onScChange: (e) => this.updateAddress({ postal_code: e.target.value || null }), onScInput: (e) => this.handleAddressInput({ postal_code: e.target.value || null }), autocomplete: 'postal-code', required: this.required, value: (_f = this === null || this === void 0 ? void 0 : this.address) === null || _f === void 0 ? void 0 : _f.postal_code, "squared-top": true, maxlength: ((_g = this.address) === null || _g === void 0 ? void 0 : _g.country) === 'US' ? 5 : undefined, pattern: this.postalCodeRegex, customValidity: this.postalCodeRegex ? wp.i18n.__('Please enter a valid postal code', 'surecart') : undefined, "squared-left": this.showState })))), this.loading && h("sc-block-ui", { key: '677f634586c9c45ea2e58629e13ef8cccfd45ffe', exportparts: "base:block-ui, content:block-ui__content" }))); } get el() { return getElement(this); } static get watchers() { return { "address": ["handleAddressChange"] }; } }; ScCompactAddress.style = ScCompactAddressStyle0; const scCustomerPhoneCss = ":host{display:block}"; const ScCustomerPhoneStyle0 = scCustomerPhoneCss; const ScCustomerPhone = class { constructor(hostRef) { registerInstance(this, hostRef); this.scChange = createEvent(this, "scChange", 7); this.scClear = createEvent(this, "scClear", 7); this.scInput = createEvent(this, "scInput", 7); this.scFocus = createEvent(this, "scFocus", 7); this.scBlur = createEvent(this, "scBlur", 7); this.size = 'medium'; this.value = ''; this.pill = false; this.label = undefined; this.showLabel = true; this.help = ''; this.placeholder = undefined; this.disabled = false; this.readonly = false; this.required = false; this.invalid = false; this.autofocus = undefined; this.hasFocus = undefined; this.error = undefined; } async handleChange() { this.value = this.input.value; this.scChange.emit(); } async reportValidity() { var _a, _b; return (_b = (_a = this.input) === null || _a === void 0 ? void 0 : _a.reportValidity) === null || _b === void 0 ? void 0 : _b.call(_a); } componentWillLoad() { this.handleCheckoutChange(); this.removeChangeListener = onChange('checkout', () => this.handleCheckoutChange()); } disconnectedCallback() { this.removeChangeListener(); } handleCheckoutChange() { var _a, _b, _c, _d, _e, _f; // we only want to do this if we don't have a value. if (this === null || this === void 0 ? void 0 : this.value) return; // if the checkout has a phone, use that. if ((_a = state.checkout) === null || _a === void 0 ? void 0 : _a.phone) { this.value = (_b = state.checkout) === null || _b === void 0 ? void 0 : _b.phone; return; } // if the customer has a phone, use that. if ((_d = (_c = state.checkout) === null || _c === void 0 ? void 0 : _c.customer) === null || _d === void 0 ? void 0 : _d.phone) { this.value = (_f = (_e = state.checkout) === null || _e === void 0 ? void 0 : _e.customer) === null || _f === void 0 ? void 0 : _f.phone; return; } } render() { return (h("sc-phone-input", { key: '89ec8776e62c3ad08e763115f06b5bbe6a87d246', name: "phone", ref: el => (this.input = el), value: this.value, label: this.label, help: this.help, autocomplete: "phone", placeholder: this.placeholder, readonly: this.readonly, required: this.required, invalid: this.invalid, autofocus: this.autofocus, hasFocus: this.hasFocus, onScChange: () => this.handleChange(), onScInput: () => this.scInput.emit(), onScFocus: () => this.scFocus.emit(), onScBlur: () => this.scBlur.emit() })); } }; ScCustomerPhone.style = ScCustomerPhoneStyle0; const scInvoiceDetailsCss = ":host{display:block}::slotted(*){margin:4px 0 !important}::slotted(sc-divider){margin:16px 0 !important}"; const ScInvoiceDetailsStyle0 = scInvoiceDetailsCss; const ScInvoiceDetails = class { constructor(hostRef) { registerInstance(this, hostRef); } render() { var _a; return (h(Host, { key: 'b1774fcf95a7780ac4479d44d0814431b07724ef', style: { ...(!((_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.invoice) ? { display: 'none' } : {}) } }, h("div", { key: '081242c9b4e67bef899ede149b49cf2fd119f608', class: "invoice-details" }, h("slot", { key: '8c2fb522cc464a1a8ebca35686e769e21017bdcb' })))); } }; ScInvoiceDetails.style = ScInvoiceDetailsStyle0; const scInvoiceMemoCss = ":host{display:block}.invoice-memo{font-size:var(--sc-font-size-small);line-height:var(--sc-line-height-dense);color:var(--sc-input-label-color);display:grid;gap:5px}.invoice-memo__content{text-align:left;color:var(--sc-input-help-text-color)}"; const ScInvoiceMemoStyle0 = scInvoiceMemoCss; const ScLineItemInvoiceMemo = class { constructor(hostRef) { registerInstance(this, hostRef); this.text = undefined; } render() { var _a; const checkout = state === null || state === void 0 ? void 0 : state.checkout; const memo = ((_a = checkout === null || checkout === void 0 ? void 0 : checkout.invoice) === null || _a === void 0 ? void 0 : _a.memo) || null; // Stop if checkout has no invoice number. if (!memo) { return null; } // loading state if (formBusy() && !(checkout === null || checkout === void 0 ? void 0 : checkout.invoice)) { return (h("div", null, h("sc-skeleton", { style: { width: '100px' } }), h("sc-skeleton", { style: { width: '200px' } }))); } return (h("div", { class: "invoice-memo" }, h("div", { class: "invoice-memo__title" }, this.text || wp.i18n.__('Memo', 'surecart')), h("div", { class: "invoice-memo__content" }, memo))); } }; ScLineItemInvoiceMemo.style = ScInvoiceMemoStyle0; const scLineItemInvoiceDueDateCss = ":host{display:block}sc-line-item{text-align:left;line-height:var(--sc-line-height-dense);color:var(--sc-input-label-color)}"; const ScLineItemInvoiceDueDateStyle0 = scLineItemInvoiceDueDateCss; const ScLineItemInvoiceDueDate = class { constructor(hostRef) { registerInstance(this, hostRef); } render() { var _a; const checkout = state === null || state === void 0 ? void 0 : state.checkout; const dueDate = ((_a = checkout === null || checkout === void 0 ? void 0 : checkout.invoice) === null || _a === void 0 ? void 0 : _a.due_date_date) || null; // Stop if checkout has no invoice due date. if (!dueDate) { return null; } // loading state if (formBusy() && !(checkout === null || checkout === void 0 ? void 0 : checkout.invoice)) { return (h("sc-line-item", null, h("sc-skeleton", { slot: "title", style: { width: '120px', display: 'inline-block' } }), h("sc-skeleton", { slot: "price", style: { 'width': '50px', 'display': 'inline-block', '--border-radius': '6px' } }))); } return (h("sc-line-item", null, h("span", { slot: "description" }, h("slot", { name: "title" }, wp.i18n.__('Due Date', 'surecart'))), h("span", { slot: "price-description" }, dueDate))); } }; ScLineItemInvoiceDueDate.style = ScLineItemInvoiceDueDateStyle0; const scLineItemInvoiceNumberCss = ":host{display:block}sc-line-item{text-align:left;line-height:var(--sc-line-height-dense);color:var(--sc-input-label-color)}"; const ScLineItemInvoiceNumberStyle0 = scLineItemInvoiceNumberCss; const ScLineItemInvoiceNumber = class { constructor(hostRef) { registerInstance(this, hostRef); } render() { var _a; const checkout = state === null || state === void 0 ? void 0 : state.checkout; const invoiceNumber = ((_a = checkout === null || checkout === void 0 ? void 0 : checkout.invoice) === null || _a === void 0 ? void 0 : _a.order_number) || null; // Stop if checkout has no invoice number. if (!invoiceNumber) { return null; } // loading state if (formBusy() && !(checkout === null || checkout === void 0 ? void 0 : checkout.invoice)) { return (h("sc-line-item", null, h("sc-skeleton", { slot: "title", style: { width: '120px', display: 'inline-block' } }), h("sc-skeleton", { slot: "price", style: { 'width': '50px', 'display': 'inline-block', '--border-radius': '6px' } }))); } return (h("sc-line-item", null, h("span", { slot: "description" }, h("slot", { name: "title" }, wp.i18n.__('Invoice Number', 'surecart'))), h("span", { slot: "price-description" }, "#", invoiceNumber))); } }; ScLineItemInvoiceNumber.style = ScLineItemInvoiceNumberStyle0; const scLineItemInvoiceReceiptDownloadCss = ":host{display:block}sc-line-item{text-align:left;line-height:var(--sc-line-height-dense);color:var(--sc-input-label-color)}.sc-invoice-download-link{display:inline-flex;gap:var(--sc-spacing-x-small);text-decoration:none;color:inherit}"; const ScLineItemInvoiceReceiptDownloadStyle0 = scLineItemInvoiceReceiptDownloadCss; const ScLineItemInvoiceReceiptDownload = class { constructor(hostRef) { registerInstance(this, hostRef); this.checkout = undefined; } render() { var _a; const checkout = state === null || state === void 0 ? void 0 : state.checkout; const receiptDownloadLink = ((_a = checkout === null || checkout === void 0 ? void 0 : checkout.invoice) === null || _a === void 0 ? void 0 : _a.id) ? checkout === null || checkout === void 0 ? void 0 : checkout.pdf_url : null; // Stop if checkout has no receipt download link. if (!receiptDownloadLink) { return null; } // loading state if (formBusy() && !(checkout === null || checkout === void 0 ? void 0 : checkout.invoice)) { return (h("sc-line-item", null, h("sc-skeleton", { slot: "title", style: { width: '120px', display: 'inline-block' } }), h("sc-skeleton", { slot: "price", style: { 'width': '50px', 'display': 'inline-block', '--border-radius': '6px' } }))); } return (h("sc-line-item", null, h("span", { slot: "description" }, h("slot", { name: "title" }, wp.i18n.__('Receipt / Invoice', 'surecart'))), h("span", { slot: "price-description" }, h("a", { class: "sc-invoice-download-link", href: receiptDownloadLink, target: "_blank", rel: "noopener noreferrer" }, h("sc-icon", { name: "download" }), wp.i18n.__('Download', 'surecart'))))); } }; ScLineItemInvoiceReceiptDownload.style = ScLineItemInvoiceReceiptDownloadStyle0; const scLineItemShippingCss = ":host{display:block}"; const ScLineItemShippingStyle0 = scLineItemShippingCss; const ScLineItemShipping = class { constructor(hostRef) { registerInstance(this, hostRef); this.label = undefined; } renderShippingFees(checkout) { var _a, _b, _c, _d; if (!((_b = (_a = checkout === null || checkout === void 0 ? void 0 : checkout.shipping_fees) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.length)) { return null; } return (h(Fragment, null, (_d = (_c = checkout === null || checkout === void 0 ? void 0 : checkout.shipping_fees) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d.map(fee => (h("sc-line-item", { key: fee.id }, h("span", { slot: "description" }, fee.description), h("span", { slot: "price" }, fee.display_amount)))))); } render() { const { checkout } = state; // don't show if no shipping amount if no choice selected if (!(checkout === null || checkout === void 0 ? void 0 : checkout.selected_shipping_choice)) { return h(Host, { style: { display: 'none' } }); } if (state$1.formState.value === 'loading') { return (h("sc-line-item", null, h("sc-skeleton", { slot: "title", style: { width: '120px', display: 'inline-block' } }), h("sc-skeleton", { slot: "price", style: { 'width': '70px', 'display': 'inline-block', '--border-radius': '6px' } }))); } return (h(Fragment, null, h("sc-line-item", null, h("span", { slot: "description" }, this.label || wp.i18n.__('Shipping', 'surecart')), h("span", { slot: "price" }, checkout === null || checkout === void 0 ? void 0 : checkout.shipping_display_amount)), this.renderShippingFees(checkout))); } }; ScLineItemShipping.style = ScLineItemShippingStyle0; const scLineItemTaxCss = ":host{display:block}"; const ScLineItemTaxStyle0 = scLineItemTaxCss; const ScLineItemTax = class { constructor(hostRef) { registerInstance(this, hostRef); this.order = undefined; this.loading = undefined; } renderLabel() { var _a, _b, _c; let label = wp.i18n.sprintf(wp.i18n.__('Estimated %s', 'surecart'), ((_a = this === null || this === void 0 ? void 0 : this.order) === null || _a === void 0 ? void 0 : _a.tax_label) || ''); if (((_b = this === null || this === void 0 ? void 0 : this.order) === null || _b === void 0 ? void 0 : _b.tax_status) === 'calculated') { label = ((_c = this.order) === null || _c === void 0 ? void 0 : _c.tax_label) || ''; } return h(Fragment, null, `${wp.i18n.__('Tax', 'surecart')} ${label}`); } render() { var _a, _b, _c, _d, _e; // hide if tax is 0 if (!((_a = this === null || this === void 0 ? void 0 : this.order) === null || _a === void 0 ? void 0 : _a.tax_amount)) { return null; } return (h("sc-line-item", null, h("span", { slot: "description" }, this.renderLabel()), ((_b = this.order) === null || _b === void 0 ? void 0 : _b.tax_exclusive_amount) && h("span", { slot: "price" }, (_c = this.order) === null || _c === void 0 ? void 0 : _c.tax_exclusive_display_amount), ((_d = this.order) === null || _d === void 0 ? void 0 : _d.tax_inclusive_amount) && (h("span", { slot: "price-description" }, '(', (_e = this.order) === null || _e === void 0 ? void 0 : _e.tax_inclusive_display_amount, " ", wp.i18n.__('included', 'surecart'), ')')))); } }; openWormhole(ScLineItemTax, ['order', 'loading'], false); ScLineItemTax.style = ScLineItemTaxStyle0; const scLineItemTrialCss = ":host{display:block}"; const ScLineItemTrialStyle0 = scLineItemTrialCss; const ScLineItemTrial = class { constructor(hostRef) { registerInstance(this, hostRef); this.label = undefined; } render() { var _a, _b; if (!((_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.trial_amount)) { return h(Host, { style: { display: 'none' } }); } return (h("sc-line-item", null, h("span", { slot: "description" }, this.label || wp.i18n.__('Trial', 'surecart')), h("span", { slot: "price-description" }, (_b = state === null || state === void 0 ? void 0 : state.checkout) === null || _b === void 0 ? void 0 : _b.trial_display_amount))); } }; ScLineItemTrial.style = ScLineItemTrialStyle0; const scOrderBillingAddressCss = ":host{display:block}.order-billing-address__toggle{margin-bottom:var(--sc-form-row-spacing, var(--sc-spacing-medium))}"; const ScOrderBillingAddressStyle0 = scOrderBillingAddressCss; const ScOrderBillingAddress = class { constructor(hostRef) { registerInstance(this, hostRef); this.label = undefined; this.showName = undefined; this.namePlaceholder = wp.i18n.__('Name or Company Name', 'surecart'); this.defaultCountry = undefined; this.toggleLabel = wp.i18n.__('Billing address is same as shipping', 'surecart'); this.address = { country: null, city: null, line_1: null, line_2: null, postal_code: null, state: null, }; } async reportValidity() { var _a, _b; if (!this.input) return true; return (_b = (_a = this.input) === null || _a === void 0 ? void 0 : _a.reportValidity) === null || _b === void 0 ? void 0 : _b.call(_a); } prefillAddress() { var _a; // Autofill is handled by sc-checkout-autofill-provider which patches checkoutState.checkout with any logged-in customer profile data. if (isAddressEmpty(this.address)) { this.address = { ...this.address, ...(_a = state.checkout) === null || _a === void 0 ? void 0 : _a.billing_address }; } } componentWillLoad() { var _a; if (this.defaultCountry && !((_a = this.address) === null || _a === void 0 ? void 0 : _a.country)) { this.address.country = this.defaultCountry; } this.prefillAddress(); onChange('checkout', () => this.prefillAddress()); } async updateAddressState(address) { var _a, _b; if (JSON.stringify(address) === JSON.stringify(this.address)) return; // no change, don't update. this.address = address; try { lockCheckout('billing-address'); state.checkout = (await createOrUpdateCheckout({ id: (_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.id, data: { billing_matches_shipping: (_b = state.checkout) === null || _b === void 0 ? void 0 : _b.billing_matches_shipping, billing_address: this.address, }, })); } catch (e) { console.error(e); } finally { unLockCheckout('billing-address'); } } async onToggleBillingMatchesShipping(e) { state.checkout = { ...state.checkout, billing_matches_shipping: e.target.checked, }; } shippingAddressFieldExists() { return !!document.querySelector('sc-order-shipping-address'); } render() { var _a, _b; return (h(Fragment, { key: 'fba7f7f30478cf9db8a296cc46e39b77a84efa43' }, this.shippingAddressFieldExists() && (h("sc-checkbox", { key: '41b0408fd0a4d6817f6de847e23552547e515472', class: "order-billing-address__toggle", onScChange: e => this.onToggleBillingMatchesShipping(e), checked: (_a = state.checkout) === null || _a === void 0 ? void 0 : _a.billing_matches_shipping }, this.toggleLabel)), (!this.shippingAddressFieldExists() || !((_b = state.checkout) === null || _b === void 0 ? void 0 : _b.billing_matches_shipping)) && (h("sc-address", { key: '154cd2dd179e6099840a101141a607ef8b76a41d', exportparts: "label, help-text, form-control, input__base, select__base, columns, search__base, menu__base", ref: el => { this.input = el; }, label: this.label || wp.i18n.__('Billing Address', 'surecart'), names: { name: 'billing_name', country: 'billing_country', city: 'billing_city', line_1: 'billing_line_1', line_2: 'billing_line_2', postal_code: 'billing_postal_code', state: 'billing_state', }, required: true, loading: formLoading(), address: this.address, "show-name": this.showName, onScChangeAddress: e => this.updateAddressState(e.detail) })))); } }; ScOrderBillingAddress.style = ScOrderBillingAddressStyle0; const scOrderBumpCss = ":host {\n display: block;\n}\n\n:host([data-design=modern]) sc-choice::part(base) {\n padding: 0;\n overflow: hidden;\n border-radius: var(--sc-order-bump-border-radius, 12px);\n border-color: var(--sc-order-bump-border-color, #e0e0e0) !important;\n box-shadow: none !important;\n outline: none !important;\n cursor: default;\n}\n\n:host([data-design=modern]) sc-choice::part(content) {\n cursor: default;\n}\n\n:host([data-design=modern]) .bump {\n display: flex;\n align-items: center;\n gap: var(--sc-order-bump-gap, 1em);\n padding: var(--sc-order-bump-padding, 0.75em 1em 0.75em 0.75em);\n}\n:host([data-design=modern]) .bump__text {\n display: grid;\n gap: 5px;\n flex: 1;\n min-width: 0;\n}\n:host([data-design=modern]) .bump__title {\n font-size: var(--sc-order-bump-title-size, 15px);\n font-weight: 600;\n line-height: 1.3;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n}\n:host([data-design=modern]) .bump__cta {\n font-size: var(--sc-order-bump-cta-size, 12px);\n font-weight: 600;\n line-height: 1.3;\n display: var(--sc-order-bump-cta-display, -webkit-box);\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n}\n:host([data-design=modern]) .bump__tag {\n display: var(--sc-order-bump-tag-display, inline-block);\n background: var(--sc-color-primary-500);\n color: var(--sc-color-white);\n border-radius: 999px;\n padding: var(--sc-spacing-x-small);\n font-size: var(--sc-font-size-x-small);\n}\n:host([data-design=modern]) .bump__description {\n display: var(--sc-order-bump-description-display, block);\n font-size: var(--sc-order-bump-description-size, 13px);\n color: var(--sc-order-bump-description-color, #6b7280);\n opacity: 0.8;\n line-height: 1.3;\n font-weight: normal;\n}\n:host([data-design=modern]) .bump__description p {\n margin: 0;\n}\n:host([data-design=modern]) .bump__image {\n width: var(--sc-order-bump-image-size, 72px);\n height: var(--sc-order-bump-image-size, 72px);\n flex: 0 0 var(--sc-order-bump-image-size, 72px);\n object-fit: cover;\n border-radius: var(--sc-order-bump-image-radius, 8px);\n border: 1px solid var(--sc-color-gray-200);\n display: var(--sc-order-bump-image-display, block);\n}\n:host([data-design=modern]) .bump__price--has-discount {\n display: flex;\n align-items: baseline;\n gap: 4px;\n}\n:host([data-design=modern]) .bump__price--has-discount .bump__original-price {\n text-decoration: line-through;\n color: var(--sc-color-gray-500);\n font-size: var(--sc-order-bump-price-size, 14px);\n font-weight: normal;\n}\n:host([data-design=modern]) .bump__price .bump__new-price {\n font-size: var(--sc-order-bump-price-size, 14px);\n font-weight: 500;\n color: var(--sc-color-gray-700);\n}\n:host([data-design=modern]) .bump__price .bump__interval {\n color: var(--sc-color-gray-500);\n}\n:host([data-design=modern]) .bump__button {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--sc-order-bump-button-radius, 74.6%);\n border: 1px solid var(--sc-order-bump-button-border-color, #d1d5db);\n background-color: transparent;\n color: var(--sc-color-gray-500);\n flex-shrink: 0;\n line-height: 1;\n font-size: var(--sc-order-bump-button-size, 18px);\n padding: 0.5em;\n cursor: pointer;\n transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;\n}\n:host([data-design=modern]) .bump__button sc-icon {\n font-size: 1em;\n}\n:host([data-design=modern]) .bump__button--checked {\n background-color: var(--sc-color-primary-500);\n border-color: var(--sc-color-primary-500);\n color: var(--sc-color-white, #fff);\n}\n:host([data-design=modern]) .bump__button--loading {\n border-color: var(--sc-color-primary-500);\n}\n:host([data-design=modern]) .bump__button--loading sc-spinner {\n --spinner-size: 1em;\n --indicator-color: var(--sc-color-gray-500);\n}\n:host([data-design=modern]) .bump__amount {\n display: var(--sc-order-bump-amount-display, flex);\n align-items: center;\n gap: 4px;\n flex-wrap: wrap;\n}\n\n:host([data-design=classic]) .bump {\n display: grid;\n gap: 1em;\n}\n:host([data-design=classic]) .bump__text {\n display: grid;\n gap: 0.25em;\n}\n:host([data-design=classic]) .bump__tag {\n background: var(--sc-color-primary-500);\n color: var(--sc-color-white);\n border-radius: var(--sc-input-border-radius-medium);\n padding: var(--sc-spacing-x-small);\n font-size: var(--sc-font-size-x-small);\n}\n:host([data-design=classic]) .bump__product {\n display: flex;\n align-items: center;\n gap: var(--sc-choice-padding, 1.3em 1.1em);\n line-height: var(--sc-line-height-dense);\n}\n:host([data-design=classic]) .bump__product--wrapper {\n container-type: inline-size;\n}\n@container (max-width: 325px) {\n :host([data-design=classic]) .bump__product {\n flex-direction: column;\n align-items: start;\n }\n}\n:host([data-design=classic]) .bump__title {\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n}\n:host([data-design=classic]) .bump__product-title {\n font-weight: var(--sc-font-weight-semibold);\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n}\n:host([data-design=classic]) .bump__product-description {\n color: var(--sc-input-label-color);\n}\n:host([data-design=classic]) .bump__image {\n width: var(--sc-product-line-item-image-size, 4em);\n height: var(--sc-product-line-item-image-size, 4em);\n flex: 0 0 var(--sc-product-line-item-image-size, 4em);\n object-fit: cover;\n border-radius: 4px;\n border: 1px solid var(--sc-color-gray-200);\n display: block;\n box-shadow: var(--sc-input-box-shadow);\n}\n:host([data-design=classic]) .bump__price--has-discount {\n display: flex;\n align-items: baseline;\n gap: var(--sc-spacing-x-small);\n}\n:host([data-design=classic]) .bump__price--has-discount .bump__original-price {\n text-decoration: line-through;\n color: var(--sc-color-gray-500);\n font-size: var(--sc-font-size-small);\n}\n:host([data-design=classic]) .bump__price .bump__new-price {\n font-size: var(--sc-font-size-large);\n color: var(--sc-color-gray-700);\n}\n:host([data-design=classic]) .bump__price .bump__interval {\n color: var(--sc-color-gray-500);\n}\n:host([data-design=classic]) .bump__amount {\n display: flex;\n align-items: center;\n gap: var(--sc-spacing-x-small);\n flex-wrap: wrap;\n margin-top: var(--sc-spacing-xx-small);\n}"; const ScOrderBumpStyle0 = scOrderBumpCss; const ScOrderBump = class { constructor(hostRef) { registerInstance(this, hostRef); /** Cached design mode */ this.isModern = true; this.bump = undefined; this.showControl = undefined; this.loading = false; } /** The bump line item */ lineItem() { var _a, _b, _c; return (_c = (_b = (_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.line_items) === null || _b === void 0 ? void 0 : _b.data) === null || _c === void 0 ? void 0 : _c.find(item => { var _a; return (item === null || item === void 0 ? void 0 : item.bump) === ((_a = this.bump) === null || _a === void 0 ? void 0 : _a.id); }); } /** Update the line item. */ async updateLineItem() { var _a, _b, _c; if (this.loading) return; const price = ((_a = this.bump.price) === null || _a === void 0 ? void 0 : _a.id) || ((_b = this.bump) === null || _b === void 0 ? void 0 : _b.price); const lineItem = this.lineItem(); this.loading = true; try { if (lineItem) { await removeCheckoutLineItem(lineItem.id); speak(wp.i18n.__('Order bump Removed.', 'surecart')); } else { await addCheckoutLineItem({ bump: (_c = this.bump) === null || _c === void 0 ? void 0 : _c.id, price, quantity: 1, }); speak(wp.i18n.__('Order bump applied.', 'surecart')); } } catch (e) { console.error('[sc-order-bump] updateLineItem failed:', e); speak(wp.i18n.__('Something went wrong. Please try again.', 'surecart')); } finally { this.loading = false; } } componentWillLoad() { var _a; this.isModern = !!((_a = window.scData) === null || _a === void 0 ? void 0 : _a.modern_order_bump); this.el.setAttribute('data-design', this.isModern ? 'modern' : 'classic'); } componentDidLoad() { var _a; trackOrderBump((_a = this.bump) === null || _a === void 0 ? void 0 : _a.id); } renderInterval() { var _a; const interval = intervalString((_a = this.bump) === null || _a === void 0 ? void 0 : _a.price, { labels: { interval: '/', period: wp.i18n.__('for', 'surecart') } }); if (!interval.trim().length) return null; return h("span", { class: "bump__interval" }, interval); } renderDiscount() { var _a, _b, _c, _d, _e; if (!!((_a = this.bump) === null || _a === void 0 ? void 0 : _a.amount_off)) { return (h("div", { class: "bump__tag", part: "tag", "aria-label": /** translators: %1$s: amount off, %2$s: currency */ wp.i18n.sprintf(wp.i18n.__('You save %1$s%2$s.', 'surecart'), (_b = this.bump) === null || _b === void 0 ? void 0 : _b.amount_off, ((_c = this.bump) === null || _c === void 0 ? void 0 : _c.price).currency) }, h("span", { "aria-hidden": "true" }, wp.i18n._x('Save', 'Save money', 'surecart'), " ", (_d = this.bump) === null || _d === void 0 ? void 0 : _d.amount_off_display_amount))); } if (!!((_e = this.bump) === null || _e === void 0 ? void 0 : _e.percent_off)) { const percent = `${this.bump.percent_off}%`; return (h("div", { class: "bump__tag", part: "tag", "aria-label": /** translators: %s is the discount percentage (e.g. "10%"). */ wp.i18n.sprintf(wp.i18n.__('You save %s.', 'surecart'), percent) }, h("span", { "aria-hidden": "true" }, wp.i18n.sprintf( /** translators: %s is the discount percentage (e.g. "10%"). */ wp.i18n._x('Save %s', 'Save money', 'surecart'), percent)))); } } /** Modern price (no slot) */ renderModernPrice() { var _a, _b, _c, _d, _e, _f, _g, _h, _j; return (h("div", { class: { 'bump__price': true, 'bump__price--has-discount': !!((_a = this.bump) === null || _a === void 0 ? void 0 : _a.percent_off) || !!((_b = this.bump) === null || _b === void 0 ? void 0 : _b.amount_off) }, part: "price" }, !!(((_c = this.bump) === null || _c === void 0 ? void 0 : _c.percent_off) || ((_d = this.bump) === null || _d === void 0 ? void 0 : _d.amount_off)) && (h("span", { "aria-label": /** translators: %s: old price */ wp.i18n.sprintf(wp.i18n.__('Originally priced at %s.', 'surecart'), (_e = this.bump) === null || _e === void 0 ? void 0 : _e.subtotal_display_amount), class: "bump__original-price" }, (_f = this.bump) === null || _f === void 0 ? void 0 : _f.subtotal_display_amount)), h("span", null, h("span", { "aria-hidden": "true" }, ((_g = this.bump) === null || _g === void 0 ? void 0 : _g.total_amount) === 0 && wp.i18n.__('Free', 'surecart'), ((_h = this.bump) === null || _h === void 0 ? void 0 : _h.total_amount) > 0 && h("span", { class: "bump__new-price" }, (_j = this.bump) === null || _j === void 0 ? void 0 : _j.total_display_amount), this.renderInterval())))); } /** Classic price (with slot="description") */ renderClassicPrice() { var _a, _b, _c, _d, _e, _f, _g, _h, _j; return (h("div", { slot: "description", class: { 'bump__price': true, 'bump__price--has-discount': !!((_a = this.bump) === null || _a === void 0 ? void 0 : _a.percent_off) || !!((_b = this.bump) === null || _b === void 0 ? void 0 : _b.amount_off) }, part: "price" }, !!(((_c = this.bump) === null || _c === void 0 ? void 0 : _c.percent_off) || ((_d = this.bump) === null || _d === void 0 ? void 0 : _d.amount_off)) && (h("span", { "aria-label": /** translators: %s: old price */ wp.i18n.sprintf(wp.i18n.__('Originally priced at %s.', 'surecart'), (_e = this.bump) === null || _e === void 0 ? void 0 : _e.subtotal_display_amount), class: "bump__original-price" }, (_f = this.bump) === null || _f === void 0 ? void 0 : _f.subtotal_display_amount)), h("span", null, h("span", { "aria-hidden": "true" }, ((_g = this.bump) === null || _g === void 0 ? void 0 : _g.total_amount) === 0 && wp.i18n.__('Free', 'surecart'), ((_h = this.bump) === null || _h === void 0 ? void 0 : _h.total_amount) > 0 && h("span", { class: "bump__new-price" }, (_j = this.bump) === null || _j === void 0 ? void 0 : _j.total_display_amount), this.renderInterval())))); } /** Modern design: rounded button, inline image, no checkbox */ renderModern() { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p; const product = (_b = (_a = this.bump) === null || _a === void 0 ? void 0 : _a.price) === null || _b === void 0 ? void 0 : _b.product; const lineItem = this.lineItem(); return (h("sc-choice", { value: (_c = this.bump) === null || _c === void 0 ? void 0 : _c.id, type: "checkbox", showControl: false, checked: !!lineItem, exportparts: "base:choice__base, content:choice__content" }, h("div", { part: "base-content", class: "bump", onClick: e => e.stopPropagation(), onKeyDown: e => { if (e.key === 'Enter' || e.key === ' ') e.stopPropagation(); } }, !!((_d = product === null || product === void 0 ? void 0 : product.line_item_image) === null || _d === void 0 ? void 0 : _d.src) && h("img", { ...product === null || product === void 0 ? void 0 : product.line_item_image, class: "bump__image", part: "image" }), h("div", { class: "bump__text", part: "text" }, h("div", { class: "bump__title", part: "title", "aria-label": wp.i18n.sprintf( /* translators: %s: order bump name */ wp.i18n.__('Product: %s.', 'surecart'), ((_e = this.bump) === null || _e === void 0 ? void 0 : _e.name) || (product === null || product === void 0 ? void 0 : product.name)) }, h("span", { "aria-hidden": "true" }, ((_f = this.bump) === null || _f === void 0 ? void 0 : _f.name) || (product === null || product === void 0 ? void 0 : product.name))), !!((_h = (_g = this.bump) === null || _g === void 0 ? void 0 : _g.metadata) === null || _h === void 0 ? void 0 : _h.cta) && (h("div", { class: "bump__cta", part: "cta" }, h("span", null, (_k = (_j = this.bump) === null || _j === void 0 ? void 0 : _j.metadata) === null || _k === void 0 ? void 0 : _k.cta))), h("div", { class: "bump__amount", part: "amount" }, this.renderModernPrice(), this.renderDiscount()), !!((_m = (_l = this.bump) === null || _l === void 0 ? void 0 : _l.metadata) === null || _m === void 0 ? void 0 : _m.description) && (h("div", { class: "bump__description", part: "description", "aria-label": wp.i18n.sprintf( /* translators: %s: Product description */ wp.i18n.__('Product description: %s.', 'surecart'), (_o = this.bump) === null || _o === void 0 ? void 0 : _o.rendered_description) }, h("span", { "aria-hidden": "true", innerHTML: (_p = this.bump) === null || _p === void 0 ? void 0 : _p.rendered_description })))), h("button", { type: "button", class: { 'bump__button': true, 'bump__button--checked': !!lineItem, 'bump__button--loading': this.loading, }, part: "button", onClick: () => this.updateLineItem(), "aria-label": lineItem ? wp.i18n.__('Remove from order', 'surecart') : wp.i18n.__('Add to order', 'surecart'), "aria-pressed": !!lineItem, "aria-busy": this.loading }, this.loading ? h("sc-spinner", null) : h("sc-icon", { name: lineItem ? 'check' : 'plus' }))))); } /** Classic design: checkbox control, footer with divider + image + description */ renderClassic() { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t; const product = (_b = (_a = this.bump) === null || _a === void 0 ? void 0 : _a.price) === null || _b === void 0 ? void 0 : _b.product; return (h("sc-choice", { value: (_c = this.bump) === null || _c === void 0 ? void 0 : _c.id, type: "checkbox", showControl: this.showControl, checked: !!this.lineItem(), disabled: this.loading, onClick: e => { e.preventDefault(); e.stopImmediatePropagation(); this.updateLineItem(); }, onKeyDown: e => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); e.stopImmediatePropagation(); this.updateLineItem(); } }, exportparts: "base, control, checked-icon, title" }, h("div", { part: "base-content", class: "bump" }, h("div", { class: "bump__text" }, h("div", { class: "bump__title", "aria-label": wp.i18n.sprintf( /* translators: %s: order bump name */ wp.i18n.__('Product: %s.', 'surecart'), ((_e = (_d = this.bump) === null || _d === void 0 ? void 0 : _d.metadata) === null || _e === void 0 ? void 0 : _e.cta) || ((_f = this.bump) === null || _f === void 0 ? void 0 : _f.name) || (product === null || product === void 0 ? void 0 : product.name)) }, h("span", { "aria-hidden": "true" }, ((_h = (_g = this.bump) === null || _g === void 0 ? void 0 : _g.metadata) === null || _h === void 0 ? void 0 : _h.cta) || ((_j = this.bump) === null || _j === void 0 ? void 0 : _j.name) || (product === null || product === void 0 ? void 0 : product.name))), h("div", { class: "bump__amount" }, this.renderClassicPrice(), this.renderDiscount()))), ((_l = (_k = this.bump) === null || _k === void 0 ? void 0 : _k.metadata) === null || _l === void 0 ? void 0 : _l.description) && (h("div", { slot: "footer", class: "bump__product--wrapper" }, h("sc-divider", { style: { '--spacing': 'var(--sc-spacing-medium)' } }), h("div", { class: "bump__product" }, !!((_m = product === null || product === void 0 ? void 0 : product.line_item_image) === null || _m === void 0 ? void 0 : _m.src) && h("img", { ...product === null || product === void 0 ? void 0 : product.line_item_image, class: "bump__image" }), h("div", { class: "bump__product-text" }, !!((_p = (_o = this.bump) === null || _o === void 0 ? void 0 : _o.metadata) === null || _p === void 0 ? void 0 : _p.cta) && (h("div", { class: "bump__product-title", "aria-hidden": "true" }, this.bump.name || (product === null || product === void 0 ? void 0 : product.name))), !!((_r = (_q = this.bump) === null || _q === void 0 ? void 0 : _q.metadata) === null || _r === void 0 ? void 0 : _r.description) && (h("div", { class: "bump__product-description", "aria-label": wp.i18n.sprintf( /* translators: %s: Product description */ wp.i18n.__('Product description: %s.', 'surecart'), (_s = this.bump) === null || _s === void 0 ? void 0 : _s.rendered_description) }, h("span", { "aria-hidden": "true", innerHTML: (_t = this.bump) === null || _t === void 0 ? void 0 : _t.rendered_description }))))))))); } render() { return this.isModern ? this.renderModern() : this.renderClassic(); } get el() { return getElement(this); } }; ScOrderBump.style = ScOrderBumpStyle0; const scOrderBumpsCss = ":host{display:block}.bumps__list{display:grid;gap:10px}"; const ScOrderBumpsStyle0 = scOrderBumpsCss; const ScOrderBumps = class { constructor(hostRef) { registerInstance(this, hostRef); this.label = undefined; this.help = undefined; this.showControl = undefined; this.hideAddedItems = undefined; } /** Check if a bump is already added as a line item. */ isBumpAdded(bumpId) { var _a, _b; return (((_b = (_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.line_items) === null || _b === void 0 ? void 0 : _b.data) || []).some(item => (item === null || item === void 0 ? void 0 : item.bump) === bumpId); } render() { var _a, _b; const bumps = (((_b = (_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.recommended_bumps) === null || _b === void 0 ? void 0 : _b.data) || []).filter(bump => { var _a, _b, _c, _d; // exclude variants for now. if (((_d = (_c = (_b = (_a = bump === null || bump === void 0 ? void 0 : bump.price) === null || _a === void 0 ? void 0 : _a.product) === null || _b === void 0 ? void 0 : _b.variants) === null || _c === void 0 ? void 0 : _c.pagination) === null || _d === void 0 ? void 0 : _d.count) !== 0) { return false; } // optionally exclude bumps already added to the checkout. if (this.hideAddedItems && this.isBumpAdded(bump === null || bump === void 0 ? void 0 : bump.id)) { return false; } return true; }); if (!(bumps === null || bumps === void 0 ? void 0 : bumps.length)) { return null; } return (h("sc-form-control", { label: this.label || wp.i18n.__('Recommended', 'surecart'), help: this.help }, h("div", { class: "bumps__list", "aria-label": wp.i18n.__('Order bump summary', 'surecart') }, bumps.map(bump => (h("sc-order-bump", { key: bump === null || bump === void 0 ? void 0 : bump.id, bump: bump, showControl: this.showControl, exportparts: "choice__base, choice__content, base-content, image, text, title, cta, amount, price, tag, description, button, base, control, checked-icon" })))))); } }; ScOrderBumps.style = ScOrderBumpsStyle0; const scOrderShippingAddressCss = ":host{display:block}.sc-order-shipping__loading{display:flex;flex-direction:column;gap:0.5em}"; const ScOrderShippingAddressStyle0 = scOrderShippingAddressCss; const ScOrderShippingAddress = class { constructor(hostRef) { registerInstance(this, hostRef); /** Names for the address */ this.names = { name: 'shipping_name', country: 'shipping_country', city: 'shipping_city', line_1: 'shipping_line_1', line_2: 'shipping_line_2', postal_code: 'shipping_postal_code', state: 'shipping_state', }; this.label = undefined; this.required = false; this.full = undefined; this.showName = undefined; this.defaultCountry = undefined; this.showLine2 = undefined; this.requireName = false; this.address = { country: null, city: null, line_1: null, line_2: null, postal_code: null, state: null, }; } async updateAddressState(address) { var _a; if (JSON.stringify(address) === JSON.stringify(this.address)) return; // no change, don't update. this.address = address; try { lockCheckout('shipping-address'); state.checkout = (await createOrUpdateCheckout({ id: (_a = state.checkout) === null || _a === void 0 ? void 0 : _a.id, data: { shipping_address: this.address, }, })); } catch (e) { console.error(e); } finally { unLockCheckout('shipping-address'); } } async reportValidity() { var _a, _b; if (!this.input) return true; return (_b = (_a = this.input) === null || _a === void 0 ? void 0 : _a.reportValidity) === null || _b === void 0 ? void 0 : _b.call(_a); } prefillAddress() { var _a; // Autofill is handled by sc-checkout-autofill-provider which patches checkoutState.checkout with any logged-in customer profile data. if (isAddressEmpty(this.address)) { this.address = { ...this.address, ...(_a = state.checkout) === null || _a === void 0 ? void 0 : _a.shipping_address }; } } componentWillLoad() { var _a; if (this.defaultCountry && !((_a = this.address) === null || _a === void 0 ? void 0 : _a.country)) { this.address.country = this.defaultCountry; } this.prefillAddress(); onChange('checkout', () => this.prefillAddress()); } render() { // use full if checkout requires it, it's set, or we're showing/requiring name field. if (fullShippingAddressRequired() || this.full || this.requireName || this.showName) { return (h("sc-address", { exportparts: "label, help-text, form-control, input__base, select__base, columns, search__base, menu__base", ref: el => (this.input = el), label: this.label || wp.i18n.__('Shipping Address', 'surecart'), names: this.names, required: this.required || shippingAddressRequired(), loading: formLoading(), address: this.address, "show-name": this.showName, "require-name": this.requireName, "show-line-2": this.showLine2, onScChangeAddress: e => this.updateAddressState(e.detail) })); } return (h("sc-compact-address", { ref: el => (this.input = el), required: this.required || shippingAddressRequired(), loading: formLoading(), address: this.address, names: this.names, label: this.label, onScChangeAddress: e => this.updateAddressState(e.detail) })); } }; ScOrderShippingAddress.style = ScOrderShippingAddressStyle0; const scOrderTaxIdInputCss = ":host{display:block}"; const ScOrderTaxIdInputStyle0 = scOrderTaxIdInputCss; const ScOrderTaxIdInput = class { constructor(hostRef) { registerInstance(this, hostRef); this.show = false; this.otherLabel = undefined; this.caGstLabel = undefined; this.auAbnLabel = undefined; this.gbVatLabel = undefined; this.euVatLabel = undefined; this.helpText = undefined; this.taxIdTypes = undefined; this.required = false; this.taxIdTypesData = []; } handleTaxIdTypesChange() { this.taxIdTypesData = typeof this.taxIdTypes === 'string' ? JSON.parse(this.taxIdTypes) : this.taxIdTypes; } async reportValidity() { return this.input.reportValidity(); } getStatus() { var _a, _b, _c, _d, _e; if (((_b = (_a = state.checkout) === null || _a === void 0 ? void 0 : _a.tax_identifier) === null || _b === void 0 ? void 0 : _b.number_type) !== 'eu_vat') { return 'unknown'; } if (((_c = state.taxProtocol) === null || _c === void 0 ? void 0 : _c.eu_vat_unverified_behavior) === 'apply_reverse_charge') { return 'unknown'; } return ((_e = (_d = state.checkout) === null || _d === void 0 ? void 0 : _d.tax_identifier) === null || _e === void 0 ? void 0 : _e.eu_vat_verified) ? 'valid' : 'invalid'; } async updateOrder(tax_identifier) { try { updateFormState('FETCH'); state.checkout = (await createOrUpdateCheckout({ id: state.checkout.id, data: { tax_identifier }, })); updateFormState('RESOLVE'); } catch (e) { console.error(e); createErrorNotice(e); updateFormState('REJECT'); } } componentWillLoad() { this.handleTaxIdTypesChange(); } isRequired() { var _a, _b, _c, _d; // If the block has explicitly set required, use that value. if (this.required) { return true; } // Only apply EU VAT requirement if eu_vat is one of the allowed tax types. // If taxIdTypesData is empty, all types are allowed. const isEuVatAllowed = !((_a = this.taxIdTypesData) === null || _a === void 0 ? void 0 : _a.length) || this.taxIdTypesData.includes('eu_vat'); // Fall back to EU VAT protocol requirement only if EU VAT is an allowed type. return isEuVatAllowed && ((_b = state.taxProtocol) === null || _b === void 0 ? void 0 : _b.eu_vat_required) && ((_d = (_c = state.checkout) === null || _c === void 0 ? void 0 : _c.tax_identifier) === null || _d === void 0 ? void 0 : _d.number_type) === 'eu_vat'; } render() { var _a, _b, _c, _d, _e, _f, _g; return (h("sc-tax-id-input", { key: 'a1025cc63d419d9d2ea88b5926249a7ba105156a', ref: el => (this.input = el), show: this.show, number: (_b = (_a = state.checkout) === null || _a === void 0 ? void 0 : _a.tax_identifier) === null || _b === void 0 ? void 0 : _b.number, type: ((_d = (_c = state.checkout) === null || _c === void 0 ? void 0 : _c.tax_identifier) === null || _d === void 0 ? void 0 : _d.number_type) || ((_e = this.taxIdTypesData) === null || _e === void 0 ? void 0 : _e[0]) || 'eu_vat', country: (_g = (_f = state.checkout) === null || _f === void 0 ? void 0 : _f.shipping_address) === null || _g === void 0 ? void 0 : _g.country, status: this.getStatus(), loading: formBusy(), onScChange: e => { e.stopImmediatePropagation(); this.updateOrder(e.detail); }, otherLabel: this.otherLabel, caGstLabel: this.caGstLabel, auAbnLabel: this.auAbnLabel, gbVatLabel: this.gbVatLabel, euVatLabel: this.euVatLabel, help: this.helpText, taxIdTypes: this.taxIdTypesData, required: this.isRequired() })); } static get watchers() { return { "taxIdTypes": ["handleTaxIdTypesChange"] }; } }; ScOrderTaxIdInput.style = ScOrderTaxIdInputStyle0; const scRadioCss = ":host{display:inline-block}::slotted([slot=description]){display:block;color:var(--sc-radio-description-color, var(--sc-input-help-text-color, var(--sc-color-gray-500)));line-height:var(--sc-line-height-dense);margin:0.5em 0 0;font-size:var(--sc-font-size-small)}.radio{display:inline-flex;align-items:flex-start;font-family:var(--sc-input-font-family);font-size:var(--sc-input-font-size-medium);font-weight:var(--sc-input-font-weight);color:var(--sc-input-color);vertical-align:middle;gap:var(--sc-spacing-xx-small)}.radio:not(.radio--editing){cursor:pointer}.radio__icon{display:inline-flex;width:var(--sc-radio-size);height:var(--sc-radio-size)}.radio__icon svg{width:100%;height:100%}.radio__control{flex:0 0 auto;position:relative;display:inline-flex;align-items:center;justify-content:center;width:var(--sc-radio-size);height:var(--sc-radio-size);border:solid var(--sc-input-border-width) var(--sc-input-border-color);border-radius:50%;background-color:var(--sc-input-background-color);color:transparent;transition:var(--sc-input-transition, var(--sc-transition-medium)) border-color, var(--sc-input-transition, var(--sc-transition-medium)) opacity, var(--sc-input-transition, var(--sc-transition-medium)) background-color, var(--sc-input-transition, var(--sc-transition-medium)) color, var(--sc-input-transition, var(--sc-transition-medium)) box-shadow}.radio__control input[type=radio]{position:absolute;opacity:0;padding:0;margin:0;pointer-events:none}.radio:not(.radio--checked):not(.radio--disabled) .radio__control:hover{border-color:var(--sc-input-border-color-hover);background-color:var(--sc-input-background-color-hover)}.radio.radio--focused:not(.radio--checked):not(.radio--disabled) .radio__control{border-color:var(--sc-input-border-color-focus);background-color:var(--sc-input-background-color-focus);box-shadow:0 0 0 var(--sc-focus-ring-width) var(--sc-focus-ring-color-primary)}.radio--checked .radio__control{color:var(--var-sc-checked-radio-background-color, var(--sc-input-background-color));border-color:var(--sc-color-primary-500);background-color:var(--sc-color-primary-500)}.radio.radio--checked:not(.radio--disabled) .radio__control:hover{opacity:0.8}.radio.radio--checked:not(.radio--disabled).radio--focused .radio__control{border-color:var(--var-sc-checked-radio-border-color, var(--sc-input-background-color));background-color:var(--sc-color-primary-500);box-shadow:0 0 0 var(--sc-focus-ring-width) var(--sc-focus-ring-color-primary)}.radio--disabled{opacity:0.5;cursor:not-allowed}.radio:not(.radio--checked) svg circle{opacity:0}.radio__label{line-height:var(--sc-radio-size);margin-left:0.5em;user-select:none}"; const ScRadioStyle0 = scRadioCss; let id = 0; const ScRadio = class { constructor(hostRef) { registerInstance(this, hostRef); this.scBlur = createEvent(this, "scBlur", 7); this.scChange = createEvent(this, "scChange", 7); this.scFocus = createEvent(this, "scFocus", 7); this.inputId = `radio-${++id}`; this.labelId = `radio-label-${id}`; this.hasFocus = false; this.name = undefined; this.value = undefined; this.disabled = false; this.checked = false; this.required = false; this.invalid = false; this.edit = undefined; } /** Simulates a click on the radio. */ async ceClick() { this.input.click(); } /** Checks for validity and shows the browser's validation message if the control is invalid. */ async reportValidity() { this.invalid = !this.input.checkValidity(); return this.input.reportValidity(); } handleCheckedChange() { if (!this.input) return; if (this.checked) { this.getSiblingRadios().map(radio => (radio.checked = false)); } this.input.checked = this.checked; this.scChange.emit(); } handleClick() { this.checked = true; } handleBlur() { this.hasFocus = false; this.scBlur.emit(); } handleFocus() { this.hasFocus = true; this.scFocus.emit(); } /** Sets a custom validation message. If `message` is not empty, the field will be considered invalid. */ setCustomValidity(message) { this.input.setCustomValidity(message); this.invalid = !this.input.checkValidity(); } getAllRadios() { const radioGroup = this.el.closest('sc-radio-group'); // Radios must be part of a radio group if (!radioGroup) { return []; } return [...radioGroup.querySelectorAll('sc-radio')]; } getSiblingRadios() { return this.getAllRadios().filter(radio => radio !== this.el); } handleKeyDown(event) { if (this.edit) return true; if (['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight'].includes(event.key)) { const radios = this.getAllRadios().filter(radio => !radio.disabled); const incr = ['ArrowUp', 'ArrowLeft'].includes(event.key) ? -1 : 1; let index = radios.indexOf(this.el) + incr; if (index < 0) index = radios.length - 1; if (index > radios.length - 1) index = 0; this.getAllRadios().map(radio => (radio.checked = false)); radios[index].focus(); radios[index].checked = true; event.preventDefault(); } } // Prevent clicks on the label from briefly blurring the input handleMouseDown(event) { if (this.edit) return true; event.preventDefault(); this.input.focus(); } componentDidLoad() { this.formController = new FormSubmitController(this.el, { value: (control) => (control.checked ? control.value : undefined), }).addFormData(); } disconnectedCallback() { var _a; (_a = this.formController) === null || _a === void 0 ? void 0 : _a.removeFormData(); } render() { const Tag = this.edit ? 'div' : 'label'; return (h(Tag, { key: '19d5762b6350887c46422f2f0b1af8c9df70deab', part: "base", class: { 'radio': true, 'radio--checked': this.checked, 'radio--disabled': this.disabled, 'radio--focused': this.hasFocus, 'radio--editing': this.edit, }, htmlFor: this.inputId, onKeyDown: e => this.handleKeyDown(e), onMouseDown: e => this.handleMouseDown(e) }, h("span", { key: '8f085a092c452cff7bbfad644c6701ff7a3e6d6f', part: "control", class: "radio__control" }, h("span", { key: '437c748392090b6b5952eca8fc8b35aa31710cce', part: "checked-icon", class: "radio__icon" }, h("svg", { key: '5bd54bdec3563d55abb2375c3ab9d5123e812761', viewBox: "0 0 16 16" }, h("g", { key: '3dd7070bb8f45f07e11c80c511df432523a959a7', stroke: "none", "stroke-width": "1", fill: "none", "fill-rule": "evenodd" }, h("g", { key: '9b86f8022a20d9e0e7a4c10211c69d50053df9a2', fill: "currentColor" }, h("circle", { key: '8dbbcc8b1266b94dd4fd0b9925c7ce9c59c7cc75', cx: "8", cy: "8", r: "3.42857143" }))))), h("input", { key: 'ebd16e07d9674bf0c59d2bc990e9dec11a4f18b4', id: this.inputId, ref: el => (this.input = el), type: "radio", name: this.name, value: this.value, checked: this.checked, disabled: this.disabled, required: this.required, "aria-checked": this.checked ? 'true' : 'false', "aria-disabled": this.disabled ? 'true' : 'false', "aria-labelledby": this.labelId, onClick: () => this.handleClick(), onBlur: () => this.handleBlur(), onFocus: () => this.handleFocus() })), h("span", { key: 'bd64e86da262e70d1e13ff36c9ab902b5ab0a7a6', part: "label", id: this.labelId, class: "radio__label" }, h("slot", { key: '482c49a3702df3f524846736d3f12da5866bbed5' }), h("slot", { key: '4d16b4c7c545680398a739c28bce1d2ebfd3acfc', name: "description" })))); } get el() { return getElement(this); } static get watchers() { return { "checked": ["handleCheckedChange"] }; } }; ScRadio.style = ScRadioStyle0; const scRadioGroupCss = ":host{display:block}.radio-group{border:none;padding:0;margin:0;min-width:0}.radio-group .radio-group__label{display:inline-block;padding:0;color:var(--sc-input-label-color);font-weight:var(--sc-input-label-font-weight);text-transform:var(--sc-input-label-text-transform, none);letter-spacing:var(--sc-input-label-letter-spacing, 0);margin-bottom:var(--sc-input-label-margin)}.radio-group__hidden-input{position:absolute;opacity:0;padding:0px;margin:0px;pointer-events:none}.radio-group--is-required .radio-group__label:after{content:\" *\";color:var(--sc-color-danger-500)}::slotted(sc-radio:not(:last-of-type)){display:block;margin-bottom:var(--sc-spacing-x-small)}.radio-group--is-rtl.radio-group,.radio-group--is-rtl.radio-group .radio-group__label{text-align:right}"; const ScRadioGroupStyle0 = scRadioGroupCss; const ScRadioGroup = class { constructor(hostRef) { registerInstance(this, hostRef); this.scChange = createEvent(this, "scChange", 7); this.label = ''; this.invalid = undefined; this.value = ''; this.required = undefined; } /** Checks for validity and shows the browser's validation message if the control is invalid. */ async reportValidity() { this.invalid = !this.input.checkValidity(); return this.input.reportValidity(); } handleRadioClick(event) { if (event.target.tagName !== 'SC-RADIO') return; event.stopImmediatePropagation(); const target = event.target; if (target.disabled) { return; } if (target.checked) { this.value = target.value; this.scChange.emit(target.value); } } componentDidLoad() { const choices = [...this.el.querySelectorAll('sc-radio')]; choices.forEach(choice => { if (choice.checked) { this.value = choice.value; } }); } render() { return (h("fieldset", { key: '0d9a4ba13a02ca240257a1ea54439573d4bbd5cc', part: "base", class: { 'radio-group': true, 'radio-group--invalid': this.invalid, 'radio-group--is-required': this.required, 'radio-group--is-rtl': isRtl(), }, "aria-invalid": this.invalid, role: "radiogroup" }, h("legend", { key: '3c21b9c1d8ef448d07edf1e108f6085459dace07', part: "label", class: "radio-group__label" }, h("slot", { key: '2c72f2c65b564a707c9dbb25c054f30c816b3ae3', name: "label" }, this.label)), h("input", { key: 'db34f962b73dc1f4c976b841204963fa3068b05c', type: "text", class: "radio-group__hidden-input", ref: el => (this.input = el), required: this.required, value: this.value, tabindex: "-1" }), h("div", { key: 'f6c015bd02e42caf4c1e1a2441f1974ac0b7bf28', part: "items", class: "radio-group__items" }, h("slot", { key: '11abc8a0e5f0cf8979820facdf61749dda257d97' })))); } get el() { return getElement(this); } }; ScRadioGroup.style = ScRadioGroupStyle0; const scShippingChoicesCss = ":host{display:block}.shipping-choice{width:100%;padding:var(--sc-spacing-medium);margin:0;box-sizing:border-box;border-bottom:var(--sc-input-border, 1px solid var(--sc-color-gray-300));background-color:var(--sc-shipping-choice-background-color, var(--sc-input-background-color))}.shipping-choice__empty{background:var(--sc-alert-background-color, var(--sc-color-gray-100));opacity:0.75;padding:var(--sc-spacing-large);border-radius:var(--sc-input-border-radius-medium);line-height:var(--sc-line-height-dense);font-size:var(--sc-font-size-small);border:solid 1px var(--sc-input-border-color, var(--sc-input-border))}.shipping-choice:last-child{border-bottom-width:0}.shipping-choice__text{display:flex;flex-direction:column;gap:var(--sc-spacing-xx-small)}.shipping-choice__price{color:var(--sc-input-label-color);font-weight:var(--sc-price-choice-price-font-weight, var(--sc-font-weight-normal));white-space:nowrap;display:var(--sc-shipping-choice-price-display, inherit)}.shipping-choice__name{display:inline-block;color:var(--sc-price-choice-name-color, var(--sc-input-label-color));font-size:var(--sc-price-choice-name-size, var(--sc-input-label-font-size-medium));font-weight:var(--sc-price-choice-name-font-weight, var(--sc-font-weight-bold));text-transform:var(--sc-price-choice-text-transform, var(--sc-input-label-text-transform, none));line-height:var(--sc-shipping-name-line-height, 1)}.shipping-choice__description{color:var(--sc-input-label-color);font-weight:var(--sc-price-choice-price-font-weight, var(--sc-font-weight-normal));line-height:var(--sc-shipping-description-line-height, 1.2)}sc-radio-group::part(items){border:var(--sc-input-border, 1px solid var(--sc-color-gray-300));border-radius:var(--sc-shipping-choice-border-radius, var(--sc-input-border-radius-medium));box-shadow:var(--sc-shipping-box-shadow, var(--sc-input-box-shadow));overflow:hidden;position:relative}sc-radio::part(base){width:100%}sc-radio::part(label){width:100%;display:flex;justify-content:space-between;gap:var(--sc-spacing-small)}sc-radio-group::slotted(sc-radio:not(:last-of-type)){margin-bottom:0}"; const ScShippingChoicesStyle0 = scShippingChoicesCss; const ScShippingChoices = class { constructor(hostRef) { registerInstance(this, hostRef); this.label = undefined; this.showDescription = true; this.shippingChoices = undefined; } /** Maybe update the order. */ async updateCheckout(selectedShippingChoiceId) { if (!selectedShippingChoiceId) return; try { lockCheckout('selected_shipping_choice'); state.checkout = (await createOrUpdateCheckout({ id: state.checkout.id, data: { selected_shipping_choice_id: selectedShippingChoiceId, }, })); speak(wp.i18n.__('Shipping choice updated.', 'surecart'), 'assertive'); const { total_amount, currency } = state.checkout; /** translators: %1$s: formatted amount */ speak(wp.i18n.sprintf(wp.i18n.__('Your order total has changed to: %1$s.', 'surecart'), getFormattedPrice({ amount: total_amount, currency })), 'assertive'); } catch (e) { console.error(e); createErrorNotice(e); } finally { unLockCheckout('selected_shipping_choice'); } } render() { var _a, _b, _c, _d, _e; const choices = this.shippingChoices || ((_b = (_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.shipping_choices) === null || _b === void 0 ? void 0 : _b.data); // When not using prop override, apply checkout state guards. if (!this.shippingChoices) { // shipping choice is not required. if (!((_c = state === null || state === void 0 ? void 0 : state.checkout) === null || _c === void 0 ? void 0 : _c.selected_shipping_choice_required)) { return h(Host, { style: { display: 'none' } }); } // no shipping choices but no country either if (!(choices === null || choices === void 0 ? void 0 : choices.length) && !((_e = (_d = state === null || state === void 0 ? void 0 : state.checkout) === null || _d === void 0 ? void 0 : _d.shipping_address) === null || _e === void 0 ? void 0 : _e.country)) { return (h("sc-form-control", { label: this.label || wp.i18n.__('Shipping', 'surecart') }, h("div", { class: "shipping-choice__empty" }, wp.i18n.__('To check available shipping choices, please provide your shipping country in the address section.', 'surecart')))); } // no shipping choices yet. if (!(choices === null || choices === void 0 ? void 0 : choices.length)) { return (h("sc-form-control", { part: "empty", label: this.label || wp.i18n.__('Shipping', 'surecart') }, h("div", { class: "shipping-choice__empty" }, wp.i18n.__('Sorry, we are not able to ship to your address.', 'surecart')))); } } return (h(Host, null, h("sc-radio-group", { part: "base", label: this.label || wp.i18n.__('Shipping', 'surecart'), class: "shipping-choices", onScChange: e => this.updateCheckout(e.detail) }, (choices || []).map(({ id, display_amount, shipping_method }) => { var _a; return (h("sc-radio", { key: id, checked: ((_a = state === null || state === void 0 ? void 0 : state.checkout) === null || _a === void 0 ? void 0 : _a.selected_shipping_choice) === id, exportparts: "base:radio__base,label:radio__label,control:radio__control,checked-icon:radio__checked-icon", class: "shipping-choice", value: id }, h("div", { class: "shipping-choice__text" }, h("div", { class: "shipping-choice__name" }, (shipping_method === null || shipping_method === void 0 ? void 0 : shipping_method.name) || wp.i18n.__('Standard Shipping', 'surecart')), this.showDescription && !!(shipping_method === null || shipping_method === void 0 ? void 0 : shipping_method.description) && (h("div", { class: "shipping-choice__description" }, shipping_method === null || shipping_method === void 0 ? void 0 : shipping_method.description))), h("div", { class: "shipping-choice__price" }, !!display_amount ? display_amount : wp.i18n.__('Free', 'surecart')))); })), checkoutIsLocked('selected_shipping_choice') && h("sc-block-ui", null))); } }; ScShippingChoices.style = ScShippingChoicesStyle0; export { ScCompactAddress as sc_compact_address, ScCustomerPhone as sc_customer_phone, ScInvoiceDetails as sc_invoice_details, ScLineItemInvoiceMemo as sc_invoice_memo, ScLineItemInvoiceDueDate as sc_line_item_invoice_due_date, ScLineItemInvoiceNumber as sc_line_item_invoice_number, ScLineItemInvoiceReceiptDownload as sc_line_item_invoice_receipt_download, ScLineItemShipping as sc_line_item_shipping, ScLineItemTax as sc_line_item_tax, ScLineItemTrial as sc_line_item_trial, ScOrderBillingAddress as sc_order_billing_address, ScOrderBump as sc_order_bump, ScOrderBumps as sc_order_bumps, ScOrderShippingAddress as sc_order_shipping_address, ScOrderTaxIdInput as sc_order_tax_id_input, ScRadio as sc_radio, ScRadioGroup as sc_radio_group, ScShippingChoices as sc_shipping_choices }; //# sourceMappingURL=sc-compact-address_18.entry.js.map