JezK
Edit File: sc-stripe-add-method.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-be4abba1.js'); const pure = require('./pure-bd6f0a6e.js'); require('./fetch-5e8dc1d5.js'); const addQueryArgs = require('./add-query-args-49dcb630.js'); const index$1 = require('./index-7ced8198.js'); require('./remove-query-args-b57e8cd3.js'); const scStripeAddMethodCss = "sc-stripe-add-method{display:block}sc-stripe-add-method [hidden]{display:none}.loader{display:grid;height:128px;gap:2em}.loader__row{display:flex;align-items:flex-start;justify-content:space-between;gap:1em}.loader__details{display:grid;gap:0.5em}"; const ScStripeAddMethodStyle0 = scStripeAddMethodCss; const ScStripeAddMethod = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.liveMode = true; this.customerId = undefined; this.successUrl = undefined; this.loading = undefined; this.loaded = undefined; this.error = undefined; this.paymentIntent = undefined; } componentWillLoad() { this.createPaymentIntent(); } async handlePaymentIntentCreate() { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t; // we need this data. if (!((_c = (_b = (_a = this.paymentIntent) === null || _a === void 0 ? void 0 : _a.processor_data) === null || _b === void 0 ? void 0 : _b.stripe) === null || _c === void 0 ? void 0 : _c.publishable_key) || !((_f = (_e = (_d = this.paymentIntent) === null || _d === void 0 ? void 0 : _d.processor_data) === null || _e === void 0 ? void 0 : _e.stripe) === null || _f === void 0 ? void 0 : _f.account_id)) return; // check if stripe has been initialized if (!this.stripe) { try { this.stripe = await pure.pure.loadStripe((_j = (_h = (_g = this.paymentIntent) === null || _g === void 0 ? void 0 : _g.processor_data) === null || _h === void 0 ? void 0 : _h.stripe) === null || _j === void 0 ? void 0 : _j.publishable_key, { stripeAccount: (_m = (_l = (_k = this.paymentIntent) === null || _k === void 0 ? void 0 : _k.processor_data) === null || _l === void 0 ? void 0 : _l.stripe) === null || _m === void 0 ? void 0 : _m.account_id }); } catch (e) { this.error = (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Stripe could not be loaded', 'surecart'); // don't continue. return; } } // load the element. // we need a stripe instance and client secret. if (!((_q = (_p = (_o = this.paymentIntent) === null || _o === void 0 ? void 0 : _o.processor_data) === null || _p === void 0 ? void 0 : _p.stripe) === null || _q === void 0 ? void 0 : _q.client_secret) || !this.container) { console.warn('do not have client secret or container'); return; } // get the computed styles. const styles = getComputedStyle(document.body); // we have what we need, load elements. this.elements = this.stripe.elements({ clientSecret: (_t = (_s = (_r = this.paymentIntent) === null || _r === void 0 ? void 0 : _r.processor_data) === null || _s === void 0 ? void 0 : _s.stripe) === null || _t === void 0 ? void 0 : _t.client_secret, appearance: { variables: { colorPrimary: styles.getPropertyValue('--sc-color-primary-500'), colorText: styles.getPropertyValue('--sc-input-label-color'), borderRadius: styles.getPropertyValue('--sc-input-border-radius-medium'), colorBackground: styles.getPropertyValue('--sc-input-background-color'), fontSizeBase: styles.getPropertyValue('--sc-input-font-size-medium'), }, rules: { '.Input': { border: styles.getPropertyValue('--sc-input-border'), }, '.Input::placeholder': { color: styles.getPropertyValue('--sc-input-placeholder-color'), }, }, }, }); // create the payment element. this.elements .create('payment', { wallets: { applePay: 'never', googlePay: 'never', }, }) .mount('.sc-payment-element-container'); this.element = this.elements.getElement('payment'); this.element.on('ready', () => (this.loaded = true)); } async createPaymentIntent() { try { this.loading = true; this.error = ''; this.paymentIntent = await index$1.apiFetch({ method: 'POST', path: 'surecart/v1/payment_intents', data: { processor_type: 'stripe', live_mode: this.liveMode, customer_id: this.customerId, refresh_status: true, }, }); } catch (e) { this.error = (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); } finally { this.loading = false; } } /** * Handle form submission. */ async handleSubmit(e) { var _a; e.preventDefault(); this.loading = true; try { const confirmed = await this.stripe.confirmSetup({ elements: this.elements, confirmParams: { return_url: addQueryArgs.addQueryArgs(this.successUrl, { payment_intent: (_a = this.paymentIntent) === null || _a === void 0 ? void 0 : _a.id, }), }, redirect: 'always', }); if (confirmed === null || confirmed === void 0 ? void 0 : confirmed.error) { this.error = confirmed.error.message; throw confirmed.error; } } catch (e) { console.error(e); this.error = (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); this.loading = false; } } render() { return (index.h("sc-form", { key: 'b0f9a274a3eb5d188ba18bb97f28f5694b574c4f', onScFormSubmit: e => this.handleSubmit(e) }, this.error && (index.h("sc-alert", { key: 'eb4b91f93c6a8e5089cc83ce1afe74d33ce48d2c', open: !!this.error, type: "danger" }, index.h("span", { key: '0aab644ead23292b91fad4e5cd227d6dd66c0e3d', slot: "title" }, wp.i18n.__('Error', 'surecart')), this.error)), index.h("div", { key: '29051e5d81cd01ed30aa1fc83b36d467b3518646', class: "loader", hidden: this.loaded }, index.h("div", { key: '3978f7590da8bdbd5578a0559e4ff2c80b474256', class: "loader__row" }, index.h("div", { key: '89190a4b868b05cc36459a022e67a4b70e4b224d', style: { width: '50%' } }, index.h("sc-skeleton", { key: 'ce36584c4be74739e08ec6a1667802540e043422', style: { width: '50%', marginBottom: '0.5em' } }), index.h("sc-skeleton", { key: '9c1be32660378e8fb94a0475a75e9afb2cafad2a' })), index.h("div", { key: '94adb61d7e1c1d642d838fb85a760249cc144acc', style: { flex: '1' } }, index.h("sc-skeleton", { key: '5260519f8fb46249ba60b6d8aa9c4bcd8b7abc33', style: { width: '50%', marginBottom: '0.5em' } }), index.h("sc-skeleton", { key: '0becdaaf876a24aa4484ea9337b259dd0873dbed' })), index.h("div", { key: 'df039de80e3ac0a87fd985e78fb1ae9650fdad07', style: { flex: '1' } }, index.h("sc-skeleton", { key: 'a11d49a2183028e26c56bff62922cf75edecb9e4', style: { width: '50%', marginBottom: '0.5em' } }), index.h("sc-skeleton", { key: 'b40882770815b2652c7bf60caa5a66f8e99edda7' }))), index.h("div", { key: '709fc27ddbd10c163f86aa3ed99236aa2417f589', class: "loader__details" }, index.h("sc-skeleton", { key: 'b4ec5b7fbccac54f53ac82a048bd161fdd25ce14', style: { height: '1rem' } }), index.h("sc-skeleton", { key: 'a6610359b86a450cc430278f26325fa81052733f', style: { height: '1rem', width: '30%' } }))), index.h("div", { key: '4fe3fb97194731af33c6f0ff38fec3a8229b9964', hidden: !this.loaded, class: "sc-payment-element-container", ref: el => (this.container = el) }), index.h("sc-button", { key: '895717d2ec8b644be617571ec12063af46f2d6c2', type: "primary", submit: true, full: true, loading: this.loading }, wp.i18n.__('Save Payment Method', 'surecart')))); } static get watchers() { return { "paymentIntent": ["handlePaymentIntentCreate"] }; } }; ScStripeAddMethod.style = ScStripeAddMethodStyle0; exports.sc_stripe_add_method = ScStripeAddMethod; //# sourceMappingURL=sc-stripe-add-method.cjs.entry.js.map