JezK
Edit File: sc-subscription-variation-confirm.entry.js
import { r as registerInstance, h } from './index-25e5af33.js'; import { g as getVariantFromValues } from './util-dfbf863e.js'; import { a as addQueryArgs } from './add-query-args-0e2a8393.js'; const scSubscriptionVariationConfirmCss = ":host{display:block}.sc-product-variation-choice-wrap{display:flex;flex-direction:column;gap:var(--sc-variation-gap, 12px)}"; const ScSubscriptionVariationConfirmStyle0 = scSubscriptionVariationConfirmCss; const ScSubscriptionVariationConfirm = class { constructor(hostRef) { registerInstance(this, hostRef); this.heading = undefined; this.product = undefined; this.price = undefined; this.subscription = undefined; this.busy = false; this.variantValues = []; // Bind the submit function to the component instance this.handleSubmit = this.handleSubmit.bind(this); } componentWillLoad() { var _a; this.variantValues = (_a = this.subscription) === null || _a === void 0 ? void 0 : _a.variant_options; } async handleSubmit() { var _a, _b, _c, _d; this.busy = true; const selectedVariant = getVariantFromValues({ variants: (_b = (_a = this.product) === null || _a === void 0 ? void 0 : _a.variants) === null || _b === void 0 ? void 0 : _b.data, values: this.variantValues }); // confirm ad_hoc amount. if ((_c = this.price) === null || _c === void 0 ? void 0 : _c.ad_hoc) { return window.location.assign(addQueryArgs(window.location.href, { action: 'confirm_amount', price_id: (_d = this.price) === null || _d === void 0 ? void 0 : _d.id, variant: selectedVariant === null || selectedVariant === void 0 ? void 0 : selectedVariant.id, })); } return window.location.assign(addQueryArgs(window.location.href, { action: 'confirm', variant: selectedVariant === null || selectedVariant === void 0 ? void 0 : selectedVariant.id, })); } buttonText() { var _a, _b, _c, _d; if ((_a = this.price) === null || _a === void 0 ? void 0 : _a.ad_hoc) { if (((_b = this.price) === null || _b === void 0 ? void 0 : _b.id) === ((_d = (_c = this.subscription) === null || _c === void 0 ? void 0 : _c.price) === null || _d === void 0 ? void 0 : _d.id)) { return wp.i18n.__('Update Amount', 'surecart'); } return wp.i18n.__('Choose Amount', 'surecart'); } return wp.i18n.__('Next', 'surecart'); } render() { var _a, _b; return (h("sc-dashboard-module", { key: '2479cd5a7263812752bc04d08dd35d59899b3115', heading: this.heading || wp.i18n.__('Enter An Amount', 'surecart'), class: "subscription-switch" }, h("sc-card", { key: '373ccca15a80f68c5a329b2b9e2df22033cd90c7' }, h("sc-form", { key: '613e318362f2c383b4ab32734d37a75ee7860f68', onScSubmit: this.handleSubmit }, h("div", { key: 'd035b0af942defd3a9ec5cf9ef375261963869ea', class: "sc-product-variation-choice-wrap" }, (((_b = (_a = this.product) === null || _a === void 0 ? void 0 : _a.variant_options) === null || _b === void 0 ? void 0 : _b.data) || []).map(({ name, values, id }, index) => { var _a, _b; return (h("sc-select", { exportparts: "base:select__base, input, form-control, label, help-text, trigger, panel, caret, menu__base, spinner__base, empty", part: "name__input", value: ((_b = (_a = this.subscription) === null || _a === void 0 ? void 0 : _a.variant_options) === null || _b === void 0 ? void 0 : _b[index]) || '', onScChange: (e) => { this.variantValues[index] = e.detail.value; }, label: name, choices: values === null || values === void 0 ? void 0 : values.map(label => ({ label, value: label, })), unselect: false, key: id })); })), h("sc-button", { key: 'd4abfc09ef8f898fec2366685e2dd6cd6c62532e', type: "primary", full: true, submit: true, loading: this.busy }, this.buttonText(), " ", h("sc-icon", { key: 'c9a7e0baad949142a62e884d0f1c6d52dab741a7', name: "arrow-right", slot: "suffix" })))), this.busy && h("sc-block-ui", { key: '47a2e10ba0f48a73a2f48cab1d8938e92b09b948', style: { zIndex: '9' } }))); } }; ScSubscriptionVariationConfirm.style = ScSubscriptionVariationConfirmStyle0; export { ScSubscriptionVariationConfirm as sc_subscription_variation_confirm }; //# sourceMappingURL=sc-subscription-variation-confirm.entry.js.map