1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/resources/js/clients/payments/stripe-bacs.js

88 lines
3.1 KiB
JavaScript
Raw Normal View History

2022-12-16 12:05:10 +01:00
/**
* 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 ProcessBACS {
constructor(key, stripeConnect) {
this.key = key;
this.errors = document.getElementById('errors');
this.stripeConnect = stripeConnect;
2022-12-17 07:05:19 +01:00
this.onlyAuthorization = onlyAuthorization;
2022-12-16 12:05:10 +01:00
}
setupStripe = () => {
if (this.stripeConnect){
2022-12-16 15:03:24 +01:00
// this.stripe.stripeAccount = this.stripeConnect;
2022-12-16 12:05:10 +01:00
2022-12-16 15:03:24 +01:00
this.stripe = Stripe(this.key, {
stripeAccount: this.stripeConnect,
2022-12-16 12:05:10 +01:00
});
}
else {
this.stripe = Stripe(this.key);
}
return this;
};
2023-01-20 08:49:36 +01:00
payment_data;
2022-12-16 12:05:10 +01:00
handle = () => {
2022-12-17 15:08:37 +01:00
2022-12-17 06:19:52 +01:00
if (this.onlyAuthorization) {
document.getElementById('authorize-bacs').addEventListener('click', (e) => {
document.getElementById('authorize-bacs').disabled = true;
document.querySelector('#authorize-bacs > svg').classList.remove('hidden');
document.querySelector('#authorize-bacs > span').classList.add('hidden');
2022-12-17 14:59:20 +01:00
location.href=document.querySelector('meta[name=stripe-redirect-url]').content;
2022-12-17 06:19:52 +01:00
});}
else{
2023-01-20 08:55:35 +01:00
this.payNowButton = document.getElementById('pay-now');
2022-12-17 06:47:43 +01:00
document.getElementById('pay-now').addEventListener('click', (e) => {
this.payNowButton.disabled = true;
this.payNowButton.querySelector('svg').classList.remove('hidden');
this.payNowButton.querySelector('span').classList.add('hidden');
2022-12-22 11:18:02 +01:00
document.getElementById('server-response').submit();
2022-12-17 06:39:16 +01:00
});
2023-01-20 08:49:36 +01:00
this.payment_data = Array.from(document.getElementsByClassName('toggle-payment-with-token'));
2023-01-20 08:55:35 +01:00
if (this.payment_data.length > 0){
2023-01-20 08:49:36 +01:00
this.payment_data.forEach((element) =>
element.addEventListener('click', (element) => {
document.querySelector('input[name=token]').value =
element.target.dataset.token;
})
);}
else{
2023-01-20 09:01:37 +01:00
this.errors.textContent = document.querySelector(
'meta[name=translation-payment-method-required]'
).content;
2023-01-20 08:55:35 +01:00
this.errors.hidden = false;
2023-01-20 09:01:37 +01:00
this.payNowButton.disabled = true;
2023-01-20 08:49:36 +01:00
this.payNowButton.querySelector('span').classList.remove('hidden');
this.payNowButton.querySelector('svg').classList.add('hidden');
}}
2023-01-20 08:55:35 +01:00
}
2022-12-16 12:05:10 +01:00
}
const publishableKey = document.querySelector(
'meta[name="stripe-publishable-key"]'
)?.content ?? '';
const stripeConnect =
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
2022-12-17 06:19:52 +01:00
const onlyAuthorization =
document.querySelector('meta[name="only-authorization"]')?.content ?? '';
2022-12-16 12:05:10 +01:00
new ProcessBACS(publishableKey, stripeConnect).setupStripe().handle();