JezK
Edit File: sc-subscription-variation-confirm.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-be4abba1.js'); const util = require('./util-a15c420c.js'); const addQueryArgs = require('./add-query-args-49dcb630.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) { index.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 = util.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.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.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 (index.h("sc-dashboard-module", { key: '2479cd5a7263812752bc04d08dd35d59899b3115', heading: this.heading || wp.i18n.__('Enter An Amount', 'surecart'), class: "subscription-switch" }, index.h("sc-card", { key: '373ccca15a80f68c5a329b2b9e2df22033cd90c7' }, index.h("sc-form", { key: '613e318362f2c383b4ab32734d37a75ee7860f68', onScSubmit: this.handleSubmit }, index.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$1) => { var _a, _b; return (index.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$1]) || '', onScChange: (e) => { this.variantValues[index$1] = e.detail.value; }, label: name, choices: values === null || values === void 0 ? void 0 : values.map(label => ({ label, value: label, })), unselect: false, key: id })); })), index.h("sc-button", { key: 'd4abfc09ef8f898fec2366685e2dd6cd6c62532e', type: "primary", full: true, submit: true, loading: this.busy }, this.buttonText(), " ", index.h("sc-icon", { key: 'c9a7e0baad949142a62e884d0f1c6d52dab741a7', name: "arrow-right", slot: "suffix" })))), this.busy && index.h("sc-block-ui", { key: '47a2e10ba0f48a73a2f48cab1d8938e92b09b948', style: { zIndex: '9' } }))); } }; ScSubscriptionVariationConfirm.style = ScSubscriptionVariationConfirmStyle0; exports.sc_subscription_variation_confirm = ScSubscriptionVariationConfirm; //# sourceMappingURL=sc-subscription-variation-confirm.cjs.entry.js.map