mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
toggle credit card view after resetting the widget
This commit is contained in:
parent
984a8666aa
commit
196d785f19
@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
import { instant, wait } from '../wait';
|
import { instant, wait } from '../wait';
|
||||||
|
|
||||||
|
let focusCreditCard = false;
|
||||||
|
|
||||||
function setup() {
|
function setup() {
|
||||||
const publicKey = document.querySelector('meta[name=public_key]');
|
const publicKey = document.querySelector('meta[name=public_key]');
|
||||||
const gatewayId = document.querySelector('meta[name=gateway_id]');
|
const gatewayId = document.querySelector('meta[name=gateway_id]');
|
||||||
@ -136,13 +138,24 @@ function pay() {
|
|||||||
if (first) {
|
if (first) {
|
||||||
first.click();
|
first.click();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log({ focusCreditCard })
|
||||||
|
|
||||||
|
if (focusCreditCard) {
|
||||||
|
document.getElementById('toggle-payment-with-credit-card')?.click();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function process3ds() {
|
async function process3ds() {
|
||||||
try {
|
try {
|
||||||
const resource = await get3dsToken();
|
const resource = await get3dsToken();
|
||||||
|
|
||||||
if (resource.status === 'not_authenticated' || resource === 'not_authenticated') {
|
if (
|
||||||
|
resource.status === 'not_authenticated' ||
|
||||||
|
resource === 'not_authenticated'
|
||||||
|
) {
|
||||||
|
focusCreditCard = true;
|
||||||
|
|
||||||
pay();
|
pay();
|
||||||
|
|
||||||
throw new Error(
|
throw new Error(
|
||||||
@ -201,6 +214,8 @@ async function process3ds() {
|
|||||||
).textContent = `Sorry, your transaction could not be processed...`;
|
).textContent = `Sorry, your transaction could not be processed...`;
|
||||||
document.getElementById('errors').hidden = false;
|
document.getElementById('errors').hidden = false;
|
||||||
|
|
||||||
|
focusCreditCard = true;
|
||||||
|
|
||||||
pay();
|
pay();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -210,6 +225,9 @@ async function process3ds() {
|
|||||||
'errors'
|
'errors'
|
||||||
).textContent = `Sorry, your transaction could not be processed...\n\n${error}`;
|
).textContent = `Sorry, your transaction could not be processed...\n\n${error}`;
|
||||||
document.getElementById('errors').hidden = false;
|
document.getElementById('errors').hidden = false;
|
||||||
|
|
||||||
|
focusCreditCard = true;
|
||||||
|
|
||||||
pay();
|
pay();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -268,8 +286,10 @@ async function get3dsToken() {
|
|||||||
document.getElementById('errors').hidden = false;
|
document.getElementById('errors').hidden = false;
|
||||||
|
|
||||||
console.error('Fetch error:', error); // Log error for debugging
|
console.error('Fetch error:', error); // Log error for debugging
|
||||||
pay();
|
|
||||||
|
|
||||||
|
focusCreditCard = true;
|
||||||
|
|
||||||
|
pay();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user