mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
94 lines
2.8 KiB
JavaScript
Vendored
94 lines
2.8 KiB
JavaScript
Vendored
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
class ProcessFPXPay {
|
|
constructor(key, stripeConnect) {
|
|
this.key = key;
|
|
this.errors = document.getElementById('errors');
|
|
this.stripeConnect = stripeConnect;
|
|
}
|
|
|
|
setupStripe = () => {
|
|
|
|
|
|
if (this.stripeConnect){
|
|
// this.stripe.stripeAccount = this.stripeConnect;
|
|
|
|
this.stripe = Stripe(this.key, {
|
|
stripeAccount: this.stripeConnect,
|
|
});
|
|
|
|
}
|
|
else {
|
|
this.stripe = Stripe(this.key);
|
|
}
|
|
|
|
let elements = this.stripe.elements();
|
|
let style = {
|
|
base: {
|
|
// Add your base input styles here. For example:
|
|
padding: '10px 12px',
|
|
color: '#32325d',
|
|
fontSize: '16px',
|
|
},
|
|
};
|
|
this.fpx = elements.create('fpxBank', {style: style, accountHolderType: 'individual',});
|
|
this.fpx.mount("#fpx-bank-element");
|
|
return this;
|
|
};
|
|
|
|
handle = () => {
|
|
document.getElementById('pay-now').addEventListener('click', (e) => {
|
|
document.getElementById('pay-now').disabled = true;
|
|
document.querySelector('#pay-now > svg').classList.remove('hidden');
|
|
document.querySelector('#pay-now > span').classList.add('hidden');
|
|
|
|
this.stripe.confirmFpxPayment(
|
|
document.querySelector('meta[name=pi-client-secret').content,
|
|
{
|
|
payment_method: {
|
|
fpx: this.fpx,
|
|
},
|
|
return_url: document.querySelector(
|
|
'meta[name="return-url"]'
|
|
).content,
|
|
}
|
|
).then((result) => {
|
|
if (result.error) {
|
|
this.handleFailure(result.error.message);
|
|
}
|
|
});;
|
|
});
|
|
};
|
|
|
|
handleFailure(message) {
|
|
let errors = document.getElementById('errors');
|
|
|
|
errors.textContent = '';
|
|
errors.textContent = message;
|
|
errors.hidden = false;
|
|
|
|
document.getElementById('pay-now').disabled = false;
|
|
document.querySelector('#pay-now > svg').classList.add('hidden');
|
|
document.querySelector('#pay-now > span').classList.remove('hidden');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const publishableKey = document.querySelector(
|
|
'meta[name="stripe-publishable-key"]'
|
|
)?.content ?? '';
|
|
|
|
const stripeConnect =
|
|
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
|
|
|
|
new ProcessFPXPay(publishableKey, stripeConnect).setupStripe().handle();
|