mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
		
			Vendored
		
	
	
	
/**
 | 
						|
 * 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,
 | 
						|
                options: {
 | 
						|
                    avoidMicrodeposits:true
 | 
						|
                }
 | 
						|
            }, 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();
 | 
						|
});
 |