mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
|
/**
|
||
|
* 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 WePayBank {
|
||
|
initializeWePay() {
|
||
|
let environment = document.querySelector('meta[name="wepay-environment"]')?.content;
|
||
|
|
||
|
WePay.set_endpoint(environment === 'staging' ? 'stage' : 'production');
|
||
|
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
showBankPopup() {
|
||
|
WePay.bank_account.create({
|
||
|
client_id: document.querySelector('meta[name=wepay-client-id]')?.content,
|
||
|
email: document.querySelector('meta[name=contact-email]')?.content
|
||
|
}, function (data) {
|
||
|
if (data.error) {
|
||
|
errors.textContent = '';
|
||
|
errors.textContent = data.error_description;
|
||
|
errors.hidden = false;
|
||
|
} else {
|
||
|
document.querySelector('input[name="bank_account_id"]').value = data.bank_account_id;
|
||
|
document.getElementById('server_response').submit();
|
||
|
}
|
||
|
}, function (data) {
|
||
|
if (data.error) {
|
||
|
errors.textContent = '';
|
||
|
errors.textContent = data.error_description;
|
||
|
errors.hidden = false;
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
handle() {
|
||
|
this
|
||
|
.initializeWePay()
|
||
|
.showBankPopup();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
document.addEventListener('DOMContentLoaded', () => {
|
||
|
new WePayBank().handle();
|
||
|
});
|