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-przelewy24.js

124 lines
4.6 KiB
JavaScript
Raw Normal View History

2021-10-09 17:01:29 +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-09 17:01:29 +02:00
*/
class ProcessPRZELEWY24 {
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-09 17:01:29 +02:00
let elements = this.stripe.elements()
var options = {
// Custom styling can be passed to options when creating an Element
style: {
base: {
padding: '10px 12px',
color: '#32325d',
fontSize: '16px',
'::placeholder': {
color: '#aab7c4'
},
},
},
};
2021-10-09 17:09:10 +02:00
this.p24bank = elements.create('p24Bank', options)
2021-10-09 17:01:29 +02:00
this.p24bank.mount('#p24-bank-element');
return this;
};
handle = () => {
document.getElementById('pay-now').addEventListener('click', (e) => {
let errors = document.getElementById('errors');
if (document.getElementById('p24-name').value === "") {
document.getElementById('p24-name').focus();
2021-10-15 15:52:51 +02:00
errors.textContent = document.querySelector('meta[name=translation-name-required]').content;
2021-10-09 17:01:29 +02:00
errors.hidden = false;
return;
}
if (document.getElementById('p24-email-address').value === "") {
document.getElementById('p24-email-address').focus();
2021-10-15 15:52:51 +02:00
errors.textContent = document.querySelector('meta[name=translation-email-required]').content;
2021-10-09 17:01:29 +02:00
errors.hidden = false;
return;
}
2021-10-09 17:25:49 +02:00
if (!document.getElementById('p24-mandate-acceptance').checked) {
2021-10-09 17:22:13 +02:00
document.getElementById('p24-mandate-acceptance').focus();
2021-10-15 15:52:51 +02:00
errors.textContent = document.querySelector('meta[name=translation-terms-required]').content;
2021-10-09 17:22:13 +02:00
errors.hidden = false;
return;
}
2021-10-09 17:01:29 +02:00
document.getElementById('pay-now').disabled = true;
document.querySelector('#pay-now > svg').classList.remove('hidden');
document.querySelector('#pay-now > span').classList.add('hidden');
this.stripe.confirmP24Payment(
document.querySelector('meta[name=pi-client-secret').content,
{
payment_method: {
p24: this.p24bank,
billing_details: {
name: document.getElementById('p24-name').value,
email: document.getElementById('p24-email-address').value,
},
},
2021-10-09 17:22:13 +02:00
payment_method_options: {
p24: {
tos_shown_and_accepted: document.getElementById('p24-mandate-acceptance').checked,
2021-10-09 17:25:49 +02:00
},
2021-10-09 17:22:13 +02:00
},
2021-10-09 17:25:49 +02:00
return_url: document.querySelector('meta[name="return-url"]').content,
2021-10-09 17:01:29 +02:00
}
2023-02-23 03:38:58 +01:00
).then(function (result) {
if (result.error) {
// Show error to your customer
errors.textContent = result.error.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');
} else {
// The payment has been processed!
if (result.paymentIntent.status === 'succeeded') {
window.location = document.querySelector('meta[name="return-url"]').content;
}
}
});
2021-10-09 17:01:29 +02:00
});
};
}
const publishableKey = document.querySelector(
'meta[name="stripe-publishable-key"]'
)?.content ?? '';
const stripeConnect =
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
new ProcessPRZELEWY24(publishableKey, stripeConnect).setupStripe().handle();