2021-10-10 11:53:36 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2022-06-08 06:25:44 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-10-10 11:53:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
class ProcessBANCONTACTPay {
|
|
|
|
constructor(key, stripeConnect) {
|
|
|
|
this.key = key;
|
|
|
|
this.errors = document.getElementById('errors');
|
|
|
|
this.stripeConnect = stripeConnect;
|
|
|
|
}
|
|
|
|
|
|
|
|
setupStripe = () => {
|
|
|
|
|
2022-01-22 05:22:59 +01:00
|
|
|
if (this.stripeConnect){
|
|
|
|
// this.stripe.stripeAccount = this.stripeConnect;
|
|
|
|
|
|
|
|
this.stripe = Stripe(this.key, {
|
|
|
|
stripeAccount: this.stripeConnect,
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.stripe = Stripe(this.key);
|
|
|
|
}
|
|
|
|
|
2021-10-10 11:53:36 +02:00
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
handle = () => {
|
|
|
|
document.getElementById('pay-now').addEventListener('click', (e) => {
|
|
|
|
let errors = document.getElementById('errors');
|
|
|
|
|
|
|
|
if (!document.getElementById('bancontact-name').value) {
|
2021-10-15 15:52:51 +02:00
|
|
|
errors.textContent = document.querySelector('meta[name=translation-name-required]').content;
|
2021-10-10 11:53:36 +02:00
|
|
|
errors.hidden = false;
|
|
|
|
console.log("name");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
document.getElementById('pay-now').disabled = true;
|
|
|
|
document.querySelector('#pay-now > svg').classList.remove('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.add('hidden');
|
|
|
|
|
|
|
|
this.stripe.confirmBancontactPayment(
|
|
|
|
document.querySelector('meta[name=pi-client-secret').content,
|
|
|
|
{
|
|
|
|
payment_method: {
|
|
|
|
billing_details: {
|
|
|
|
name: document.getElementById("bancontact-name").value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
return_url: document.querySelector(
|
|
|
|
'meta[name="return-url"]'
|
|
|
|
).content,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const publishableKey = document.querySelector(
|
|
|
|
'meta[name="stripe-publishable-key"]'
|
|
|
|
)?.content ?? '';
|
|
|
|
|
|
|
|
const stripeConnect =
|
|
|
|
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
|
|
|
|
|
|
|
|
new ProcessBANCONTACTPay(publishableKey, stripeConnect).setupStripe().handle();
|