1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/resources/js/clients/payments/alipay.js

60 lines
1.7 KiB
JavaScript
Raw Normal View History

2020-06-09 16:56:08 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
class ProcessAlipay {
constructor(key) {
this.key = key;
this.errors = document.getElementById('errors');
}
setupStripe = () => {
this.stripe = Stripe(this.key);
return this;
};
handle = () => {
let data = {
type: 'alipay',
amount: document.querySelector('meta[name="amount"]').content,
currency: document.querySelector('meta[name="currency"]').content,
redirect: {
return_url: document.querySelector('meta[name="return-url"]')
.content,
},
};
document.getElementById('pay-now').addEventListener('submit', (e) => {
e.preventDefault();
2020-08-24 10:28:55 +02:00
processingOverlay(true);
document.getElementById('pay-now').disabled = true;
2020-06-09 16:56:08 +02:00
this.stripe.createSource(data).then(function(result) {
if (result.hasOwnProperty('source')) {
return (window.location = result.source.redirect.url);
}
2020-08-24 10:28:55 +02:00
processingOverlay(false);
document.getElementById('pay-now').disabled = false;
2020-06-09 16:56:08 +02:00
this.errors.textContent = '';
this.errors.textContent = result.error.message;
this.errors.hidden = false;
});
});
};
}
const publishableKey = document.querySelector(
'meta[name="stripe-publishable-key"]'
).content;
new ProcessAlipay(publishableKey).setupStripe().handle();