FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-paystack-add-method.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const inline = require('./inline-aa15f113.js'); const fetch = require('./fetch-d374a251.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 fetch.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: '5f78fb60a51e5209f58417eea143cd252207d33e' }, this.error && (index.h("sc-alert", { key: '6f237808e93a530768a1890bea732fbdd80662e1', open: !!this.error, type: "danger" }, index.h("span", { key: '00c047f3371dd4bc061afdcb7ac422503a42fe14', slot: "title" }, wp.i18n.__('Error', 'surecart')), this.error)), index.h("div", { key: 'b52ae4e43019f9927c5bef052fe67e1361cc461a', class: "sc-paystack-button-container" }, index.h("sc-alert", { key: '6983a103af59cec36cb2b97d44210b11c2cd0084', 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: 'b87cf5834724eda0d92f0a30561bc79ae99a2528' }, index.h("sc-button", { key: '08a0b62303c8173037cb5615550555b07caec636', 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
Save
Back