mirror of https://github.com/itflow-org/itflow
118 lines
3.3 KiB
JavaScript
118 lines
3.3 KiB
JavaScript
const stripe = Stripe(document.getElementById("stripe_publishable_key").value);
|
|
|
|
let elements;
|
|
|
|
initialize();
|
|
checkStatus();
|
|
|
|
document
|
|
.querySelector("#payment-form")
|
|
.addEventListener("submit", handleSubmit);
|
|
|
|
let emailAddress = '';
|
|
// Fetches a payment intent and captures the client secret
|
|
async function initialize() {
|
|
const { clientSecret } = await fetch("guest_ajax.php?stripe_create_pi=true", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({
|
|
invoice_id: document.getElementById("invoice_id").value,
|
|
url_key: document.getElementById("url_key").value
|
|
}),
|
|
}).then((r) => r.json());
|
|
|
|
elements = stripe.elements({ clientSecret });
|
|
|
|
const paymentElementOptions = {
|
|
layout: "tabs",
|
|
};
|
|
|
|
const paymentElement = elements.create("payment", paymentElementOptions);
|
|
paymentElement.mount("#payment-element");
|
|
|
|
// Unhide the submit button once everything has loaded
|
|
document.getElementById("submit").hidden = false;
|
|
}
|
|
|
|
async function handleSubmit(e) {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
|
|
const { error } = await stripe.confirmPayment({
|
|
elements,
|
|
confirmParams: {
|
|
return_url: window.location.href,
|
|
receipt_email: emailAddress,
|
|
},
|
|
});
|
|
|
|
// This point will only be reached if there is an immediate error when
|
|
// confirming the payment. Otherwise, your customer will be redirected to
|
|
// your `return_url`. For some payment methods like iDEAL, your customer will
|
|
// be redirected to an intermediate site first to authorize the payment, then
|
|
// redirected to the `return_url`.
|
|
if (error.type === "card_error" || error.type === "validation_error") {
|
|
showMessage(error.message);
|
|
} else {
|
|
showMessage("An unexpected error occurred.");
|
|
}
|
|
|
|
setLoading(false);
|
|
}
|
|
|
|
// Fetches the payment intent status after payment submission
|
|
async function checkStatus() {
|
|
const clientSecret = new URLSearchParams(window.location.search).get(
|
|
"payment_intent_client_secret"
|
|
);
|
|
|
|
if (!clientSecret) {
|
|
return;
|
|
}
|
|
|
|
const { paymentIntent } = await stripe.retrievePaymentIntent(clientSecret);
|
|
|
|
switch (paymentIntent.status) {
|
|
case "succeeded":
|
|
showMessage("Payment succeeded!");
|
|
break;
|
|
case "processing":
|
|
showMessage("Your payment is processing.");
|
|
break;
|
|
case "requires_payment_method":
|
|
showMessage("Your payment was not successful, please try again.");
|
|
break;
|
|
default:
|
|
showMessage("Something went wrong.");
|
|
break;
|
|
}
|
|
}
|
|
|
|
// ------- UI helpers -------
|
|
|
|
function showMessage(messageText) {
|
|
const messageContainer = document.querySelector("#payment-message");
|
|
|
|
messageContainer.classList.remove("hidden");
|
|
messageContainer.textContent = messageText;
|
|
|
|
setTimeout(function () {
|
|
messageContainer.classList.add("hidden");
|
|
messageText.textContent = "";
|
|
}, 4000);
|
|
}
|
|
|
|
// Show a spinner on payment submission
|
|
function setLoading(isLoading) {
|
|
if (isLoading) {
|
|
// Disable the button and show a spinner
|
|
document.querySelector("#submit").disabled = true;
|
|
document.querySelector("#spinner").classList.remove("hidden");
|
|
document.querySelector("#button-text").classList.add("hidden");
|
|
} else {
|
|
document.querySelector("#submit").disabled = false;
|
|
document.querySelector("#spinner").classList.add("hidden");
|
|
document.querySelector("#button-text").classList.remove("hidden");
|
|
}
|
|
}
|