JezK
Edit File: sc-paystack-add-method.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-be4abba1.js'); const inline = require('./inline-aa15f113.js'); require('./fetch-5e8dc1d5.js'); const index$1 = require('./index-7ced8198.js'); require('./add-query-args-49dcb630.js'); require('./remove-query-args-b57e8cd3.js'); const scPaystackAddMethodCss = ":host{display:block}"; const ScPaystackAddMethodStyle0 = scPaystackAddMethodCss; const ScPaystackAddMethod = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.liveMode = true; this.customerId = undefined; this.successUrl = undefined; this.currency = undefined; this.loading = undefined; this.loaded = undefined; this.error = undefined; this.paymentIntent = undefined; } async handlePaymentIntentCreate() { var _a, _b; const { public_key, access_code } = ((_b = (_a = this.paymentIntent) === null || _a === void 0 ? void 0 : _a.processor_data) === null || _b === void 0 ? void 0 : _b.paystack) || {}; // we need this data. if (!public_key || !access_code) return; const paystack = new inline.se(); await paystack.newTransaction({ key: public_key, accessCode: access_code, // We'll use accessCode which will handle product, price on our server. onSuccess: async (transaction) => { if ((transaction === null || transaction === void 0 ? void 0 : transaction.status) !== 'success') { throw { message: wp.i18n.sprintf(wp.i18n.__('Paystack transaction could not be finished. Status: %s', 'surecart'), transaction === null || transaction === void 0 ? void 0 : transaction.status) }; } window.location.assign(this.successUrl); }, onClose: err => { console.error(err); alert((err === null || err === void 0 ? void 0 : err.message) || wp.i18n.__('The payment did not process. Please try again.', 'surecart')); }, }); } async createPaymentIntent() { var _a, _b; try { this.loading = true; this.error = ''; this.paymentIntent = await index$1.apiFetch({ method: 'POST', path: 'surecart/v1/payment_intents', data: { processor_type: 'paystack', reusable: true, live_mode: this.liveMode, customer_id: this.customerId, currency: this.currency, refresh_status: true, }, }); } catch (e) { this.error = ((_b = (_a = e === null || e === void 0 ? void 0 : e.additional_errors) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.message) || (e === null || e === void 0 ? void 0 : e.message) || wp.i18n.__('Something went wrong', 'surecart'); } finally { this.loading = false; } } render() { return (index.h(index.Host, { key: 'b3bc58d3f074499dfb3296218718b9701d4b3fbe' }, this.error && (index.h("sc-alert", { key: 'c9f2d49c81e0be55409ab69d9a8f906ea24b1e2c', open: !!this.error, type: "danger" }, index.h("span", { key: '38698acebb5b60c1ec1f50980634d3222de54598', slot: "title" }, wp.i18n.__('Error', 'surecart')), this.error)), index.h("div", { key: '1e02745d98e209a6aa54a20eadc5fdc65a9f3a84', class: "sc-paystack-button-container" }, index.h("sc-alert", { key: '1f6712384bbe852a8bf5148d6cd68150305313a1', open: true, type: "warning" }, wp.i18n.__('In order to add a new card, we will need to make a small transaction to authenticate it. This is for authentication purposes and will be immediately refunded.', 'surecart'), index.h("div", { key: '0c96a94740dcdb37a46d1b515d717faf96eaa085' }, index.h("sc-button", { key: '089c2ad08159a4ad0e7b6a0db44476d5a371250c', loading: this.loading, type: "primary", onClick: () => this.createPaymentIntent(), style: { marginTop: 'var(--sc-spacing-medium)' } }, wp.i18n.__('Add New Card', 'surecart'))))))); } static get watchers() { return { "paymentIntent": ["handlePaymentIntentCreate"] }; } }; ScPaystackAddMethod.style = ScPaystackAddMethodStyle0; exports.sc_paystack_add_method = ScPaystackAddMethod; //# sourceMappingURL=sc-paystack-add-method.cjs.entry.js.map